/* ═══════════════════════════════════════════════════════════════
   JAKE THE DOG - ADVENTURE TIME FAN SITE
   ═══════════════════════════════════════════════════════════════ */

:root {
    --jake-yellow: #F4A420;
    --jake-orange: #E8963A;
    --jake-light: #E8C87A;
    --jake-brown: #8B4513;
    --finn-blue: #4A90D9;
    --grass-green: #2ECC71;
    --sky-blue: #87CEEB;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --text: #f0f0f0;
    --text-muted: #a0a0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    background: #2E7D32;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(91, 200, 245, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(244, 164, 32, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(15, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(244, 164, 32, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-jake {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--jake-yellow);
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 var(--jake-orange);
}

.logo-dot {
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--jake-yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--jake-yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--jake-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - ADVENTURE TIME THEME
   ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #5BC8F5 0%, #8ED8F8 30%, #B6E8FB 55%, #7BC67E 55.1%, #4CAF50 100%);
    overflow: hidden;
}

/* ─── Adventure Time Sky ─── */
.at-sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Sun */
.at-sun {
    position: absolute;
    top: 8%;
    right: 12%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #FFF176 30%, #FFD54F 60%, rgba(255, 213, 79, 0) 70%);
    border-radius: 50%;
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Clouds - Adventure Time style (rounded, puffy) */
.at-cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    opacity: 0.9;
}

.at-cloud::before,
.at-cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.at-cloud-1 {
    width: 200px;
    height: 50px;
    top: 12%;
    left: -5%;
    animation: cloudDrift 25s linear infinite;
}
.at-cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}
.at-cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 90px;
}

.at-cloud-2 {
    width: 160px;
    height: 40px;
    top: 22%;
    left: 30%;
    animation: cloudDrift 30s linear infinite 5s;
}
.at-cloud-2::before {
    width: 65px;
    height: 65px;
    top: -35px;
    left: 20px;
}
.at-cloud-2::after {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 75px;
}

.at-cloud-3 {
    width: 180px;
    height: 45px;
    top: 8%;
    left: 55%;
    animation: cloudDrift 22s linear infinite 10s;
}
.at-cloud-3::before {
    width: 70px;
    height: 70px;
    top: -38px;
    left: 25px;
}
.at-cloud-3::after {
    width: 55px;
    height: 55px;
    top: -28px;
    left: 85px;
}

.at-cloud-4 {
    width: 140px;
    height: 35px;
    top: 30%;
    left: 75%;
    animation: cloudDrift 28s linear infinite 2s;
}
.at-cloud-4::before {
    width: 55px;
    height: 55px;
    top: -30px;
    left: 18px;
}
.at-cloud-4::after {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 65px;
}

.at-cloud-5 {
    width: 170px;
    height: 42px;
    top: 18%;
    left: 10%;
    animation: cloudDrift 35s linear infinite 8s;
}
.at-cloud-5::before {
    width: 68px;
    height: 68px;
    top: -36px;
    left: 22px;
}
.at-cloud-5::after {
    width: 52px;
    height: 52px;
    top: -26px;
    left: 80px;
}

@keyframes cloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* ─── Jake voando no fundo ─── */
.at-jake-flying {
    position: absolute;
    top: 15%;
    left: -200px;
    width: 150px;
    z-index: 2;
    animation: jakeFly 18s linear infinite;
    opacity: 0.6;
}

.at-jake-flying-2 {
    top: 30%;
    width: 100px;
    animation: jakeFly 24s linear infinite 8s;
    opacity: 0.4;
}

.jake-fly-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
    animation: jakeWobble 2s ease-in-out infinite;
}

@keyframes jakeFly {
    0% {
        left: -200px;
        transform: translateY(0);
    }
    25% {
        transform: translateY(-40px);
    }
    50% {
        transform: translateY(20px);
    }
    75% {
        transform: translateY(-30px);
    }
    100% {
        left: calc(100vw + 200px);
        transform: translateY(0);
    }
}

@keyframes jakeWobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ─── Finn montado no Jake voando ─── */
.at-finn-jake-flying {
    position: absolute;
    top: 20%;
    left: -300px;
    width: 220px;
    z-index: 3;
    animation: finnJakeFly 22s linear infinite 4s;
    opacity: 0.85;
}

.finn-jake-fly-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
    animation: finnJakeWobble 3s ease-in-out infinite;
}

@keyframes finnJakeFly {
    0% {
        left: -300px;
        transform: translateY(0);
    }
    20% {
        transform: translateY(-50px);
    }
    40% {
        transform: translateY(30px);
    }
    60% {
        transform: translateY(-40px);
    }
    80% {
        transform: translateY(20px);
    }
    100% {
        left: calc(100vw + 300px);
        transform: translateY(0);
    }
}

@keyframes finnJakeWobble {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.03); }
}

/* ─── Mountains / Hills ─── */
.at-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    z-index: 1;
}

.at-mountain {
    position: absolute;
    bottom: 42%;
    border-radius: 50% 50% 0 0;
}

.at-mountain-1 {
    width: 400px;
    height: 180px;
    background: linear-gradient(180deg, #66BB6A, #4CAF50);
    left: -5%;
    bottom: 40%;
}

.at-mountain-2 {
    width: 500px;
    height: 220px;
    background: linear-gradient(180deg, #81C784, #66BB6A);
    left: 30%;
    bottom: 38%;
}

.at-mountain-3 {
    width: 450px;
    height: 190px;
    background: linear-gradient(180deg, #66BB6A, #4CAF50);
    right: -10%;
    bottom: 39%;
}

/* ─── Grass ground ─── */
.at-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 40%, #2E7D32 100%);
    z-index: 1;
}

.at-grass-detail {
    position: absolute;
    bottom: 44%;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 1;
    background:
        radial-gradient(ellipse 20px 25px at 10% 100%, #66BB6A 48%, transparent 50%),
        radial-gradient(ellipse 15px 20px at 15% 100%, #4CAF50 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 25% 100%, #66BB6A 48%, transparent 50%),
        radial-gradient(ellipse 20px 28px at 35% 100%, #4CAF50 48%, transparent 50%),
        radial-gradient(ellipse 16px 24px at 45% 100%, #66BB6A 48%, transparent 50%),
        radial-gradient(ellipse 22px 26px at 55% 100%, #4CAF50 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 65% 100%, #66BB6A 48%, transparent 50%),
        radial-gradient(ellipse 20px 25px at 75% 100%, #4CAF50 48%, transparent 50%),
        radial-gradient(ellipse 16px 20px at 85% 100%, #66BB6A 48%, transparent 50%),
        radial-gradient(ellipse 22px 28px at 95% 100%, #4CAF50 48%, transparent 50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    z-index: 5;
    padding: 20px;
    position: relative;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line-1 {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: clamp(4rem, 12vw, 10rem);
    color: var(--jake-yellow);
    letter-spacing: 10px;
    text-shadow:
        4px 4px 0 var(--jake-orange),
        8px 8px 0 rgba(0,0,0,0.4);
    line-height: 1;
    animation: titleDrop 0.8s ease-out;
    -webkit-text-stroke: 2px #8B4513;
    paint-order: stroke fill;
}

.title-line-2 {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: white;
    letter-spacing: 15px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
    animation: titleDrop 0.8s ease-out 0.2s both;
}

@keyframes titleDrop {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    margin-bottom: 30px;
    animation: fadeUp 1s ease-out 0.5s both;
}

.hero-jake {
    margin: 30px auto;
    width: 280px;
    height: 320px;
    animation: jakeFloat 3s ease-in-out infinite, fadeUp 1s ease-out 0.7s both;
}

.jake-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    cursor: pointer;
    transition: transform 0.3s ease;
}

.jake-hero-img:hover {
    transform: scale(1.1);
}

@keyframes jakeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--jake-yellow);
    color: var(--dark);
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeUp 1s ease-out 0.9s both;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid #8B4513;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: var(--jake-orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    z-index: 5;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION DECOR - Minhocas, ossos e pedras nas seções verdes
   ═══════════════════════════════════════════════════════════════ */

.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Worms in green sections */
.decor-worm {
    position: absolute;
    opacity: 0.55;
}

/* About worms */
.dw-a1 { width: 110px; bottom: 8%; left: 3%; animation: wormWiggle1 4s ease-in-out infinite; }
.dw-a2 { width: 95px; top: 15%; right: 5%; animation: wormWiggle2 5s ease-in-out infinite 1s; }
.dw-a3 { width: 80px; top: 55%; left: 8%; animation: wormWiggle1 4.5s ease-in-out infinite 2s; }
.dw-a4 { width: 70px; bottom: 25%; right: 12%; animation: wormWiggle2 3.5s ease-in-out infinite 0.5s; }
.dw-a5 { width: 90px; top: 35%; right: 25%; animation: wormWiggle1 5.5s ease-in-out infinite 3s; }

/* Powers worms */
.dw-p1 { width: 105px; bottom: 10%; right: 4%; animation: wormWiggle2 4s ease-in-out infinite 0.5s; }
.dw-p2 { width: 90px; top: 12%; left: 5%; animation: wormWiggle1 5s ease-in-out infinite 1.5s; }
.dw-p3 { width: 80px; top: 45%; right: 15%; animation: wormWiggle2 4.5s ease-in-out infinite 2.5s; }
.dw-p4 { width: 75px; bottom: 30%; left: 10%; animation: wormWiggle1 3.5s ease-in-out infinite; }
.dw-p5 { width: 65px; top: 65%; left: 35%; animation: wormWiggle2 5s ease-in-out infinite 3.5s; }

/* Quotes worms */
.dw-q1 { width: 100px; bottom: 8%; left: 4%; animation: wormWiggle1 4.5s ease-in-out infinite; }
.dw-q2 { width: 85px; top: 15%; right: 6%; animation: wormWiggle2 4s ease-in-out infinite 1s; }
.dw-q3 { width: 75px; top: 50%; left: 2%; animation: wormWiggle1 5s ease-in-out infinite 2s; }
.dw-q4 { width: 70px; bottom: 20%; right: 18%; animation: wormWiggle2 3.5s ease-in-out infinite 0.8s; }

/* Gallery worms */
.dw-g1 { width: 110px; bottom: 5%; right: 3%; animation: wormWiggle1 4s ease-in-out infinite 0.3s; }
.dw-g2 { width: 95px; top: 8%; left: 4%; animation: wormWiggle2 5s ease-in-out infinite 1.2s; }
.dw-g3 { width: 85px; top: 40%; right: 8%; animation: wormWiggle1 4.5s ease-in-out infinite 2.2s; }
.dw-g4 { width: 70px; bottom: 30%; left: 12%; animation: wormWiggle2 3.5s ease-in-out infinite 0.5s; }
.dw-g5 { width: 80px; top: 60%; left: 40%; animation: wormWiggle1 5.5s ease-in-out infinite 3s; }

/* Bones in green sections */
.decor-bone {
    position: absolute;
    opacity: 0.35;
}

/* About bones */
.db-a1 { width: 90px; top: 10%; right: 10%; transform: rotate(-25deg); }
.db-a2 { width: 75px; bottom: 15%; left: 8%; transform: rotate(40deg); }
.db-a3 { width: 55px; top: 40%; left: 2%; transform: rotate(15deg); }
.db-a4 { width: 80px; bottom: 5%; right: 20%; transform: rotate(-50deg); }

/* Powers bones */
.db-p1 { width: 85px; top: 8%; left: 12%; transform: rotate(-35deg); }
.db-p2 { width: 50px; bottom: 20%; right: 8%; transform: rotate(10deg); }
.db-p3 { width: 70px; top: 50%; right: 3%; transform: rotate(55deg); }
.db-p4 { width: 65px; bottom: 8%; left: 25%; transform: rotate(-20deg); }

/* Quotes bones */
.db-q1 { width: 80px; top: 12%; right: 12%; transform: rotate(50deg); }
.db-q2 { width: 70px; bottom: 10%; left: 5%; transform: rotate(-45deg); }
.db-q3 { width: 50px; top: 55%; right: 2%; transform: rotate(20deg); }
.db-q4 { width: 75px; bottom: 25%; right: 25%; transform: rotate(-30deg); }

/* Gallery bones */
.db-g1 { width: 90px; top: 5%; left: 8%; transform: rotate(30deg); }
.db-g2 { width: 50px; bottom: 15%; right: 15%; transform: rotate(-15deg); }
.db-g3 { width: 80px; top: 35%; right: 3%; transform: rotate(45deg); }
.db-g4 { width: 70px; bottom: 5%; left: 20%; transform: rotate(-55deg); }
.db-g5 { width: 85px; top: 65%; left: 3%; transform: rotate(25deg); }

/* Rocks in green sections */
.decor-rock {
    position: absolute;
    border-radius: 40% 50% 45% 55%;
    background: linear-gradient(135deg, rgba(158,158,158,0.25) 0%, rgba(117,117,117,0.18) 50%, rgba(97,97,97,0.12) 100%);
    box-shadow: inset -3px -3px 6px rgba(0,0,0,0.2), inset 1px 1px 4px rgba(255,255,255,0.05);
}

/* About rocks */
.dr-a1 { width: 55px; height: 40px; bottom: 3%; left: 20%; transform: rotate(-10deg); }
.dr-a2 { width: 45px; height: 32px; top: 5%; right: 25%; transform: rotate(18deg); }
.dr-a3 { width: 60px; height: 42px; top: 45%; right: 2%; transform: rotate(-28deg); border-radius: 50% 40% 55% 45%; }
.dr-a4 { width: 38px; height: 30px; bottom: 20%; left: 40%; transform: rotate(14deg); }

/* Powers rocks */
.dr-p1 { width: 50px; height: 38px; bottom: 5%; right: 18%; transform: rotate(-22deg); }
.dr-p2 { width: 42px; height: 30px; top: 8%; left: 28%; transform: rotate(12deg); }
.dr-p3 { width: 55px; height: 40px; top: 55%; left: 2%; transform: rotate(-15deg); border-radius: 45% 55% 40% 50%; }
.dr-p4 { width: 35px; height: 26px; bottom: 25%; right: 35%; transform: rotate(20deg); }
.dr-p5 { width: 48px; height: 35px; top: 30%; right: 5%; transform: rotate(-8deg); }

/* Quotes rocks */
.dr-q1 { width: 52px; height: 38px; bottom: 3%; left: 25%; transform: rotate(8deg); }
.dr-q2 { width: 40px; height: 30px; top: 10%; right: 28%; transform: rotate(-18deg); }
.dr-q3 { width: 48px; height: 35px; top: 60%; left: 5%; transform: rotate(22deg); border-radius: 50% 40% 55% 45%; }

/* Gallery rocks */
.dr-g1 { width: 55px; height: 40px; top: 3%; right: 18%; transform: rotate(-12deg); }
.dr-g2 { width: 45px; height: 32px; bottom: 8%; left: 30%; transform: rotate(16deg); }
.dr-g3 { width: 50px; height: 38px; top: 45%; left: 2%; transform: rotate(-20deg); border-radius: 45% 55% 40% 50%; }
.dr-g4 { width: 38px; height: 28px; bottom: 25%; right: 5%; transform: rotate(10deg); }

/* Ensure section content stays above decorations */
.about, .powers, .quotes, .gallery {
    position: relative;
}

.about > .container,
.powers > .container,
.quotes > .container,
.gallery > .container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */

.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #388E3C 0%, #2E7D32 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--jake-yellow);
    letter-spacing: 5px;
    margin-bottom: 60px;
    text-shadow: 2px 2px 0 var(--jake-orange);
}

/* About Hero - image + text side by side */
.about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.about-hero-img {
    flex-shrink: 0;
    width: 280px;
}

.about-hero-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(244, 164, 32, 0.3));
    transition: transform 0.4s ease;
}

.about-hero-img img:hover {
    transform: scale(1.05) rotate(-3deg);
}

.about-hero-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-hero-text strong {
    color: var(--jake-yellow);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--jake-yellow);
    box-shadow: 0 15px 40px rgba(244, 164, 32, 0.2);
    background: rgba(244, 164, 32, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(244, 164, 32, 0.4));
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon img {
    transform: scale(1.15) rotate(5deg);
}

.about-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    color: var(--jake-yellow);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.jake-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(5px);
}

.info-item {
    text-align: center;
    padding: 15px;
}

.info-label {
    display: block;
    font-family: 'Bangers', cursive;
    color: var(--jake-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-value {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   POWERS SECTION
   ═══════════════════════════════════════════════════════════════ */

.powers {
    padding: 100px 0;
    background: linear-gradient(180deg, #2E7D32 0%, #1B5E20 50%, #2E7D32 100%);
    position: relative;
}

.powers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

.powers-showcase {
    text-align: center;
    margin-bottom: 50px;
}

.powers-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(244, 164, 32, 0.3));
    animation: jakeFloat 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.powers-img:hover {
    transform: scale(1.08);
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.power-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.power-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--jake-yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.power-card:hover {
    transform: translateY(-5px);
    border-color: var(--jake-yellow);
    box-shadow: 0 10px 30px rgba(244, 164, 32, 0.15);
}

.power-card:hover::before {
    transform: scaleX(1);
}

.power-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.power-icon svg {
    width: 100%;
    height: 100%;
}

.power-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: var(--jake-yellow);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.power-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.power-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.power-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--jake-yellow), var(--jake-orange));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

.power-fill.animated {
    width: var(--level);
}

/* ═══════════════════════════════════════════════════════════════
   JAKE WINDOW BUDDY
   ═══════════════════════════════════════════════════════════════ */

.jake-buddy {
    position: fixed;
    bottom: -10px;
    left: 20px;
    z-index: 9998;
    pointer-events: none;
    animation: jakePeek 1s ease-out 2s both;
}

.jake-buddy-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px -2px 10px rgba(0, 0, 0, 0.3));
    animation: jakeWave 3s ease-in-out infinite 3s;
}

@keyframes jakePeek {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

@keyframes jakeWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@media (max-width: 768px) {
    .jake-buddy-img {
        height: 100px;
    }
    .jake-buddy {
        left: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   JAKE SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */

/* Hide default scrollbar */
html {
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}

.jake-scrollbar {
    position: fixed;
    right: 5px;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    transition: top 0.15s ease-out;
}

.jake-scrollbar-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-2px 2px 8px rgba(0, 0, 0, 0.4));
    cursor: grab;
    pointer-events: auto;
}

.jake-scrollbar-img:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .jake-scrollbar-img {
        height: 80px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   QUOTES SECTION
   ═══════════════════════════════════════════════════════════════ */

.quotes {
    padding: 100px 0;
    background: linear-gradient(180deg, #2E7D32 0%, #388E3C 100%);
    position: relative;
}

.quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

/* Quotes layout - Jake image + carousel side by side */
.quotes-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quotes-jake {
    flex-shrink: 0;
    width: 250px;
}

.quotes-jake-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(244, 164, 32, 0.3));
    animation: jakeFloat 5s ease-in-out infinite;
}

.quotes-content {
    flex: 1;
    min-width: 0;
}

.quotes-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px;
    min-height: 220px;
}

.quote-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.quote-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.quote-mark {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    color: var(--jake-yellow);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.6;
}

.quote-text {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-episode {
    color: var(--jake-yellow);
    font-weight: 700;
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--jake-yellow);
    background: transparent;
    color: var(--jake-yellow);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--jake-yellow);
    color: var(--dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(244, 164, 32, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--jake-yellow);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */

.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #388E3C 0%, #1B5E20 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation-delay: var(--delay, 0s);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(244, 164, 32, 0.2);
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 164, 32, 0.2);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.gallery-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-card img {
    transform: scale(1.12) rotate(3deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    color: var(--jake-yellow);
    letter-spacing: 2px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.jakecoin-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--jake-yellow), var(--jake-orange));
    color: var(--dark);
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(244, 164, 32, 0.4), 0 0 0 0 rgba(244, 164, 32, 0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jakecoin-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.jakecoin-btn:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.jakecoin-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(244, 164, 32, 0.6), 0 0 20px rgba(244, 164, 32, 0.3);
}

.jakecoin-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* ═══════════════════════════════════════════════════════════════
   JAKECOIN SECTION
   ═══════════════════════════════════════════════════════════════ */

.jakecoin-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1B5E20 0%, #1a472a 50%, #1B5E20 100%);
    position: relative;
    overflow: hidden;
}

.jakecoin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

.jakecoin-section > .container {
    position: relative;
    z-index: 1;
}

.jakecoin-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.jakecoin-img {
    flex-shrink: 0;
    width: 280px;
}

.jakecoin-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(244, 164, 32, 0.4));
    animation: jakeFloat 5s ease-in-out infinite;
}

.jakecoin-text {
    flex: 1;
}

.jakecoin-text h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    color: var(--jake-yellow);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.jakecoin-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.jakecoin-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.jakecoin-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(244, 164, 32, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.jakecoin-feature:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(244, 164, 32, 0.4);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
}

.jakecoin-feature strong {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    color: var(--jake-yellow);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
}

.jakecoin-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.jakecoin-btn-lg {
    font-size: 1.6rem;
    padding: 20px 55px;
}

/* Decor positions for JakeCoin section */
.dw-j1 { top: 15%; left: 3%; width: 90px; }
.dw-j2 { bottom: 20%; right: 5%; width: 70px; }
.db-j1 { top: 60%; left: 2%; width: 55px; transform: rotate(25deg); }
.dr-j1 { bottom: 10%; left: 8%; width: 35px; height: 25px; }
.dr-j2 { top: 25%; right: 3%; width: 28px; height: 20px; }

/* ═══════════════════════════════════════════════════════════════
   UNDERGROUND SECTION
   ═══════════════════════════════════════════════════════════════ */

.underground {
    position: relative;
    overflow: hidden;
}

.underground-transition {
    height: 60px;
    background: #1B5E20;
    position: relative;
}

.grass-top-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background:
        radial-gradient(ellipse 20px 25px at 5% 0%, #2E7D32 48%, transparent 50%),
        radial-gradient(ellipse 15px 20px at 12% 0%, #388E3C 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 22% 0%, #2E7D32 48%, transparent 50%),
        radial-gradient(ellipse 20px 28px at 32% 0%, #388E3C 48%, transparent 50%),
        radial-gradient(ellipse 16px 24px at 42% 0%, #2E7D32 48%, transparent 50%),
        radial-gradient(ellipse 22px 26px at 52% 0%, #388E3C 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 62% 0%, #2E7D32 48%, transparent 50%),
        radial-gradient(ellipse 20px 25px at 72% 0%, #388E3C 48%, transparent 50%),
        radial-gradient(ellipse 16px 20px at 82% 0%, #2E7D32 48%, transparent 50%),
        radial-gradient(ellipse 22px 28px at 92% 0%, #388E3C 48%, transparent 50%);
}

.underground-layers {
    position: relative;
    min-height: 500px;
    background: linear-gradient(180deg,
        #5D4037 0%,
        #4E342E 15%,
        #3E2723 35%,
        #4E342E 55%,
        #5D4037 70%,
        #3E2723 85%,
        #2C1B11 100%
    );
}

/* Dirt texture layers */
.dirt-layer {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0.3;
}

.dirt-layer-1 {
    top: 10%;
    height: 8px;
    background: repeating-linear-gradient(90deg,
        transparent, transparent 30px,
        #795548 30px, #795548 35px,
        transparent 35px, transparent 80px
    );
}

.dirt-layer-2 {
    top: 40%;
    height: 6px;
    background: repeating-linear-gradient(90deg,
        transparent, transparent 50px,
        #6D4C41 50px, #6D4C41 58px,
        transparent 58px, transparent 120px
    );
}

.dirt-layer-3 {
    top: 70%;
    height: 10px;
    background: repeating-linear-gradient(90deg,
        transparent, transparent 20px,
        #8D6E63 20px, #8D6E63 28px,
        transparent 28px, transparent 90px
    );
}

/* Rocks */
.underground-rock {
    position: absolute;
    border-radius: 40% 50% 45% 55%;
    background: linear-gradient(135deg, #9E9E9E 0%, #757575 50%, #616161 100%);
    box-shadow: inset -3px -3px 8px rgba(0,0,0,0.4), inset 2px 2px 6px rgba(255,255,255,0.1);
}

.rock-1 {
    width: 60px;
    height: 45px;
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
}

.rock-2 {
    width: 80px;
    height: 55px;
    top: 55%;
    left: 75%;
    transform: rotate(20deg);
    border-radius: 50% 40% 55% 45%;
}

.rock-3 {
    width: 45px;
    height: 35px;
    top: 35%;
    left: 45%;
    transform: rotate(-8deg);
}

.rock-4 {
    width: 70px;
    height: 50px;
    top: 75%;
    left: 20%;
    transform: rotate(12deg);
    border-radius: 45% 55% 40% 50%;
}

.rock-5 {
    width: 50px;
    height: 40px;
    top: 60%;
    left: 60%;
    transform: rotate(-25deg);
}

/* Bones */
.bone {
    position: absolute;
    z-index: 2;
}

.bone-1 {
    width: 100px;
    top: 20%;
    left: 15%;
    transform: rotate(-30deg);
}

.bone-2 {
    width: 80px;
    top: 50%;
    left: 70%;
    transform: rotate(45deg);
}

.bone-3 {
    width: 70px;
    top: 80%;
    left: 35%;
    transform: rotate(-60deg);
}

.bone-4 {
    width: 55px;
    top: 30%;
    left: 82%;
    transform: rotate(15deg);
}

.bone-5 {
    width: 90px;
    top: 65%;
    left: 5%;
    transform: rotate(30deg);
}

/* Worms */
.worm {
    position: absolute;
    z-index: 3;
}

.worm-1 {
    width: 120px;
    top: 25%;
    left: 30%;
    animation: wormWiggle1 4s ease-in-out infinite;
}

.worm-2 {
    width: 100px;
    top: 45%;
    left: 55%;
    animation: wormWiggle2 5s ease-in-out infinite 1s;
}

.worm-3 {
    width: 90px;
    top: 70%;
    left: 15%;
    animation: wormWiggle1 4.5s ease-in-out infinite 2s;
}

.worm-4 {
    width: 80px;
    top: 38%;
    left: 80%;
    animation: wormWiggle2 3.5s ease-in-out infinite 0.5s;
}

.worm-5 {
    width: 70px;
    top: 85%;
    left: 60%;
    animation: wormWiggle1 5.5s ease-in-out infinite 3s;
}

@keyframes wormWiggle1 {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(15px) rotate(5deg);
    }
    50% {
        transform: translateX(-10px) rotate(-3deg);
    }
    75% {
        transform: translateX(8px) rotate(4deg);
    }
}

@keyframes wormWiggle2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scaleX(1);
    }
    30% {
        transform: translateX(-20px) rotate(-8deg) scaleX(0.9);
    }
    60% {
        transform: translateX(12px) rotate(5deg) scaleX(1.1);
    }
}

/* Roots */
.root {
    position: absolute;
    z-index: 1;
}

.root-1 {
    top: 0;
    left: 20%;
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, #2E7D32, #5D4037 30%, transparent);
    border-radius: 2px;
    transform: rotate(8deg);
}

.root-2 {
    top: 0;
    left: 50%;
    width: 3px;
    height: 90px;
    background: linear-gradient(180deg, #388E3C, #5D4037 40%, transparent);
    border-radius: 2px;
    transform: rotate(-12deg);
}

.root-3 {
    top: 0;
    left: 75%;
    width: 5px;
    height: 150px;
    background: linear-gradient(180deg, #2E7D32, #6D4C41 25%, transparent);
    border-radius: 2px;
    transform: rotate(5deg);
}

.root-4 {
    top: 0;
    left: 38%;
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, #388E3C, #5D4037 50%, transparent);
    border-radius: 2px;
    transform: rotate(-6deg);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 60px 0 40px;
    background: #2C1B11;
    border-top: 4px solid rgba(244, 164, 32, 0.3);
}

.footer-content {
    text-align: center;
}

.footer .nav-logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: rgba(244, 164, 32, 0.15);
    border: 2px solid rgba(244, 164, 32, 0.3);
    border-radius: 50px;
    color: var(--jake-yellow);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(244, 164, 32, 0.3);
    border-color: var(--jake-yellow);
    transform: scale(1.05);
}

.jakecoin-link {
    color: var(--jake-yellow);
    text-decoration: none;
    font-family: 'Bangers', cursive;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

.jakecoin-link:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS (fade-in on scroll)
   ═══════════════════════════════════════════════════════════════ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 15, 26, 0.98);
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid rgba(244, 164, 32, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-jake {
        width: 200px;
        height: 240px;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .about-hero-img {
        width: 200px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .jake-info {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }

    .powers-img {
        max-width: 250px;
    }

    .powers-grid {
        grid-template-columns: 1fr;
    }

    .quotes-layout {
        flex-direction: column;
        gap: 30px;
    }

    .quotes-jake {
        width: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .jakecoin-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .jakecoin-img {
        width: 200px;
    }

    .jakecoin-text h3 {
        font-size: 1.8rem;
    }

    .jakecoin-btn-lg {
        font-size: 1.2rem;
        padding: 16px 35px;
    }

    .quote-card {
        padding: 25px;
    }

    .quote-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .jake-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-jake {
        width: 160px;
        height: 200px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1B5E20;
}

::-webkit-scrollbar-thumb {
    background: var(--jake-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--jake-orange);
}

/* Selection */
::selection {
    background: var(--jake-yellow);
    color: var(--dark);
}
