:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;

    /* Base Premium Cinematic Accents - Gold, Bronze, Copper */
    --base-accent-primary: #d4af37;
    --base-accent-secondary: #b87333;

    /* Dynamic Accents (controlled via JavaScript on scroll) */
    --accent-primary: var(--base-accent-primary);
    --accent-secondary: var(--base-accent-secondary);

    --glass-bg: rgba(10, 10, 10, 0.4);
    --glass-border: rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

#bg-video,
#glitter-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
}

#glitter-canvas {
    z-index: -3;
    /* Behind video wrapper */
    pointer-events: none;
    background-color: transparent;
}

#bg-video {
    object-fit: contain;
    filter: brightness(0.6) contrast(1.2);
    /* Enhance video look */
    z-index: -1;
    transition: opacity 1.5s ease;
}

#bg-video-blur {
    object-fit: cover;
    filter: brightness(0.7) contrast(1.3) blur(60px);
    z-index: -2;
    transition: opacity 1.5s ease;
}

/* Hide videos and canvas during the 12 second wait */
body.playing-intro #bg-video,
body.playing-intro #glitter-canvas {
    opacity: 0 !important;
}

/* Modifier class removed; all videos are contained now */

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center,
            rgba(5, 5, 5, 0.4) 0%,
            rgba(5, 5, 5, 0.85) 100%);
    z-index: -1;
}

/* Splash Screen Setup */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Intro Wait Screen (12 seconds) */
.intro-glow-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: -1;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-glow-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.glow-perimeter {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Silver lining is the outer inset, dynamic glow is inner */
    box-shadow: inset 0 0 10px 5px rgba(192, 192, 192, 0.8), inset 0 0 100px 30px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.5);
    background: radial-gradient(circle at center, transparent 30%, rgba(var(--accent-primary-rgb, 212, 175, 55), 0.15) 100%);
    animation: premiumPulse 4s infinite alternate ease-in-out;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.enter-btn-container {
    cursor: pointer;
    transition: transform 0.3s;
}

.enter-btn-container:hover {
    transform: scale(1.05);
}

.enter-img-btn {
    width: 200px;
    height: 200px;
    object-fit: contain;
    /* Removed border-radius and box-shadow to prevent a rigid circular ring */
    animation: pngGlow 2s infinite alternate;
}

.blink-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.5);
    animation: blinker 1.5s linear infinite;
    text-transform: uppercase;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 20px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);
    }

    100% {
        box-shadow: 0 0 50px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.6);
    }
}

@keyframes pngGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.4));
    }

    100% {
        filter: drop-shadow(0 0 35px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.9));
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: left;
}

.glass-card h2,
.glass-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.15);
    border-color: rgba(var(--accent-primary-rgb, 212, 175, 55), 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fffacd 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.neon-shadow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.6);
}

/* Unique Patriotic Stars and Stripes Glow for the Play Song Button */
#theme-song-btn {
    animation: patrioticGlow 2s infinite alternate;
    background:
        /* Stars (dots) */
        radial-gradient(circle at 15% 50%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 30%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 70%, white 1.5px, transparent 1.5px),
        /* Blue canton */
        linear-gradient(90deg, #0a3161 35%, transparent 35%),
        /* Red and white stripes */
        repeating-linear-gradient(180deg,
            #b31942,
            #b31942 8px,
            #ffffff 8px,
            #ffffff 16px);
    color: #ffffff !important;
    text-shadow: 0 2px 4px #000, 0 0 8px #000;
    border: 2px solid #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes patrioticGlow {
    0% {
        box-shadow: 0 0 10px #b31942, 0 0 25px #b31942;
        border-color: #b31942;
    }

    50% {
        box-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff;
        border-color: #ffffff;
    }

    100% {
        box-shadow: 0 0 10px #0a3161, 0 0 25px #0a3161;
        border-color: #0a3161;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-primary);
}

.large-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Layout */
main {
    padding-top: 80px;
    /* offset navbar */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 90%;
    max-width: 1200px;
    min-height: 50vh;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0 5%;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Cinematic Hero Text */
.cinematic-title {
    position: relative;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.05em;
}

/* Central Artwork Box - Premium */
.premium-box {
    width: 600px;
    height: auto;
    max-width: 90vw;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* Sharper edges for mature look */
    border: 2px solid var(--accent-primary);
    background: rgba(10, 10, 10, 0.6);
    box-shadow: 0 0 30px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);
    animation: premiumPulse 4s infinite alternate ease-in-out;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.premium-box .small-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
    text-align: center;
    padding: 0 20px;
}

@keyframes premiumPulse {
    0% {
        box-shadow: 0 0 20px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.1);
    }

    100% {
        box-shadow: 0 0 50px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.25);
        border-color: var(--accent-primary);
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Footer */
footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--text-primary);
}

/* Glitch effect removed for cinematic title, but keeping utility classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Whitepaper Card / Poem Specifics */
.whitepaper-card {
    border-top: 4px solid var(--accent-primary);
}

.whitepaper-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-poem {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.poem-stanza {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.poem-stanza:last-of-type {
    margin-bottom: 1rem;
}

/* Poem Selectors */
.poem-tab {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.poem-tab.active {
    display: block;
}

.poem-selectors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.poem-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poem-btn:hover,
.poem-btn.active {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.6);
}

.mt-4 {
    margin-top: 1.5rem;
    display: inline-block;
}

/* Steps Container */
.steps-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.step {
    position: relative;
    padding-left: 5rem;
}

.step-num {
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);
    font-family: var(--font-heading);
}

/* Hybrid Styles - Circle (Trust) */
.circle-style {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100vw;
    max-width: none;
    padding: 6rem 5%;
}

.circle-style h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(var(--accent-primary-rgb, 212, 175, 55), 0.2);
}

.trust-markers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.badge {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.03);
}

/* Hybrid Styles - Bonk (Energy) */
.bonk-style .glass-card {
    border: 1px solid var(--accent-primary);
    background: rgba(var(--accent-primary-rgb, 212, 175, 55), 0.05);
}

.bonk-style h2 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 3.5rem;
}

/* Idle Mode Transitions */
nav,
main,
footer,
.video-overlay {
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.idle-mode nav,
body.idle-mode main,
body.idle-mode footer,
body.idle-mode .video-overlay {
    opacity: 0 !important;
    pointer-events: none;
}

/* Footer & Disclaimer Restyling */
footer.glass-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 1200px;
}

/* Adventure Video Overlay */
.adventure-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.7);
    /* translucent to show glitter */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.adventure-video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#adventure-video,
#whitepaper-video,
#adventure-video-blur,
#whitepaper-video-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#adventure-video,
#whitepaper-video {
    object-fit: contain;
    z-index: 10000;
    max-width: 90vw;
    /* Keep it contained on vertical phones */
    max-height: 90vh;
}

.close-adventure-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    color: white;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-adventure-btn:hover {
    color: var(--accent-primary);
}

/* ==========================================================================
   Chart & Trade Section with Neon Shifting Frames
   ========================================================================== */
#trading.section {
    max-width: 1600px;
    width: 95%;
}

.chart-trade-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    width: 100%;
}

.chart-container {
    width: 100%;
    height: 80vh;
    min-height: 600px;
}

.swap-container {
    width: 100%;
    max-width: 450px;
    height: 500px;
}

.neon-shifting-frame {
    position: relative;
    border-radius: 15px;
    background: #000;
    padding: 3px;
    /* border thickness */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.neon-shifting-frame::before,
.neon-shifting-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    z-index: -1;
    border-radius: 17px;
    animation: neonShift 15s linear infinite;
}

.neon-shifting-frame::after {
    filter: blur(20px);
    opacity: 0.8;
}

@keyframes neonShift {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.embedded-widget {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2;
}

/* Custom Pulsing Neon Frame for Chart */
.neon-pulse-frame {
    position: relative;
    border-radius: 15px;
    background: #000;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.neon-pulse-frame::before,
.neon-pulse-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    /* Electric cyan, deep purple, and neon pink pulsing gradient */
    background: linear-gradient(45deg, #00ffd5, #7a00ff, #ff00c8, #002bff, #00ffd5);
    background-size: 300%;
    z-index: -1;
    border-radius: 18px;
    animation: neonShift 8s linear infinite;
}

.neon-pulse-frame::after {
    filter: blur(20px);
    opacity: 0.9;
    animation: neonShift 8s linear infinite, glowPulse 2s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        filter: blur(35px);
    }
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
@media screen and (max-width: 768px) {

    /* Navbar Scaling - Keep Horizontal layout */
    .navbar {
        flex-direction: row;
        /* Keep elements inline */
        padding: 0.8rem 2%;
        gap: 0.3rem;
        flex-wrap: wrap;
        /* Allow wrapping if absolutely necessary, but prioritize row */
        justify-content: center;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit */
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        /* Force links to stay on one line */
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        overflow-x: auto;
        /* Let them scroll sideways if screen is incredibly tiny */
        padding-bottom: 5px;
        /* space for potential scrollbar */
    }

    .nav-links a {
        margin: 0;
        font-size: 0.75rem;
        /* Shrink links to fit on screen */
        white-space: nowrap;
    }

    /* Keep the two main action buttons on same row */
    #theme-song-btn,
    .navbar .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.5rem 0.2rem 0;
    }

    /* Hero Scaling and Spacing */
    main {
        padding-top: 140px;
        /* Increased offset so the stacked navbar doesn't clip the title */
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        /* Allows the title down to 2.5rem to fit tight screens */
        line-height: 1.1;
        margin-top: 2rem;
        /* Add clear breathing room between blurred navbar and the text */
    }

    .subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    /* Buttons Stacking */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .large-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }

    /* Section Scaling */
    .section h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-box {
        border-right: none;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box:last-child {
        border-bottom: none;
    }
}