/* ═══════════════════════════════════════════════════════════════
   PATRICK STAR - BIKINI BOTTOM FAN SITE
   ═══════════════════════════════════════════════════════════════ */

:root {
    --jake-yellow: #FF69B4;
    --jake-orange: #FF1493;
    --jake-light: #FFB6C1;
    --jake-brown: #8B0040;
    --finn-blue: #FFD700;
    --grass-green: #00CED1;
    --sky-blue: #006994;
    --dark: #0a1628;
    --darker: #060e1a;
    --text: #f0f0f0;
    --text-muted: #a0b8d0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    background: #003366 url('spongebob-flower-background-1200-x-900-ofd3woyh07em5dk2.jpg') repeat center top;
    background-size: 600px auto;
    color: var(--text);
    overflow-x: hidden;
}

/* ─── Floating Jellyfish ─── */
.jellyfish-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.jellyfish {
    position: absolute;
    width: 70px;
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.55;
    filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.4));
    animation: jellyfloat var(--dur, 12s) ease-in-out infinite, jellydrift var(--drift, 18s) ease-in-out infinite;
}

.jellyfish.jf-sm { width: 40px; opacity: 0.35; }
.jellyfish.jf-lg { width: 100px; opacity: 0.45; }

@keyframes jellyfloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-60px) rotate(5deg); }
    50%      { transform: translateY(-20px) rotate(-3deg); }
    75%      { transform: translateY(-80px) rotate(4deg); }
}

@keyframes jellydrift {
    0%, 100% { margin-left: 0; }
    50%      { margin-left: 40px; }
}

.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(0, 60, 120, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(6, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 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 - UNDERWATER BIKINI BOTTOM THEME
   ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, rgba(0,61,122,0.8) 0%, rgba(0,90,158,0.75) 20%, rgba(0,119,182,0.7) 40%, rgba(0,168,204,0.65) 55%, rgba(194,178,128,0.8) 55.1%, rgba(168,144,96,0.85) 100%);
    overflow: hidden;
    z-index: 1;
}

/* ─── Underwater Background ─── */
.at-sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Bikini Bottom surface/ground at the top */
.sky-ground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
    transform: scaleY(-1);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, transparent 100%);
}

/* Light rays from surface */
.at-sun {
    position: absolute;
    top: 0%;
    right: 12%;
    width: 200px;
    height: 300px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

/* Bubbles instead of clouds */
.at-cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.1) 60%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}

.at-cloud::before,
.at-cloud::after {
    content: '';
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 30%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.at-cloud-1 {
    width: 50px;
    height: 50px;
    top: 12%;
    left: -5%;
    animation: bubbleRise 12s linear infinite;
}
.at-cloud-1::before {
    width: 30px;
    height: 30px;
    top: -20px;
    left: 15px;
}
.at-cloud-1::after {
    width: 20px;
    height: 20px;
    top: -10px;
    left: 35px;
}

.at-cloud-2 {
    width: 35px;
    height: 35px;
    top: 22%;
    left: 30%;
    animation: bubbleRise 15s linear infinite 3s;
}
.at-cloud-2::before {
    width: 20px;
    height: 20px;
    top: -15px;
    left: 8px;
}
.at-cloud-2::after {
    width: 15px;
    height: 15px;
    top: -8px;
    left: 22px;
}

.at-cloud-3 {
    width: 45px;
    height: 45px;
    top: 35%;
    left: 55%;
    animation: bubbleRise 18s linear infinite 6s;
}
.at-cloud-3::before {
    width: 25px;
    height: 25px;
    top: -18px;
    left: 10px;
}
.at-cloud-3::after {
    width: 18px;
    height: 18px;
    top: -10px;
    left: 28px;
}

.at-cloud-4 {
    width: 28px;
    height: 28px;
    top: 45%;
    left: 75%;
    animation: bubbleRise 20s linear infinite 2s;
}
.at-cloud-4::before {
    width: 18px;
    height: 18px;
    top: -12px;
    left: 5px;
}
.at-cloud-4::after {
    width: 12px;
    height: 12px;
    top: -6px;
    left: 16px;
}

.at-cloud-5 {
    width: 40px;
    height: 40px;
    top: 18%;
    left: 10%;
    animation: bubbleRise 14s linear infinite 8s;
}
.at-cloud-5::before {
    width: 22px;
    height: 22px;
    top: -16px;
    left: 8px;
}
.at-cloud-5::after {
    width: 16px;
    height: 16px;
    top: -8px;
    left: 24px;
}

@keyframes bubbleRise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Keep old cloudDrift name for compatibility */
@keyframes cloudDrift {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ─── Patrick floating in background ─── */
.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); }
}

/* ─── SpongeBob and Patrick floating ─── */
.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); }
}

/* ─── Coral Reef ─── */
.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, #FF7F50, #FF6347);
    left: -5%;
    bottom: 40%;
    border-radius: 60% 40% 0 0;
}

.at-mountain-2 {
    width: 500px;
    height: 220px;
    background: linear-gradient(180deg, #20B2AA, #008B8B);
    left: 30%;
    bottom: 38%;
    border-radius: 45% 55% 0 0;
}

.at-mountain-3 {
    width: 450px;
    height: 190px;
    background: linear-gradient(180deg, #FF7F50, #CD5C5C);
    right: -10%;
    bottom: 39%;
    border-radius: 55% 45% 0 0;
}

/* ─── Sandy ocean floor ─── */
.at-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, #c2b280 0%, #a89060 40%, #8b7340 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%, #d4c098 48%, transparent 50%),
        radial-gradient(ellipse 15px 20px at 15% 100%, #c2b280 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 25% 100%, #d4c098 48%, transparent 50%),
        radial-gradient(ellipse 20px 28px at 35% 100%, #c2b280 48%, transparent 50%),
        radial-gradient(ellipse 16px 24px at 45% 100%, #d4c098 48%, transparent 50%),
        radial-gradient(ellipse 22px 26px at 55% 100%, #c2b280 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 65% 100%, #d4c098 48%, transparent 50%),
        radial-gradient(ellipse 20px 25px at 75% 100%, #c2b280 48%, transparent 50%),
        radial-gradient(ellipse 16px 20px at 85% 100%, #d4c098 48%, transparent 50%),
        radial-gradient(ellipse 22px 28px at 95% 100%, #c2b280 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 #8B0040;
    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 #8B0040;
}

.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 - Sea creatures, shells and coral
   ═══════════════════════════════════════════════════════════════ */

.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Sea creatures in ocean 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; }

/* Shells in ocean sections */
.decor-bone {
    position: absolute;
    opacity: 0.35;
}

/* About shells */
.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 shells */
.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 shells */
.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 shells */
.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); }

/* Coral rocks */
.decor-rock {
    position: absolute;
    border-radius: 40% 50% 45% 55%;
    background: linear-gradient(135deg, rgba(255,127,80,0.25) 0%, rgba(205,92,92,0.18) 50%, rgba(139,69,19,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, rgba(0,76,140,0.82) 0%, rgba(0,61,122,0.82) 100%);
    position: relative;
    z-index: 1;
}

.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(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 0.2);
    background: rgba(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 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, rgba(0,61,122,0.82) 0%, rgba(0,41,82,0.82) 50%, rgba(0,61,122,0.82) 100%);
    position: relative;
    z-index: 1;
}

.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(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 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);
}

/* ═══════════════════════════════════════════════════════════════
   PATRICK 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;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PATRICK 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, rgba(0,61,122,0.82) 0%, rgba(0,76,140,0.82) 100%);
    position: relative;
    z-index: 1;
}

.quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

/* Quotes layout - Patrick 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(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--jake-yellow);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   MEMES SECTION - STUPID PATRICK
   ═══════════════════════════════════════════════════════════════ */

.memes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,51,102,0.82) 0%, rgba(0,34,68,0.82) 50%, rgba(0,64,128,0.82) 100%);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.memes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF69B4, #FFD700, #FF69B4, transparent);
}

.memes-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-style: italic;
}

/* Meme Showcase Layout */
.meme-showcase {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

.meme-main {
    flex: 1.4;
}

.meme-side {
    flex: 1;
}

.meme-card {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.meme-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FF69B4;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3), 0 0 30px rgba(255, 105, 180, 0.1);
}

.meme-card-featured {
    border-color: rgba(255, 215, 0, 0.4);
}

.meme-card-featured:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

.meme-img-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    flex: 1;
}

.meme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meme-card:hover .meme-img {
    transform: scale(1.08);
}

.meme-caption {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.4);
}

.meme-caption h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #FF69B4;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.meme-caption p {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
}

.meme-drool-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.meme-badge-gif {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Meme Reactions Grid */
.meme-reactions {
    margin-bottom: 60px;
}

.meme-reactions-title {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #FFD700;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.meme-reactions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reaction-card {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reaction-card:hover {
    transform: translateY(-5px) rotate(-2deg);
    border-color: #FF69B4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.25);
    background: rgba(255, 105, 180, 0.1);
}

.reaction-card:active {
    transform: scale(0.95);
}

.reaction-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.reaction-card:hover .reaction-img {
    transform: scale(1.05);
}

.reaction-card span {
    font-family: 'Bangers', cursive;
    color: var(--text);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Drool-O-Meter */
.drool-meter {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 105, 180, 0.25);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.drool-meter-title {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    color: #FF69B4;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.drool-meter-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.drool-meter-container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.drool-patrick-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 105, 180, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.drool-patrick-wrap:hover {
    border-color: #FF69B4;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
}

.drool-patrick-wrap:active {
    transform: scale(0.92);
}

.drool-patrick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drool-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.drool-drop {
    position: absolute;
    width: 12px;
    height: 18px;
    background: rgba(100, 200, 255, 0.6);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: droolDrop 1s ease-in forwards;
}

@keyframes droolDrop {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(80px) scale(0.3); }
}

.drool-bar-wrap {
    flex: 1;
    max-width: 350px;
}

.drool-bar {
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    overflow: hidden;
    margin-bottom: 10px;
}

.drool-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00CED1, #FF69B4, #FF1493, #FFD700);
    border-radius: 15px;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.drool-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.drool-labels span {
    font-family: 'Bangers', cursive;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.drool-score {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #FF69B4;
    letter-spacing: 2px;
}

/* Memes section decor positions */
.dw-m1 { top: 10%; right: 4%; width: 80px; }
.dw-m2 { bottom: 15%; left: 3%; width: 70px; }
.dr-m1 { top: 30%; left: 5%; width: 30px; height: 22px; }
.dr-m2 { bottom: 25%; right: 6%; width: 25px; height: 18px; }

/* Drool Popup Easter Egg */
.drool-popup {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: bottom 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
}

.drool-popup.show {
    bottom: 0;
}

.drool-popup-img {
    width: 180px;
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 -5px 20px rgba(255, 105, 180, 0.4));
}

.drool-popup-text {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #FF69B4;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 20px;
    border-radius: 10px 10px 0 0;
    letter-spacing: 3px;
    position: absolute;
    top: -35px;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */

.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,76,140,0.82) 0%, rgba(0,41,82,0.82) 100%);
    position: relative;
    z-index: 1;
}

.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(255, 105, 180, 0.2);
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 105, 180, 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(255, 105, 180, 0.4), 0 0 0 0 rgba(255, 105, 180, 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(255, 105, 180, 0.6), 0 0 20px rgba(255, 105, 180, 0.3);
}

.jakecoin-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* ═══════════════════════════════════════════════════════════════
   PATRICKCOIN SECTION
   ═══════════════════════════════════════════════════════════════ */

.jakecoin-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,41,82,0.82) 0%, rgba(0,26,58,0.82) 50%, rgba(0,41,82,0.82) 100%);
    z-index: 1;
    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(255, 105, 180, 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(255, 105, 180, 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(255, 105, 180, 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 PatrickCoin 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; }

/* ═══════════════════════════════════════════════════════════════
   PATRICK TRADES SECTION - POLYMARKET SIMULATOR
   ═══════════════════════════════════════════════════════════════ */

.patrick-trades-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,44,88,0.82) 0%, rgba(0,26,58,0.82) 50%, rgba(0,51,102,0.82) 100%);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.patrick-trades-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jake-yellow), transparent);
}

.patrick-trades-section > .container {
    position: relative;
    z-index: 1;
}

.trades-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.markets-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 60px 20px;
    font-style: italic;
}

.trades-source-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

.trades-source-badge.live {
    background: rgba(0, 255, 127, 0.15);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.trades-source-badge.simulated {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* ─── Portfolio Top Bar ─── */
.trades-portfolio-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 105, 180, 0.25);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.portfolio-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.portfolio-value {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    color: var(--jake-yellow);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.portfolio-pnl {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.portfolio-pnl.positive { color: #00ff7f; }
.portfolio-pnl.negative { color: #ff4757; }

.portfolio-winrate {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff4757;
    letter-spacing: 1px;
}

.portfolio-iq {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ─── Main Layout ─── */
.trades-main-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* ─── Market Cards Grid ─── */
.trades-markets-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.market-card {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.market-card:hover {
    transform: translateY(-4px);
    border-color: var(--jake-yellow);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.market-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--jake-yellow), var(--jake-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.market-card:hover::after {
    transform: scaleX(1);
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.market-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--jake-yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 105, 180, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
}

.market-volume {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.market-question {
    font-family: 'Comic Neue', cursive;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 2.8em;
}

/* ─── Sparkline Charts ─── */
.market-sparkline {
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.market-sparkline svg {
    width: 100%;
    height: 100%;
}

.sparkline-path {
    stroke: var(--jake-yellow);
    transition: stroke 0.3s ease;
}

.sparkline-path.up { stroke: #00ff7f; }
.sparkline-path.down { stroke: #ff4757; }

/* ─── YES / NO Buttons ─── */
.market-odds {
    display: flex;
    gap: 10px;
}

.odds-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
}

.odds-yes {
    background: rgba(0, 255, 127, 0.1);
    border-color: rgba(0, 255, 127, 0.3);
    color: #00ff7f;
}

.odds-yes:hover {
    background: rgba(0, 255, 127, 0.2);
    border-color: #00ff7f;
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.2);
}

.odds-no {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.odds-no:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: #ff4757;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.2);
}

.odds-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.odds-pct {
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

@keyframes pctFlashGreen {
    0% { text-shadow: 0 0 10px rgba(0,255,127,0.8); }
    100% { text-shadow: none; }
}

@keyframes pctFlashRed {
    0% { text-shadow: 0 0 10px rgba(255,71,87,0.8); }
    100% { text-shadow: none; }
}

.pct-flash-up { animation: pctFlashGreen 0.5s ease-out; }
.pct-flash-down { animation: pctFlashRed 0.5s ease-out; }

/* ─── Patrick Reaction Area ─── */
.trades-patrick-reaction {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.patrick-trader-wrap {
    position: relative;
    width: 250px;
    height: 280px;
}

.patrick-trader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 105, 180, 0.4));
    transition: filter 0.5s ease, transform 0.3s ease;
}

.patrick-trader-img.melt-mild {
    filter: drop-shadow(0 10px 30px rgba(255, 105, 180, 0.4)) saturate(1.3);
    animation: meltWobble 2s ease-in-out infinite;
}

.patrick-trader-img.melt-medium {
    filter: drop-shadow(0 10px 30px rgba(255, 71, 87, 0.5)) saturate(1.5) hue-rotate(10deg);
    animation: meltWobble 1.2s ease-in-out infinite;
}

.patrick-trader-img.melt-extreme {
    filter: drop-shadow(0 10px 40px rgba(255, 0, 0, 0.6)) saturate(2) hue-rotate(20deg) contrast(1.2);
    animation: meltExtreme 0.6s ease-in-out infinite;
}

.patrick-trader-img.melt-euphoria {
    filter: drop-shadow(0 10px 40px rgba(0, 255, 127, 0.6)) saturate(1.8) brightness(1.2);
    animation: meltEuphoria 1s ease-in-out infinite;
}

@keyframes meltWobble {
    0%, 100% { transform: scaleX(1) scaleY(1) rotate(0deg); }
    25% { transform: scaleX(1.05) scaleY(0.95) rotate(1deg); }
    50% { transform: scaleX(0.95) scaleY(1.05) rotate(-1deg); }
    75% { transform: scaleX(1.03) scaleY(0.97) rotate(0.5deg); }
}

@keyframes meltExtreme {
    0%, 100% { transform: scaleX(1) scaleY(1) rotate(0deg) translateY(0); }
    15% { transform: scaleX(1.1) scaleY(0.9) rotate(3deg) translateY(2px); }
    30% { transform: scaleX(0.9) scaleY(1.1) rotate(-2deg) translateY(-3px); }
    45% { transform: scaleX(1.08) scaleY(0.92) rotate(2deg) translateY(3px); }
    60% { transform: scaleX(0.92) scaleY(1.08) rotate(-3deg) translateY(-2px); }
    75% { transform: scaleX(1.05) scaleY(0.95) rotate(1deg) translateY(1px); }
}

@keyframes meltEuphoria {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.08) rotate(3deg); }
    50% { transform: scale(1.12) rotate(-2deg); }
    75% { transform: scale(1.05) rotate(1deg); }
}

/* Sweat / drool drops */
.patrick-sweat-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sweat-drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: rgba(100, 200, 255, 0.7);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: sweatFall 1.2s ease-in forwards;
}

@keyframes sweatFall {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(100px) scale(0.3); }
}

.drool-strand {
    position: absolute;
    bottom: 10%;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, rgba(100,200,255,0.6), rgba(100,200,255,0));
    border-radius: 2px;
    animation: droolGrow 2s ease-in-out infinite;
}

@keyframes droolGrow {
    0%, 100% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 0.7; }
}

/* Thought bubble */
.patrick-thought {
    position: absolute;
    top: -10px;
    right: -40px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    max-width: 160px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 2;
}

.patrick-thought.show {
    opacity: 1;
    transform: scale(1);
}

.patrick-thought::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.patrick-thought::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* Mood indicator */
.patrick-mood-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    backdrop-filter: blur(5px);
}

.mood-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.mood-status {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mood-status.mood-confused { color: var(--jake-yellow); }
.mood-status.mood-panicking { color: #ff4757; }
.mood-status.mood-euphoric { color: #00ff7f; }
.mood-status.mood-drooling { color: #64c8ff; }
.mood-status.mood-crying { color: #ff6b9d; }

/* ─── Mini P&L Chart ─── */
.pnl-chart-wrap {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 105, 180, 0.15);
    border-radius: 12px;
    padding: 15px;
}

.pnl-chart-title {
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.pnl-chart { height: 60px; }
.pnl-chart svg { width: 100%; height: 100%; }

.pnl-line {
    stroke: #00ff7f;
    transition: stroke 0.3s ease;
}

.pnl-line.losing { stroke: #ff4757; }

/* ─── Trade Feed ─── */
.trades-feed {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(5px);
}

.trades-feed-title {
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    color: var(--jake-yellow);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.trades-feed-scroll {
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,105,180,0.3) transparent;
}

.trades-feed-scroll::-webkit-scrollbar { width: 6px; }
.trades-feed-scroll::-webkit-scrollbar-track { background: transparent; }
.trades-feed-scroll::-webkit-scrollbar-thumb { background: rgba(255, 105, 180, 0.3); border-radius: 3px; }

.trade-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--jake-yellow);
    animation: tradeFadeIn 0.4s ease-out;
    font-size: 0.9rem;
}

.trade-notification.buy { border-left-color: #00ff7f; }
.trade-notification.sell { border-left-color: #ff4757; }

.trade-notification .trade-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.trade-notification .trade-text {
    color: var(--text);
    flex: 1;
}

.trade-notification .trade-text strong {
    color: var(--jake-yellow);
}

@keyframes tradeFadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Decor positions ─── */
.dw-t1 { top: 10%; right: 4%; width: 85px; }
.dw-t2 { bottom: 15%; left: 3%; width: 70px; }
.dw-t3 { top: 50%; right: 2%; width: 60px; }
.db-t1 { top: 70%; left: 2%; width: 50px; transform: rotate(15deg); }
.db-t2 { bottom: 8%; right: 6%; width: 45px; transform: rotate(-20deg); }
.dr-t1 { bottom: 12%; left: 7%; width: 35px; height: 25px; }
.dr-t2 { top: 20%; right: 3%; width: 28px; height: 20px; }
.dr-t3 { top: 65%; left: 1%; width: 32px; height: 22px; }

/* ═══════════════════════════════════════════════════════════════
   OCEAN FLOOR SECTION
   ═══════════════════════════════════════════════════════════════ */

.underground {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.underground-transition {
    height: 60px;
    background: #002952;
    position: relative;
}

.grass-top-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background:
        radial-gradient(ellipse 20px 25px at 5% 0%, #003d7a 48%, transparent 50%),
        radial-gradient(ellipse 15px 20px at 12% 0%, #004c8c 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 22% 0%, #003d7a 48%, transparent 50%),
        radial-gradient(ellipse 20px 28px at 32% 0%, #004c8c 48%, transparent 50%),
        radial-gradient(ellipse 16px 24px at 42% 0%, #003d7a 48%, transparent 50%),
        radial-gradient(ellipse 22px 26px at 52% 0%, #004c8c 48%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 62% 0%, #003d7a 48%, transparent 50%),
        radial-gradient(ellipse 20px 25px at 72% 0%, #004c8c 48%, transparent 50%),
        radial-gradient(ellipse 16px 20px at 82% 0%, #003d7a 48%, transparent 50%),
        radial-gradient(ellipse 22px 28px at 92% 0%, #004c8c 48%, transparent 50%);
}

.underground-layers {
    position: relative;
    min-height: 500px;
    background: linear-gradient(180deg,
        #c2b280 0%,
        #b8a06a 15%,
        #a89060 35%,
        #b8a06a 55%,
        #c2b280 70%,
        #a89060 85%,
        #8b7340 100%
    );
}

/* Sand 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,
        #d4c098 30px, #d4c098 35px,
        transparent 35px, transparent 80px
    );
}

.dirt-layer-2 {
    top: 40%;
    height: 6px;
    background: repeating-linear-gradient(90deg,
        transparent, transparent 50px,
        #c2b280 50px, #c2b280 58px,
        transparent 58px, transparent 120px
    );
}

.dirt-layer-3 {
    top: 70%;
    height: 10px;
    background: repeating-linear-gradient(90deg,
        transparent, transparent 20px,
        #d4c098 20px, #d4c098 28px,
        transparent 28px, transparent 90px
    );
}

/* Coral rocks */
.underground-rock {
    position: absolute;
    border-radius: 40% 50% 45% 55%;
    background: linear-gradient(135deg, #FF7F50 0%, #CD5C5C 50%, #8B4513 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);
}

/* Shells */
.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);
}

/* Sea creatures */
.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);
    }
}

/* Seaweed */
.root {
    position: absolute;
    z-index: 1;
}

.root-1 {
    top: 0;
    left: 20%;
    width: 6px;
    height: 120px;
    background: linear-gradient(180deg, #2E8B57, #3CB371 30%, #20B2AA);
    border-radius: 3px;
    transform: rotate(8deg);
    animation: wormWiggle1 6s ease-in-out infinite;
}

.root-2 {
    top: 0;
    left: 50%;
    width: 5px;
    height: 90px;
    background: linear-gradient(180deg, #2E8B57, #3CB371 40%, #20B2AA);
    border-radius: 3px;
    transform: rotate(-12deg);
    animation: wormWiggle2 5s ease-in-out infinite 1s;
}

.root-3 {
    top: 0;
    left: 75%;
    width: 7px;
    height: 150px;
    background: linear-gradient(180deg, #2E8B57, #3CB371 25%, #20B2AA);
    border-radius: 3px;
    transform: rotate(5deg);
    animation: wormWiggle1 7s ease-in-out infinite 2s;
}

.root-4 {
    top: 0;
    left: 38%;
    width: 5px;
    height: 70px;
    background: linear-gradient(180deg, #2E8B57, #3CB371 50%, #20B2AA);
    border-radius: 3px;
    transform: rotate(-6deg);
    animation: wormWiggle2 4s ease-in-out infinite 0.5s;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 60px 0 40px;
    background: rgba(10, 22, 40, 0.92);
    border-top: 4px solid rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
}

.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(255, 105, 180, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 50px;
    color: var(--jake-yellow);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 105, 180, 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(6, 14, 26, 0.98);
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid rgba(255, 105, 180, 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;
    }

    .meme-showcase {
        flex-direction: column;
    }

    .meme-reactions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .drool-meter-container {
        flex-direction: column;
    }

    .drool-patrick-wrap {
        width: 180px;
        height: 180px;
    }

    .drool-popup-img {
        width: 140px;
    }

    .trades-main-layout {
        flex-direction: column;
    }

    .trades-markets-grid {
        grid-template-columns: 1fr;
    }

    .trades-patrick-reaction {
        width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .patrick-trader-wrap {
        width: 180px;
        height: 200px;
    }

    .trades-portfolio-bar {
        padding: 20px 15px;
    }

    .portfolio-value {
        font-size: 1.6rem;
    }

    .portfolio-pnl,
    .portfolio-winrate,
    .portfolio-iq {
        font-size: 1.3rem;
    }

    .patrick-thought {
        right: -20px;
        font-size: 0.75rem;
        max-width: 120px;
    }

    .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;
    }

    .meme-reactions-grid {
        grid-template-columns: 1fr;
    }

    .drool-meter {
        padding: 25px 15px;
    }

    .meme-caption h3 {
        font-size: 1.2rem;
    }
}
