/* ========================================
   APPLE-INSPIRED DESIGN SYSTEM (PRO MODE)
   ======================================== */

:root {
    /* Color Palette - Titanium / iPhone Pro Dark */
    --color-bg-body: #000000;
    --color-bg-card: #1c1c1e;
    /* Apple System Grey 6 */
    --color-bg-card-hover: #2c2c2e;

    /* Text */
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #86868b;
    --color-text-tertiary: #6e6e73;

    /* Accents */
    --color-accent: #2997ff;
    /* Apple Blue */
    --color-accent-glow: rgba(41, 151, 255, 0.4);

    /* Borders & Glass */
    --glass-material: rgba(28, 28, 30, 0.65);
    --border-subtle: rgba(255, 255, 255, 0.1);

    /* Typography - San Francisco Style */
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container-width: 1080px;
    /* Tighter container for focus */
    --spacing-unit: 20px;
}

/* Light Mode Theme */
[data-theme="light"] {
    --color-bg-body: #ffffff;
    --color-bg-card: #f5f5f7;
    --color-bg-card-hover: #e8e8ed;
    --color-text-primary: #1d1d1f;
    --color-text-secondary: #6e6e73;
    --color-text-tertiary: #86868b;
    --glass-material: rgba(255, 255, 255, 0.8);
    --border-subtle: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero {
    background: radial-gradient(circle at 50% 20%, #f0f0f0 0%, #fff 60%);
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #1d1d1f 30%, #6e6e73 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .footer {
    background: #f5f5f7;
}

[data-theme="light"] .war-section {
    background: #fff;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.theme-toggle:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle svg {
    color: #1d1d1f;
}


/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    background-color: var(--color-accent);
    color: #fff;
}

/* ========================================
   HEADER (Glossy Blur)
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.9);
}

.header .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    display: none;
    /* Hide old SVG */
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    /* Rounded corners for Apple look */
    object-fit: contain;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    display: none;
    /* Cleaner look for header */
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    color: #e8e8ed;
    opacity: 0.8;
    transition: opacity 0.2s;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    opacity: 1;
    color: #fff;
}

/* ========================================
   HERO SECTION (Big Typography)
   ======================================== */

.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #000 60%);
}

.hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #6e6e73 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.motto-text {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-top: 16px;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 980px;
    /* Pill shape */
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Apple easing */
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: #0077ed;
    /* Slightly darker hover */
    transform: scale(1.02);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.02);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Hero Banner & Values */
.hero-banner-container {
    margin-bottom: 80px;
    display: block;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


.hero-banner {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    text-align: left;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item h3 {
    color: var(--color-accent);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.hero-note {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTIONS & GRID (Bento Box)
   ======================================== */

.section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 700px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.section-description {
    font-size: 21px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.requirements,
.war-section,
.links {
    padding: 100px 0;
}

/* ========================================
   CARDS (Apple Card Style)
   ======================================== */

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.requirement-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    height: 100%;
}

.requirement-card:hover {
    background: var(--color-bg-card-hover);
    transform: scale(1.02);
}

.requirement-icon {
    color: #fff;
    margin-bottom: 24px;
}

.requirement-icon svg {
    width: 32px;
    height: 32px;
}

.requirement-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.requirement-description,
.requirement-list li {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.requirement-list {
    margin-top: 16px;
}

.requirement-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.requirement-list li::before {
    content: "•";
    color: var(--color-text-tertiary);
}

.example-box {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 13px;
    color: #fff;
}

/* ========================================
   WAR RULES (Bento Grid)
   ======================================== */

.war-section {
    background: #000;
}

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

.war-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease;
}

.war-card:hover {
    transform: translateY(-5px);
}

/* Make the first card span 2 columns if space permits */
@media (min-width: 768px) {
    .war-grid>div:first-child {
        grid-column: span 2;
        background: radial-gradient(circle at top right, #333, #1c1c1e);
    }
}

.war-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 0.8;
}

.war-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.war-icon svg {
    width: 28px;
    height: 28px;
}




.war-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.war-card p {
    font-size: 17px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ========================================
   LINKS (Featured Cards)
   ======================================== */

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ========================================
   PREMIUM CARDS (Join S.S.G Section)
   ======================================== */

.links-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.premium-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.premium-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 50% 0%, rgba(41, 151, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover .premium-card-glow {
    opacity: 1;
}

.premium-card-glow.discord {
    background: radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.2) 0%, transparent 70%);
}

.premium-card-content {
    position: relative;
    padding: 48px 32px;
    text-align: center;
    z-index: 1;
}

.premium-card-icon {
    margin-bottom: 20px;
}

.platform-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.platform-icon.large {
    width: 100px;
    height: 100px;
}

.premium-card:hover .platform-icon {
    transform: scale(1.1);
}

.premium-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.premium-badge.required {
    background: rgba(41, 151, 255, 0.15);
    color: var(--color-accent);
}

.premium-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.premium-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 980px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #0077ed 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(41, 151, 255, 0.3);
}

.premium-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.premium-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(41, 151, 255, 0.5);
}

.premium-btn:hover svg {
    transform: translateX(4px);
}

.premium-btn.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.premium-btn.discord:hover {
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .links-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-card-content {
        padding: 32px 24px;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
    }

    .platform-icon.large {
        width: 80px;
        height: 80px;
    }

    .premium-card h3 {
        font-size: 20px;
    }
}


.links-grid.three-cards {
    grid-template-columns: repeat(3, 1fr);
}

.link-icon .torn-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}


/* Hero Logo */
.hero-logo-container {
    margin-bottom: 32px;
}

.hero-logo {
    border-radius: 24px;
    /* Big rounded corners */
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

@media (max-width: 768px) {

    .links-grid,
    .links-grid.three-cards {
        grid-template-columns: 1fr;
    }
}


.link-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    transition: transform 0.4s ease;
}

.link-card:hover {
    transform: scale(1.02);
}

.link-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.link-icon svg {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
}

.link-icon .platform-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
}

.link-icon .tornstats-logo {
    width: 140px;
    height: 140px;
}

.link-icon .discord-logo {
    width: 80px;
    height: 80px;
}


.link-card.discord .link-icon svg {
    width: 80px;
    height: 80px;
    color: #5865F2;
    filter: drop-shadow(0 4px 12px rgba(88, 101, 242, 0.4));
}


.link-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #333;
    padding: 4px 8px;
    border-radius: 4px;
}

.link-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.link-card p {
    font-size: 19px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-accent);
}

.link-btn:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #111;
    padding: 80px 0 40px;
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.footer-links a {
    margin-left: 24px;
    color: var(--color-text-secondary);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-leadership {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.footer-leadership p {
    margin: 4px 0;
}

.developer-credit {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.developer-credit strong {
    color: var(--color-accent);
}


/* ========================================
   ANIMATIONS
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.acknowledge-box {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.acknowledge-icon {
    font-size: 24px;
}

.acknowledge-content h3 {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.acknowledge-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Hide elements from previous designs */
.floating-shapes,
.bg-grid,
.bg-gradient,
.war-badge {
    display: none;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* ========================================
   COMPREHENSIVE MOBILE STYLES
   ======================================== */

@media (max-width: 768px) {

    /* Header */
    .header .container {
        padding: 0 16px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 11px;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero .container {
        padding: 0 16px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-note {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-item {
        padding: 20px;
    }

    .value-item h3 {
        font-size: 16px;
    }

    .value-item p {
        font-size: 14px;
    }

    /* Sections */
    .container {
        padding: 0 16px;
    }

    .requirements,
    .war-section,
    .links {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Cards */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .requirement-card {
        padding: 24px 20px;
    }

    .requirement-title {
        font-size: 20px;
    }

    .requirement-description {
        font-size: 15px;
    }

    /* War Cards */
    .war-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .war-card {
        padding: 24px;
    }

    .war-card h3 {
        font-size: 20px;
    }

    .war-card p {
        font-size: 14px;
    }

    /* Links Grid */
    .links-grid,
    .links-grid.three-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .link-card {
        padding: 32px 24px;
    }

    .link-icon .platform-logo,
    .link-icon .tornstats-logo,
    .link-icon .discord-logo,
    .link-icon .torn-logo {
        width: 60px;
        height: 60px;
    }

    .link-card h3 {
        font-size: 24px;
    }

    .link-card p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Banner */
    .hero-banner-container {
        margin-bottom: 40px;
        border-width: 2px;
    }

    .hero-banner {
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-links a {
        margin-left: 0;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Acknowledge Box */
    .acknowledge-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 10px;
    }
}