/* --- LOCAL FONTS --- */
@font-face {
    font-family: 'Candy Beans';
    src: url('fonts/Candy Beans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Milkshake Creps';
    src: url('fonts/Milkshake Creps.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- TOKENS (TON-flavoured cartoon) --- */
:root {
    --bg-paper: #E6F4FE;
    --bg-card: #CFE7F8;
    --ink: #0A1A2C;
    --ink-light: #2C4A6B;
    --accent-color: #0098EA;    /* TON brand blue */
    --accent-soft: #59C4FF;
    --sun-yellow: #FFD23F;
    --hot-pink: #FF6FB1;

    /* Candy Beans → display / headings (chunky cartoon).
       Milkshake Creps → body copy (the soft round handwritten one). */
    --font-copy: 'Milkshake Creps', system-ui, -apple-system, sans-serif;
    --font-heading: 'Candy Beans', 'Milkshake Creps', system-ui, sans-serif;
    --font-display: 'Candy Beans', system-ui, sans-serif;

    --shadow-pop: 5px 5px 0 var(--ink);
    --shadow-pop-lg: 8px 8px 0 var(--ink);
    --shadow-pop-accent: 5px 5px 0 var(--accent-color);
}

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-copy);
    background: var(--bg-paper);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.55;
    font-weight: 400;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(0, 152, 234, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(89, 196, 255, 0.10) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-paper);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

/* =========================================
   SCROLL REVEAL (subtle)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.in-view,
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.kicker {
    display: inline-block;
    font-family: var(--font-copy);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    background: rgba(0, 152, 234, 0.10);
    border: 1.5px solid var(--accent-color);
    border-radius: 999px;
    margin-bottom: 1rem;
}

.center {
    text-align: center;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--ink-light);
    max-width: 560px;
    margin: -1.5rem auto 3rem;
}

.dim {
    color: var(--ink-light);
    opacity: 0.85;
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(230, 244, 254, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ink);
    transition: all 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ink);
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    object-fit: cover;
    background: #fff;
    transition: transform 0.4s ease;
}

.nav-logo:hover img {
    transform: rotate(-12deg) scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding: 0.2rem 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta-mobile { display: none; }
.nav-socials-desktop { display: none; }
.nav-socials-mobile { display: none; }

.nav-cta {
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 0.45rem 1.2rem;
    background: var(--accent-color);
    color: #fff;
    border: 2px solid var(--ink);
    border-radius: 999px;
    transition: all 0.2s;
    box-shadow: 4px 4px 0 var(--ink);
    letter-spacing: 1px;
}

.nav-cta:hover {
    background: var(--ink);
    color: var(--accent-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--ink);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 0.75rem 1.8rem;
    border: 2px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0 var(--ink);
}

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

.btn-primary:hover {
    background: var(--ink);
    color: var(--accent-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.btn-secondary {
    background: var(--bg-paper);
    color: var(--ink);
}

.btn-secondary:hover {
    background: var(--accent-soft);
    color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.btn-xl {
    font-size: 1.35rem;
    padding: 1rem 2.2rem;
}

/* =========================================
   HERO
   ========================================= */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.bg-video.loaded {
    opacity: 0.18;
}

#hero,
#tokenomics {
    position: relative;
    overflow: hidden;
}

#hero {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(89, 196, 255, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 152, 234, 0.20) 0%, transparent 60%),
        linear-gradient(180deg, #DCEFFD 0%, var(--bg-paper) 100%);
    padding-top: 100px;
    border-bottom: 2px solid var(--ink);
    min-height: 90vh;
}

#hero::before {
    /* sun spinning gently */
    content: '';
    position: absolute;
    top: 110px;
    left: 6%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sun-yellow) 0%, rgba(255,210,63,0) 70%);
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
    animation: sunDrift 14s ease-in-out infinite alternate;
}

@keyframes sunDrift {
    0% { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(20px, 12px) rotate(40deg); }
}

/* Cartoon clouds drifting */
.hero-clouds {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 rgba(10, 26, 44, 0.08);
    opacity: 0.85;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--ink);
}

.cloud-a {
    width: 110px; height: 30px;
    top: 18%; left: -130px;
    animation: drift 38s linear infinite;
}
.cloud-a::before { width: 50px; height: 50px; top: -22px; left: 18px; }
.cloud-a::after  { width: 36px; height: 36px; top: -14px; left: 60px; }

.cloud-b {
    width: 80px; height: 24px;
    top: 32%; left: -100px;
    animation: drift 52s linear infinite 6s;
    opacity: 0.7;
}
.cloud-b::before { width: 36px; height: 36px; top: -18px; left: 14px; }
.cloud-b::after  { width: 26px; height: 26px; top: -10px; left: 44px; }

.cloud-c {
    width: 130px; height: 32px;
    top: 60%; left: -160px;
    animation: drift 45s linear infinite 14s;
}
.cloud-c::before { width: 56px; height: 56px; top: -26px; left: 24px; }
.cloud-c::after  { width: 40px; height: 40px; top: -18px; left: 76px; }

@keyframes drift {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100vw + 200px)); }
}

#hero .hero-inner,
#tokenomics .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 80vh;
}

.hero-left {
    animation: heroSlideUp 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) both;
    animation-delay: 0.15s;
}

.hero-right {
    display: flex;
    justify-content: center;
    animation: heroPop 1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

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

@keyframes heroPop {
    from { opacity: 0; transform: scale(0.85) rotate(-4deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 6.4rem);
    line-height: 0.95;
    margin: 0.6rem 0 1.4rem;
    color: var(--ink);
    letter-spacing: -1px;
}

.title-accent {
    color: var(--accent-color);
    text-shadow: 4px 4px 0 var(--ink);
    display: inline-block;
    transform: rotate(-1deg);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--ink-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}

/* Contract Copy */
.hero-ca-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}

.ca-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

.ca-pill {
    display: flex;
    align-items: center;
    border: 2px dashed var(--accent-color);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    gap: 1rem;
    color: var(--ink);
    border-radius: 999px;
}

.ca-pill:hover {
    background: rgba(0, 152, 234, 0.10);
    transform: translateY(-2px);
}

.ca-icon {
    border-left: 2px dashed var(--accent-color);
    padding-left: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Social Logos */
.hero-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    transition: all 0.2s;
    box-shadow: 3px 3px 0 var(--ink);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translate(-2px, -2px) rotate(-4deg);
    box-shadow: 5px 5px 0 var(--ink);
}

/* Hero Image */
.hero-img-wrap {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.hero-blob {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 55%, var(--accent-soft) 0%, rgba(89, 196, 255, 0) 70%);
    z-index: 0;
    animation: pulseHalo 4.5s ease-in-out infinite;
}

@keyframes pulseHalo {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 18px;
    background: transparent;
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink), 18px 18px 0 var(--accent-color);
    animation: floaty 5.5s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-14px) rotate(1.5deg); }
}

.hero-tag {
    position: absolute;
    top: 8%;
    right: -8px;
    background: var(--sun-yellow);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    transform: rotate(8deg);
    z-index: 2;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(8deg); }
    50% { transform: rotate(-4deg); }
}

/* =========================================
   BELLY TV — zoom-in intro + custom player
   ========================================= */
#belly-tv {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(89, 196, 255, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 152, 234, 0.30) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-card) 100%);
    padding: 5.5rem 1.5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--ink);
}

.belly-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.belly-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.55;
    will-change: transform;
}

.belly-orb-1 {
    width: 320px; height: 320px;
    top: 10%; left: 6%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    animation: orbA 14s ease-in-out infinite alternate;
}
.belly-orb-2 {
    width: 260px; height: 260px;
    top: 50%; right: 8%;
    background: radial-gradient(circle, var(--hot-pink) 0%, transparent 70%);
    opacity: 0.45;
    animation: orbB 18s ease-in-out infinite alternate;
}
.belly-orb-3 {
    width: 200px; height: 200px;
    bottom: 6%; left: 40%;
    background: radial-gradient(circle, var(--sun-yellow) 0%, transparent 70%);
    opacity: 0.5;
    animation: orbC 20s ease-in-out infinite alternate;
}

@keyframes orbA {
    to { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes orbB {
    to { transform: translate(-50px, -40px) scale(1.15); }
}
@keyframes orbC {
    to { transform: translate(40px, -30px) scale(0.95); }
}

/* Drifting cartoon clouds */
.belly-cloud {
    position: absolute;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 999px;
    box-shadow: 4px 4px 0 rgba(10, 26, 44, 0.10);
    opacity: 0.78;
    pointer-events: none;
}

.belly-cloud::before,
.belly-cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.belly-cloud-1 {
    width: 110px; height: 30px;
    top: 14%; left: -130px;
    animation: bellyDrift 42s linear infinite;
}
.belly-cloud-1::before { width: 50px; height: 50px; top: -22px; left: 18px; }
.belly-cloud-1::after  { width: 36px; height: 36px; top: -14px; left: 60px; }

.belly-cloud-2 {
    width: 85px; height: 26px;
    top: 28%; left: -110px;
    opacity: 0.6;
    animation: bellyDrift 56s linear infinite 8s;
}
.belly-cloud-2::before { width: 38px; height: 38px; top: -18px; left: 14px; }
.belly-cloud-2::after  { width: 28px; height: 28px; top: -10px; left: 46px; }

.belly-cloud-3 {
    width: 130px; height: 32px;
    top: 65%; left: -160px;
    animation: bellyDrift 50s linear infinite 16s;
}
.belly-cloud-3::before { width: 56px; height: 56px; top: -26px; left: 24px; }
.belly-cloud-3::after  { width: 40px; height: 40px; top: -18px; left: 76px; }

.belly-cloud-4 {
    width: 95px; height: 28px;
    top: 82%; left: -120px;
    opacity: 0.55;
    animation: bellyDrift 60s linear infinite 24s;
}
.belly-cloud-4::before { width: 42px; height: 42px; top: -20px; left: 16px; }
.belly-cloud-4::after  { width: 30px; height: 30px; top: -12px; left: 50px; }

@keyframes bellyDrift {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100vw + 240px)); }
}

/* One big faded mascot anchored on the right side as a watermark */
.bg-mascot-side {
    position: absolute;
    top: 50%;
    right: -6%;
    height: 92vh;
    width: auto;
    max-width: 65vw;
    transform: translateY(-50%);
    opacity: 0.22;
    filter: saturate(0.9);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: bgMascotBob 10s ease-in-out infinite;
}

@keyframes bgMascotBob {
    0%, 100% { transform: translate(0, -50%); }
    50%      { transform: translate(0, calc(-50% - 14px)); }
}

.belly-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
}

/* sr-only — keeps the H1 in the accessibility tree while the SVG carries the visual */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.belly-title-svg {
    display: block;
    width: 100%;
    max-width: min(96vw, 1900px);
    height: auto;
    margin: 0 auto;
    overflow: visible;
}

/* Shine sits on top of the base text and brightens it via screen blend */
.belly-title-shine {
    mix-blend-mode: screen;
    pointer-events: none;
}

.belly-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    color: var(--accent-color);
    letter-spacing: 2px;
    margin: -0.4rem 0 0;
    text-transform: uppercase;
    text-shadow: 0 2px 0 #ffffff;
}

.belly-stage-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.belly-stage {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    transform-origin: 50% 74%;
    transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
    pointer-events: none;
}

.belly-mascot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 1.1s ease 0.5s;
    user-select: none;
    animation: bellyIdleFloat 6s ease-in-out infinite;
}

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

/* The screen now lives next to the stage (not inside it) so its size is
   independent of the mascot's parallax-zoom. This stops the zoomed video
   from eating into the player's row. */
.belly-screen {
    position: absolute;
    left: 50%;
    top: 64%;
    width: 13vw;
    max-width: 200px;
    aspect-ratio: 16 / 9;
    transform: translate(-50%, -50%);
    background: #000;
    border: 5px solid var(--ink);
    border-radius: 14px;
    box-shadow:
        6px 6px 0 var(--accent-color),
        0 30px 60px rgba(10, 26, 44, 0.35);
    overflow: hidden;
    z-index: 3;
    transition:
        top    1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.25s,
        width  1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.25s,
        max-width 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.25s,
        border-width 0.6s ease 0.25s;
}

.belly-screen-edge {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    pointer-events: none;
    z-index: 3;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.25),
        inset 0 0 30px rgba(0, 0, 0, 0.35);
    background: repeating-linear-gradient(
        180deg,
        transparent 0,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 2px,
        transparent 4px
    );
}

.belly-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Mascot does a small "rush forward" zoom + fade. The actual TV migrates
   from the belly to the centre and grows — see .belly-screen rules below. */
#belly-tv.zoomed .belly-stage {
    transform: scale(1.8);
}

#belly-tv.zoomed .belly-mascot {
    opacity: 0;
}

#belly-tv.zoomed .belly-screen {
    top: 50%;
    width: 80vw;
    max-width: 1100px;
    border-width: 8px;
}

/* ---- Custom video player (lives below the stage) ---- */
.belly-player {
    position: relative;
    z-index: 4;
    margin: 1.4rem auto 0;
    max-width: 640px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: 999px;
    padding: 0.45rem 0.6rem;
    box-shadow: 5px 5px 0 var(--ink);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.belly-player:hover {
    transform: rotate(0deg);
}

.bp-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border: 2px solid var(--ink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
    flex-shrink: 0;
    box-shadow: 2px 2px 0 var(--ink);
    padding: 0;
}

.bp-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--ink);
    background: var(--ink);
    color: var(--accent-color);
}

.bp-btn .bp-icon-pause,
.bp-btn .bp-icon-muted { display: none; }
#bpPlay.is-playing .bp-icon-play  { display: none; }
#bpPlay.is-playing .bp-icon-pause { display: block; }
#bpMute.is-muted   .bp-icon-mute  { display: none; }
#bpMute.is-muted   .bp-icon-muted { display: block; }

.bp-fs {
    background: var(--bg-card);
    color: var(--ink);
    width: 38px;
    height: 38px;
}

.bp-progress {
    flex: 1;
    height: 14px;
    background: var(--bg-card);
    border: 2px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 60px;
}

.bp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-soft));
    width: 0%;
    transition: width 0.15s linear;
}

.bp-progress-knob {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.15s linear, transform 0.18s;
    pointer-events: none;
}

.bp-progress:hover .bp-progress-knob {
    transform: translate(-50%, -50%) scale(1.15);
}

.bp-time {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--ink);
    min-width: 88px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    #belly-tv { padding: 4.5rem 1rem 1.5rem; min-height: 92vh; }
    .belly-stage { max-width: 380px; }
    .belly-screen { width: 18vw; max-width: 130px; }
    #belly-tv.zoomed .belly-stage { transform: scale(1.6); }
    #belly-tv.zoomed .belly-screen { width: 90vw; max-width: 700px; border-width: 6px; }
    .bg-mascot-side {
        right: -28%;
        height: 80vh;
        max-width: 90vw;
        opacity: 0.13;
    }
    .belly-cloud { transform: scale(0.75); }
    .belly-player { gap: 0.5rem; padding: 0.4rem 0.5rem; }
    .bp-btn { width: 38px; height: 38px; }
    .bp-btn svg { width: 16px; height: 16px; }
    .bp-time { min-width: 72px; font-size: 0.75rem; }
    .bp-fs { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
    .belly-screen { width: 22vw; max-width: 110px; }
    #belly-tv.zoomed .belly-stage { transform: scale(1.5); }
    #belly-tv.zoomed .belly-screen { width: 92vw; border-width: 4px; }
    .bg-mascot-side { display: none; }
    .bp-fs { display: none; }
    .bp-time { min-width: 64px; font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
    .belly-mascot,
    .belly-orb { animation: none !important; }
    #belly-tv.zoomed .belly-stage { transform: none; }
    #belly-tv.zoomed .belly-mascot { opacity: 1; }
}

/* =========================================
   TICKER / MARQUEE
   ========================================= */
#ticker {
    background: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll-left 32s linear infinite;
    padding-right: 3rem;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 2px;
}

.marquee-track span:nth-child(even) {
    color: var(--accent-soft);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================
   SHARED SECTION FORMATTING
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-divider {
    border-bottom: 2px solid var(--ink);
}

.sec-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4rem);
    color: var(--ink);
    margin-bottom: 1.6rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.sec-heading.white {
    color: #fff;
    text-shadow: 4px 4px 0 var(--accent-color);
}

.sec-heading.center {
    text-align: center;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
    background: var(--bg-paper);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 196, 255, 0.20) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-text-col p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--ink-light);
    max-width: 520px;
}

.about-text-col .btn {
    margin-top: 0.8rem;
}

.about-img-col {
    position: relative;
}

.polaroid {
    background: #fff;
    padding: 14px 14px 50px;
    border: 2px solid var(--ink);
    box-shadow: 12px 12px 0 var(--accent-color);
    transform: rotate(3deg);
    transition: transform 0.4s ease;
    max-width: 380px;
    margin: 0 auto;
}

.polaroid:hover {
    transform: rotate(-1deg) scale(1.02);
}

.polaroid img {
    border: 2px solid var(--ink);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.polaroid-caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 14px;
    color: var(--ink);
    letter-spacing: 1px;
}

.sticker {
    position: absolute;
    background: var(--sun-yellow);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    letter-spacing: 1px;
}

.sticker-1 {
    top: -10px;
    left: 0;
    transform: rotate(-12deg);
    animation: wiggle 4s ease-in-out infinite;
}

.sticker-2 {
    bottom: 30px;
    right: -10px;
    background: var(--accent-color);
    color: #fff;
    transform: rotate(8deg);
    animation: wiggle 5s ease-in-out infinite reverse;
}

/* =========================================
   HOW TO BUY — sticker pack (2x2)
   ========================================= */
#howtobuy {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 210, 63, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 111, 177, 0.18) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.stickers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    max-width: 880px;
    margin: 2.5rem auto 0;
}

.sticker-step {
    position: relative;
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    padding: 1.8rem 1.6rem 1.6rem;
    color: #fff;
    box-shadow: 9px 9px 0 var(--ink);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}

.sticker-step::after {
    /* paper texture grain on the sticker */
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.6;
    z-index: 0;
}

.sticker-step > * {
    position: relative;
    z-index: 1;
}

.sticker-step:nth-child(1) { background: var(--accent-color); transform: rotate(-2deg); }
.sticker-step:nth-child(2) { background: var(--hot-pink); transform: rotate(1.5deg); }
.sticker-step:nth-child(3) { background: var(--sun-yellow); color: var(--ink); transform: rotate(2deg); }
.sticker-step:nth-child(4) { background: var(--accent-soft); color: var(--ink); transform: rotate(-1.5deg); }

.sticker-step:hover {
    transform: translate(-4px, -6px) rotate(0deg);
    box-shadow: 13px 13px 0 var(--ink);
}

.sticker-num {
    font-family: var(--font-heading);
    font-size: 5.2rem;
    line-height: 0.85;
    display: block;
    margin-bottom: 0.4rem;
    text-shadow: 4px 4px 0 var(--ink);
    letter-spacing: -2px;
}

.sticker-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.05;
}

.sticker-step p {
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.98;
}

.sticker-step b {
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    padding: 0.05rem 0.35rem;
    border-radius: 5px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.sticker-tag {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    background: rgba(10, 26, 44, 0.85);
    color: #fff;
    border: 2px solid var(--ink);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 1px;
    z-index: 2;
}

.sticker-step:nth-child(3) .sticker-tag,
.sticker-step:nth-child(4) .sticker-tag {
    background: var(--ink);
    color: #fff;
}

@media (max-width: 720px) {
    .stickers {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 380px;
    }

    .sticker-num {
        font-size: 4.2rem;
    }
}

/* =========================================
   TOKENOMICS — static bg
   ========================================= */
#tokenomics {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

/* Static cartoon-space backdrop pulled from the gallery */
.bg-static {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.45;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.05);
    animation: bgDrift 28s ease-in-out infinite alternate;
}

@keyframes bgDrift {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.1) translate(-20px, -10px); }
}

.bg-static-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 152, 234, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(89, 196, 255, 0.20) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10, 26, 44, 0.88) 0%, rgba(10, 26, 44, 0.78) 50%, rgba(10, 26, 44, 0.92) 100%);
}

#tokenomics .container {
    position: relative;
    z-index: 3;
}

/* Tokenomics text reads on dark backdrop now */
#tokenomics .sec-heading {
    color: #fff;
    text-shadow: 4px 4px 0 var(--accent-color);
}

#tokenomics .section-sub {
    color: rgba(255, 255, 255, 0.78);
}

#tokenomics .kicker {
    color: var(--accent-soft);
    background: rgba(89, 196, 255, 0.15);
    border-color: var(--accent-soft);
}

.toke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.toke-tile {
    position: relative;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 18px;
    padding: 2rem 1.4rem 1.6rem;
    text-align: left;
    box-shadow: var(--shadow-pop);
    transition: all 0.25s ease;
    overflow: hidden;
}

.toke-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 152, 234, 0.08) 100%);
    pointer-events: none;
}

.toke-tile:hover {
    transform: translate(-3px, -3px) rotate(-0.5deg);
    box-shadow: 9px 9px 0 var(--accent-color);
}

.toke-dot {
    display: block;
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border: 2px solid var(--ink);
    border-radius: 50%;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 0 4px rgba(0, 152, 234, 0.20);
}

.toke-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.toke-num {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.toke-foot {
    font-size: 0.95rem;
    color: var(--ink-light);
    font-style: italic;
}

.toke-tile:nth-child(2) .toke-dot { background: var(--hot-pink); box-shadow: 0 0 0 4px rgba(255, 111, 177, 0.25); }
.toke-tile:nth-child(3) .toke-dot { background: var(--sun-yellow); box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.30); }
.toke-tile:nth-child(5) .toke-dot { background: var(--sun-yellow); box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.30); }
.toke-tile:nth-child(6) .toke-dot { background: var(--hot-pink); box-shadow: 0 0 0 4px rgba(255, 111, 177, 0.25); }

/* =========================================
   MEME GALLERY
   ========================================= */
#memes {
    background: var(--bg-paper);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.4rem 1.6rem;
    padding-top: 1.2rem;
}

/* Polaroid + masking-tape style */
.gallery-item {
    position: relative;
    cursor: pointer;
    border: 2.5px solid var(--ink);
    background: #fff;
    padding: 9px 9px 30px;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
    border-radius: 8px;
    box-shadow: 6px 6px 0 var(--ink);
}

/* Tape strip on top */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 50%;
    width: 64px;
    height: 18px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(255, 210, 63, 0.9);
    border: 2px solid var(--ink);
    border-radius: 3px;
    box-shadow: 2px 2px 0 rgba(10, 26, 44, 0.18);
    z-index: 4;
}

/* Tiny star caption sitting in the polaroid lip */
.gallery-item::after {
    content: '★';
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    line-height: 1;
}

/* Cycle rotations + tape colours + shadow colours */
.gallery-item:nth-child(2n)   { transform: rotate(-1.6deg); }
.gallery-item:nth-child(3n)   { transform: rotate(2.2deg); }
.gallery-item:nth-child(4n)   { transform: rotate(-1deg); }
.gallery-item:nth-child(5n)   { transform: rotate(1.4deg); }

.gallery-item:nth-child(2n)::before {
    background: rgba(255, 111, 177, 0.88);
    transform: translateX(-50%) rotate(4deg);
}
.gallery-item:nth-child(3n)::before {
    background: rgba(89, 196, 255, 0.88);
    transform: translateX(-50%) rotate(-2deg);
}
.gallery-item:nth-child(4n)::before {
    background: rgba(0, 152, 234, 0.78);
    transform: translateX(-50%) rotate(3deg);
}

.gallery-item:nth-child(4n+1) { box-shadow: 6px 6px 0 var(--accent-color); }
.gallery-item:nth-child(4n+2) { box-shadow: 6px 6px 0 var(--hot-pink); }
.gallery-item:nth-child(4n+3) { box-shadow: 6px 6px 0 var(--sun-yellow); }
.gallery-item:nth-child(4n)   { box-shadow: 6px 6px 0 var(--ink); }

.gallery-item:nth-child(2n)::after { color: var(--hot-pink); }
.gallery-item:nth-child(3n)::after { color: var(--accent-color); }
.gallery-item:nth-child(4n)::after { color: var(--ink); }

.gallery-item:hover {
    transform: rotate(0deg) translate(-4px, -7px) scale(1.04);
    box-shadow: 14px 14px 0 var(--ink);
    z-index: 5;
}

.gallery-item:hover::before {
    transform: translateX(-50%) rotate(0deg);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1.5px solid var(--ink);
    border-radius: 4px;
    display: block;
}

.gallery-see-more {
    display: none;
    justify-content: center;
    margin-top: 2.5rem;
}

/* =========================================
   CTA & FOOTER BLEND
   ========================================= */
#cta {
    position: relative;
    background: transparent;
    overflow: hidden;
    padding-top: 6rem;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.85;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-paper) 0%, rgba(0, 152, 234, 0.55) 50%, var(--ink) 100%);
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 3rem;
}

.cta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

#footer {
    position: relative;
    background: var(--ink);
    color: var(--bg-paper);
    padding: 2rem 2rem;
    z-index: 2;
}

.cta-sub.white {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.white-border {
    background: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: 4px 4px 0 #fff;
}

.white-border:hover {
    background: #fff;
    color: var(--accent-color);
    box-shadow: 6px 6px 0 var(--accent-color);
}

/* Sparkles */
.fireflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fireflies::before,
.fireflies::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #fff, 0 0 20px 5px var(--accent-soft);
    animation: flyBefore 15s ease-in-out infinite alternate;
}

.fireflies::after {
    width: 4px;
    height: 4px;
    background: var(--sun-yellow);
    box-shadow: 0 0 10px 2px var(--sun-yellow);
    animation: flyAfter 18s ease-in-out infinite alternate;
}

@keyframes flyBefore {
    0% { transform: translate(10vw, 80px) scale(0.8); opacity: 0; }
    20% { opacity: 0.9; }
    50% { transform: translate(50vw, -40px) scale(1.2); opacity: 0.5; }
    80% { opacity: 0.95; }
    100% { transform: translate(90vw, 60px) scale(0.6); opacity: 0; }
}

@keyframes flyAfter {
    0% { transform: translate(80vw, -20px) scale(0.5); opacity: 0; }
    30% { opacity: 0.8; }
    60% { transform: translate(30vw, 50px) scale(1.4); opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translate(10vw, -30px) scale(1); opacity: 0; }
}

.footer-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-mascot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--bg-paper);
    object-fit: cover;
    background: #fff;
}

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

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--bg-paper);
    letter-spacing: 1px;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: var(--accent-soft);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--bg-paper);
    transition: transform 0.2s, color 0.2s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--accent-soft);
}

.footer-disc {
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 1rem;
    border-top: 1px dotted rgba(244, 241, 234, 0.3);
    padding-top: 1rem;
    line-height: 1.5;
}

.footer-copy {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 44, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 4px solid #fff;
    box-shadow: 0 0 30px rgba(0, 152, 234, 0.6);
    border-radius: 6px;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.4rem;
    font-family: var(--font-heading);
    cursor: pointer;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 968px) {
    .nav-socials-desktop {
        display: none !important;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        gap: 2rem;
    }

    .hero-right {
        order: -1;
    }

    .hero-img-wrap {
        max-width: 360px;
    }

    .hero-actions,
    .hero-ca-wrap,
    .hero-socials {
        justify-content: center;
    }

    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-col {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
    }

    .toke-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 15px;
    }

    /* Hero polish — keep blue card readable on small phones */
    #hero {
        padding-top: 80px;
        min-height: auto;
    }

    #hero::before {
        width: 70px;
        height: 70px;
        top: 90px;
        left: 4%;
    }

    .hero-img-wrap {
        max-width: 280px;
    }

    .hero-img {
        box-shadow: 6px 6px 0 var(--ink), 12px 12px 0 var(--accent-color);
    }

    .hero-tag {
        right: 4px;
        font-size: 0.85rem;
        padding: 0.25rem 0.7rem;
    }

    .hero-title {
        text-shadow: 3px 3px 0 var(--accent-color);
    }

    .title-accent {
        text-shadow: 3px 3px 0 var(--ink);
    }

    /* Sticker pack — softer rotations + tighter shadow on phones */
    .sticker-step {
        box-shadow: 6px 6px 0 var(--ink);
    }
    .sticker-step:nth-child(1) { transform: rotate(-1deg); }
    .sticker-step:nth-child(2) { transform: rotate(0.8deg); }
    .sticker-step:nth-child(3) { transform: rotate(1deg); }
    .sticker-step:nth-child(4) { transform: rotate(-0.8deg); }

    /* About stickers stay near the polaroid since column is now 380px max */
    .sticker-1 { left: 6%; }
    .sticker-2 { right: 6%; }

    /* Tokenomics — kill backdrop blur on low-end devices */
    .bg-static {
        filter: none;
    }

    /* Gallery tightens up — keep tape + colour shadows visible */
    .gallery {
        gap: 1.8rem 1rem;
    }
    .gallery-item {
        padding: 7px 7px 24px;
    }
    .gallery-item::before {
        width: 50px;
        height: 14px;
        top: -8px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-paper);
        background-image: url('assets/logo.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--ink);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(230, 244, 254, 0.88);
        z-index: -1;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.6rem;
    }

    .nav-socials-mobile {
        display: flex;
        gap: 2rem;
        margin-top: 1rem;
    }

    .nav-socials-mobile a {
        border-bottom: none !important;
    }

    .nav-socials-mobile a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 2rem;
        background: var(--accent-color);
        color: #fff;
        border: 2px solid var(--ink);
        padding: 0.5rem 2rem;
        border-radius: 999px;
        box-shadow: 4px 4px 0 var(--ink);
    }

    .hamburger {
        display: flex;
    }

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

    .cta-bg-image {
        background-attachment: scroll;
    }

    .gallery.collapsed {
        max-height: 520px;
        overflow: hidden;
        position: relative;
    }

    .gallery.collapsed::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom, transparent, var(--bg-paper));
        pointer-events: none;
    }

    .gallery-see-more {
        display: flex;
    }

    .marquee-track span {
        font-size: 1.1rem;
    }
}
