/* ============================================
   MODERN GLASSMORPHISM DESIGN
   ALIMI DIGITAL - Premium Web Design & Development
   ============================================ */

:root {
    /* Brand Colors */
    --primary-gradient: linear-gradient(90deg, #5c6ff4, #e870c2);
    --primary-start: #5c6ff4;
    --primary-end: #e870c2;
    
    /* Base Colors */
    --dark-bg: #0b0b0f;
    --dark-secondary: #0f0f14;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Navbar */
    --navbar-height: 104px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background: var(--dark-bg);
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}


/* ============================================
   BACKGROUND ANIMATION
   ============================================ */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float var(--transition-slow) ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #5c6ff4, #6a7dd9);
    top: -200px;
    left: -100px;
    animation-duration: 20s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e870c2, #d963b0);
    top: 50%;
    right: -50px;
    animation-duration: 25s;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #5c6ff4, #e870c2);
    bottom: -100px;
    left: 50%;
    animation-duration: 30s;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 20px); }
}

/* ============================================
   TYPOGRAPHY & TEXT
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ============================================
   GLASS MORPHISM EFFECT
   ============================================ */
.glass-card,
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.glass-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 70px;
    display: flex;
    align-items: center;
    width: fit-content;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .nav-container {
        width: 100%;
        justify-content: space-between;
    }
}

.logo {
    display: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    overflow: visible;
}

.nav-link .nav-text {
    position: relative;
    z-index: 1;
}

.nav-link .nav-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition);
}

.nav-link:hover .nav-underline,
.nav-link.active .nav-underline {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    filter: brightness(1.2);
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: linear-gradient(90deg, #5c6ff4, #e870c2);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    position: relative;
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-gradient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 111, 244, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    animation: float-particle linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 20s; }
.particle:nth-child(2) { left: 80%; top: 10%; animation-duration: 25s; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 80%; animation-duration: 30s; animation-delay: 5s; }
.particle:nth-child(4) { left: 20%; top: 70%; animation-duration: 22s; animation-delay: 8s; }
.particle:nth-child(5) { left: 90%; top: 60%; animation-duration: 28s; animation-delay: 3s; }

@keyframes float-particle {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-word {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide-up 0.8s ease-out forwards;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fade-in 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(92, 111, 244, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(92, 111, 244, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-start);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
    background: linear-gradient(135deg, transparent, rgba(92, 111, 244, 0.05));
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    group: "project";
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-start);
    box-shadow: 0 20px 60px rgba(92, 111, 244, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.project-placeholder {
    color: var(--text-secondary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.project-content {
    padding: 0 0.5rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(92, 111, 244, 0.2);
    border: 1px solid rgba(92, 111, 244, 0.5);
    border-radius: 20px;
    color: var(--text-secondary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(92, 111, 244, 0.2), rgba(232, 112, 194, 0.1));
    border: 1.5px solid var(--primary-start);
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left var(--transition);
    z-index: -1;
}

.project-link:hover {
    border-color: var(--primary-end);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 111, 244, 0.3);
}

.project-link:hover::before {
    left: 0;
}

.project-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: linear-gradient(135deg, rgba(232, 112, 194, 0.05), transparent);
}

.about-content {
    padding: 4rem;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-tag {
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(92, 111, 244, 0.2), rgba(232, 112, 194, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(92, 111, 244, 0.3), rgba(232, 112, 194, 0.3));
    border-color: var(--primary-start);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(92, 111, 244, 0.1), rgba(232, 112, 194, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-start);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, rgba(92, 111, 244, 0.05), rgba(232, 112, 194, 0.05));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-start);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition);
}

.form-group input:focus ~ .form-underline,
.form-group textarea:focus ~ .form-underline {
    width: 100%;
}

.contact-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-text a:hover {
    color: var(--primary-start);
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-start);
    transform: translateY(-4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-start);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 15px;
        --navbar-height: 80px;
    }

    .glass-nav {
        width: calc(100% - 1rem);
        left: 0.5rem;
        transform: none;
        padding: 0.75rem 1.5rem;
        top: 0.5rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        gap: 2rem;
        background: linear-gradient(135deg, rgba(92, 111, 244, 0.25), rgba(232, 112, 194, 0.25));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(232, 112, 194, 0.3);
        border-radius: 20px;
        padding: 3rem 3rem;
        width: 90%;
        max-width: 300px;
        z-index: 999;
        align-items: center;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-menu .nav-link .nav-underline {
        display: none;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-end);
    }

    .hamburger {
        display: flex;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-section {
        min-height: 100vh;
        padding: 0 1.5rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .glass-nav {
        width: calc(100% - 1rem);
        left: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-menu {
        width: 90%;
        max-width: 300px;
    }

    .hero-section {
        padding: 2rem 1rem 4rem;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

