:root {
    --slime: #39FF14;
    --slime-deep: #16c60c;
    --slime-dark: #0a8a05;
    --candy-pink: #FF3BAC;
    --candy-pink-light: #FFA3D6;
    --ink: #0A1810;
    --ink-2: #0f2516;
    --ink-3: #132e1b;
    --cream: #FFF5E6;
    --yolk: #FFD23F;
    --tangerine: #FF8A1E;
    --blueberry: #3FA9F5;
    --grape: #9D4EDD;
    --paper: #f6f1e4;
    --font-splat: 'Slackey', system-ui, sans-serif;
    --font-block: 'Slackey', system-ui, sans-serif;
    --font-outline: 'Slackey', system-ui, sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --r: 0deg;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =================== GLOBAL NAV =================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(10,24,16,0.85), rgba(10,24,16,0.4));
    border-bottom: 1px solid rgba(57,255,20,0.15);
    overflow-x: hidden;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 88px; }
.nav__links { display: flex; gap: 28px; align-items: center; white-space: nowrap; }
.nav__links a {
    font-family: var(--font-body); font-weight: 600; font-size: 14px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,245,230,0.75); transition: color 0.2s;
}
.nav__links a:hover { color: var(--slime); }
.nav__cta { padding: 10px 18px; background: var(--slime); color: var(--ink); font-family: var(--font-block), sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; box-shadow: 0 0 0 2px var(--ink), 0 0 24px rgba(57,255,20,0.6); transition: transform 0.2s; }
.nav__cta:hover { transform: translateY(-2px) scale(1.03); color: var(--ink); }
@media (max-width: 800px) {
    .nav__links { display: none; }
    .nav { padding: 14px 16px; }
    .nav__logo img { height: 62px; }
    .nav__cta { padding: 8px 14px; font-size: 11px; }
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 24px 40px;
    overflow: hidden;
    background:
            linear-gradient(rgb(10, 24, 16), rgba(10, 24, 16, 0.372)),
            url('../../assets/sugarmadness/ui/cover.jpg'),
            radial-gradient(ellipse 80% 60% at 50% 30%, rgba(57,255,20,0.18), transparent 60%),
            radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255,59,172,0.22), transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 70%, rgba(157,78,221,0.18), transparent 60%),
            var(--ink);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

/* Dripping slime top edge */
.slime-drip {
    position: absolute;
    left: 0; right: 0;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(57,255,20,0.45));
}
.slime-drip--top { top: -2px; }
.slime-drip--bottom { bottom: -2px; transform: scaleY(-1); }

/* Stars / candy confetti scatter */
.confetti {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
}
.confetti span {
    position: absolute;
    display: block;
    font-family: var(--font-splat);
    color: var(--slime);
    opacity: 0.6;
    animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-22px) rotate(calc(var(--r, 0deg) + 8deg)); }
}

.hero__inner {
    position: relative; z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px; width: 100%;
}
@media (max-width: 1000px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero__left { position: relative; padding-bottom: 40px; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__logo {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 12px 40px rgba(57,255,20,0.5)) drop-shadow(0 4px 12px rgba(255,59,172,0.4));
    animation: logo-bob 4s ease-in-out infinite;
}
@media (max-width: 1000px) { .hero__logo { margin: 0 auto; max-width: 200px; } }

.hero__tagline {
    font-family: var(--font-block);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.15;
    margin: 28px 0 16px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero__tagline .hl { color: var(--candy-pink); text-shadow: 0 0 20px rgba(255,59,172,0.6); }
.hero__tagline .hl2 { color: var(--slime); text-shadow: 0 0 20px rgba(57,255,20,0.6); }

.hero__desc {
    max-width: 560px;
    color: rgba(255,245,230,0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
}
@media (max-width: 1000px) { .hero__desc { margin-left: auto; margin-right: auto; } }

.hero__cta-row {
    display: flex; flex-wrap: wrap; gap: 14px;
    align-items: center;
}
@media (max-width: 1000px) { .hero__cta-row { justify-content: center; } }
.btn-wishlist {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px 18px 22px;
    background: linear-gradient(135deg, var(--slime) 0%, var(--slime-deep) 100%);
    color: var(--ink);
    font-family: var(--font-block);
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 999px;
    border: 3px solid var(--ink);
    box-shadow:
            0 0 0 3px var(--slime),
            0 10px 0 -3px var(--slime-dark),
            0 16px 40px rgba(57, 255, 20, 0.45);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Shine sweep effect on hover */
.btn-wishlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.btn-wishlist:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
            0 0 0 3px var(--slime),
            0 15px 0 -3px var(--slime-dark),
            0 24px 60px rgba(57, 255, 20, 0.65);
}

.btn-wishlist:hover::before {
    left: 100%;
}

.btn-wishlist:active {
    transform: translateY(1px) scale(0.98);
    box-shadow:
            0 0 0 3px var(--slime),
            0 5px 0 -3px var(--slime-dark),
            0 8px 20px rgba(57, 255, 20, 0.5);
}

.btn-wishlist:focus-visible {
    outline: 2px solid var(--candy-pink);
    outline-offset: 4px;
}

.btn-wishlist .meta-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-2);
    color: var(--slime);
    border-radius: 999px;
    font-family: var(--font-block);
    font-size: 14px;
    border: 2px solid rgba(57, 255, 20, 0.3);
}

.btn-wishlist .meta-icon img {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.final .btn-wishlist {
    font-size: 20px;
    padding: 22px 34px 22px 26px;
}

.final .btn-wishlist .meta-icon {
    width: 38px;
    height: 38px;
}

.final .btn-wishlist .meta-icon img {
    width: 24px;
    height: 24px;
}

.btn-wishlist .sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: -2px;
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 24px;
    margin-top: 16px;
    border: 2px solid rgba(255,245,230,0.25);
    border-radius: 999px;
    font-family: var(--font-block);
    font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    transition: all 0.2s;
}
.btn-ghost:hover {
    border-color: var(--candy-pink);
    background: rgba(255,59,172,0.1);
    color: var(--candy-pink);
}
.btn-ghost svg { width: 18px; height: 18px; }

/* Hero right - floating screenshot stack */
.hero__right {
    position: relative;
    aspect-ratio: 1/1.05;
}

.hero__screen {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--ink);
    box-shadow:
            0 0 0 3px var(--slime),
            0 30px 60px rgba(0,0,0,0.5),
            0 0 80px rgba(57,255,20,0.25);
    background: var(--ink-2);
}
.hero__screen img { width: 100%; height: 100%; object-fit: cover; }
.hero__screen--1 {
    top: 0; left: 0; width: 68%; aspect-ratio: 16/10;
    animation: drift1 9s ease-in-out infinite;
    z-index: 3;
}
.hero__screen--2 {
    bottom: 0; right: 0; width: 62%; aspect-ratio: 16/10;
    border-color: var(--ink);
    box-shadow:
            0 0 0 3px var(--candy-pink),
            0 30px 60px rgba(0,0,0,0.5),
            0 0 80px rgba(255,59,172,0.3);
    animation: drift2 9s ease-in-out infinite;
    z-index: 2;
}
.hero__screen--3 {
    top: 32%; left: 18%; width: 50%; aspect-ratio: 1/1;
    border-radius: 28px;
    border-color: var(--ink);
    box-shadow:
            0 0 0 3px var(--yolk),
            0 30px 60px rgba(0,0,0,0.5),
            0 0 80px rgba(255,210,63,0.35);
    transform: rotate(-4deg);
    animation: drift3 9s ease-in-out infinite;
    z-index: 4;
}
@keyframes drift1 { 0%, 100% { transform: translate(0,0) rotate(-2deg); } 50% { transform: translate(-6px, -10px) rotate(-3deg); } }
@keyframes drift2 { 0%, 100% { transform: translate(0,0) rotate(3deg); } 50% { transform: translate(8px, 12px) rotate(4deg); } }
@keyframes drift3 { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-14px); } }

/* Floating stickers around the stack */
.sticker {
    position: absolute;
    padding: 10px 14px;
    background: var(--yolk);
    color: var(--ink);
    font-family: var(--font-block);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 3px solid var(--ink);
    box-shadow: 0 8px 0 -2px rgba(0,0,0,0.3);
    z-index: 5;
    transform: rotate(var(--rot, -6deg));
}
.sticker--pink { background: var(--candy-pink); color: var(--cream); }
.sticker--slime { background: var(--slime); color: var(--ink); }

/* Ticker below hero */
.ticker {
    position: relative;
    background: var(--slime);
    color: var(--ink);
    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    overflow: hidden;
    font-family: var(--font-block);
    font-size: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
}
.ticker__track {
    display: flex;
    gap: 40px;
    padding: 18px 0;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 18px; }
.ticker__track svg { width: 22px; height: 22px; }
@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* =================== SECTION SHELL =================== */
.section {
    position: relative;
    padding: 120px 24px;
}
.section__inner { max-width: 1400px; margin: 0 auto; }
.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--slime);
    margin-bottom: 16px;
}
.kicker::before {
    content: ''; width: 32px; height: 2px; background: var(--slime);
}
h2.section__title {
    font-family: var(--font-splat);
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 16px;
}
h2.section__title .pink { color: var(--candy-pink); }
h2.section__title .slime { color: var(--slime); }
.section__lead {
    font-size: 1.15rem;
    max-width: 640px;
    color: rgba(255,245,230,0.75);
}

/* =================== STORY STRIP =================== */
.story {
    background:
            radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,59,172,0.18), transparent 60%),
            radial-gradient(ellipse 50% 40% at 20% 70%, rgba(57,255,20,0.12), transparent 60%),
            var(--ink-2);
    border-top: 6px solid var(--ink);
}
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } }
.story__text p {
    font-size: 1.2rem;
    color: rgba(255,245,230,0.85);
    margin-bottom: 18px;
}
.story__text .big {
    font-family: var(--font-splat);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.story__img {
    position: relative;
    aspect-ratio: 16/11;
    border-radius: 24px;
    overflow: hidden;
    border: 5px solid var(--ink);
    box-shadow: 0 0 0 4px var(--candy-pink), 0 30px 60px rgba(0,0,0,0.45);
    transform: rotate(1deg);
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__img .tape {
    position: absolute; top: -24px; left: 40px;
    width: 140px; height: 32px;
    background: rgba(255,210,63,0.85);
    transform: rotate(-4deg);
    filter: blur(0.3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* =================== FEATURES =================== */
.features { background: var(--ink); }
.features__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.feature {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ink-2);
    border: 3px solid var(--ink-3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 340px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    isolation: isolate;
}
.feature::before {
    content: ''; position: absolute; inset: 0; z-index: -2;
    background-position: center; background-size: cover;
    transition: transform 0.6s ease;
}
.feature::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10,24,16,0) 0%, rgba(10,24,16,0.4) 35%, rgba(10,24,16,0.95) 100%);
}
.feature:hover { transform: translateY(-6px); border-color: var(--slime); }
.feature:hover::before { transform: scale(1.06); }
.feature__num {
    position: absolute; top: 20px; right: 20px;
    font-family: var(--font-mono); font-weight: 700;
    font-size: 11px; letter-spacing: 0.2em;
    padding: 6px 10px;
    background: var(--slime); color: var(--ink);
    border-radius: 6px;
}
.feature__title {
    font-family: var(--font-splat);
    font-size: 1.8rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 10px;
}
.feature__title.pink { color: var(--candy-pink); }
.feature__title.slime { color: var(--slime); }
.feature__title.yolk { color: var(--yolk); }
.feature__desc {
    font-size: 0.95rem;
    color: rgba(255,245,230,0.8);
    line-height: 1.5;
}
.feature--a { grid-column: span 7; min-height: 420px; }
.feature--a::before { background-image: url('../../assets/sugarmadness/screenshots/sc1.jpg'); }
.feature--b { grid-column: span 5; min-height: 420px; }
.feature--b::before { background-image: url('../../assets/sugarmadness/screenshots/sc2.jpg'); }
.feature--c { grid-column: span 4; min-height: 420px;}
.feature--c::before { background-image: url('../../assets/sugarmadness/screenshots/sc3.png'); }
.feature--d { grid-column: span 8; min-height: 420px;}
.feature--d::before { background-image: url('../../assets/sugarmadness/screenshots/sc4.png'); }
@media (max-width: 900px) {
    .features__grid { grid-template-columns: 1fr 1fr; }
    .feature { grid-column: span 1 !important; min-height: 300px !important; }
}
@media (max-width: 600px) {
    .features__grid { grid-template-columns: 1fr; }
}

/* =================== WEAPONS =================== */
.weapons {
    background:
            radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,59,172,0.18), transparent 60%),
            var(--ink-2);
    border-top: 6px solid var(--ink);
    border-bottom: 6px solid var(--ink);
}
.weapons__header {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end;
    gap: 20px; margin-bottom: 60px;
}
.weapons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weapon__message_final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: row;
    margin: 0 auto;
    padding: 40px 14px;
    opacity: .5;
    transition: opacity .3s ease;
}

.weapon__message_final:hover {
    opacity: .7;
}

.weapon__info_icon {
    width: 20px;
    height: 20px;
    background-color: var(--slime-dark);
    color: var(--cream);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.weapon__label {
    font-size: 1.1rem;
    text-align: center;
    display: block;
    padding-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream);
    font-weight: 400;
}

@media (max-width: 900px) { .weapons__grid { grid-template-columns: 1fr; } .weapon__label { font-size: 0.8rem; } }

.weapon {
    position: relative;
    background: var(--ink);
    border: 3px solid var(--ink-3);
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    transition: all 0.3s;
}
.weapon:hover { border-color: var(--candy-pink); transform: translateY(-4px); }
.weapon__tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--candy-pink);
    color: var(--cream);
    font-family: var(--font-mono); font-weight: 700;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}
.weapon--slime .weapon__tag { background: var(--slime); color: var(--ink); }
.weapon--yolk .weapon__tag { background: var(--yolk); color: var(--ink); }
.weapon__name {
    font-family: var(--font-splat);
    font-size: 2.2rem;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 12px;
}
.weapon__desc {
    color: rgba(255,245,230,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.weapon__preview {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255, 59, 172, 0.18), transparent 60%), var(--ink-2);
    border: 2px solid var(--ink-3);
}
.weapon__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255,245,230,0.2);
}
.weapon__stat {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,245,230,0.55);
}
.weapon__stat b { display: block; color: var(--slime); font-size: 15px; margin-top: 2px; font-family: var(--font-block); }
.weapon--pink .weapon__stat b { color: var(--candy-pink); }
.weapon--yolk .weapon__stat b { color: var(--yolk); }

/* =================== GALLERY =================== */
.gallery { background: var(--ink); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 140px;
    gap: 16px;
    margin-top: 60px;
}
.shot {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid var(--ink-3);
    transition: all 0.3s;
}
.shot:hover { border-color: var(--slime); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(57,255,20,0.2); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.shot:hover img { transform: scale(1.06); }
.shot--a { grid-column: span 3; grid-row: span 3; }
.shot--b { grid-column: span 3; grid-row: span 3; }
.shot--c { grid-column: span 2; grid-row: span 2; }
.shot--d { grid-column: span 2; grid-row: span 2; }
.shot--e { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
    .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .shot { grid-column: span 2 !important; }
    .shot--a { grid-column: span 3; grid-row: span 2; }
    .shot--b { grid-column: span 3; grid-row: span 2; }
    .shot--c { grid-column: span 2; grid-row: span 2; }
    .shot--d { grid-column: span 2; grid-row: span 2; }
    .shot--e { grid-column: span 2; grid-row: span 2; }
}

/* =================== TRAILER =================== */
.trailer {
    background:
            radial-gradient(ellipse 60% 50% at 50% 50%, rgba(57,255,20,0.15), transparent 60%),
            var(--ink-2);
    border-top: 6px solid var(--ink);
    border-bottom: 6px solid var(--ink);
}
.trailer__frame {
    position: relative;
    max-width: 1100px; margin: 60px auto 0;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    border: 5px solid var(--ink);
    box-shadow: 0 0 0 4px var(--slime), 0 30px 80px rgba(0,0,0,0.5), 0 0 120px rgba(57,255,20,0.2);
}
.trailer__frame iframe { width: 100%; height: 100%; border: none; display: block; }
.trailer__sticker {
    position: absolute; top: -24px; left: -24px;
    width: 120px; height: 120px;
    background: var(--yolk); color: var(--ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-splat); font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    border: 4px solid var(--ink);
    box-shadow: 0 0 0 3px var(--yolk), 0 12px 30px rgba(0,0,0,0.4);
    transform: rotate(-12deg);
    z-index: 5;
    padding: 8px;
}

@media (max-width: 700px) {
    .trailer__sticker {
        width: 80px;
        height: 80px;
        top: -16px;
        left: -16px;
        font-size: 11px;
        padding: 6px;
    }
}

/* =================== FAQ =================== */
.faq { background: var(--ink); }
.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; } }
.faq__item {
    background: var(--ink-2);
    border: 2px solid var(--ink-3);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.2s;
}
.faq__item:hover { border-color: var(--slime); }
.faq__q {
    font-family: var(--font-block);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slime);
    margin-bottom: 10px;
    display: flex; gap: 12px; align-items: baseline;
}
.faq__q b {
    font-family: var(--font-mono); font-weight: 700;
    color: var(--candy-pink); font-size: 12px;
}
.faq__a {
    color: rgba(255,245,230,0.8);
    font-size: 1rem;
}

/* =================== FINAL CTA =================== */
.final {
    position: relative;
    padding: 160px 24px;
    text-align: center;
    background:
            linear-gradient(rgb(10, 24, 16), rgba(10, 24, 16, 0.831)),
            url('../../assets/sugarmadness/screenshots/Screenshot_4.png'),
            radial-gradient(ellipse 80% 60% at 50% 50%, rgba(57,255,20,0.28), transparent 60%),
            radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,59,172,0.3), transparent 60%),
            var(--ink);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-top: 6px solid var(--ink);
}
.final__inner { position: relative; z-index: 5; max-width: 900px; margin: 0 auto; }
.final__title {
    font-family: var(--font-splat);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(57,255,20,0.3);
}
.final__title .drip {
    color: var(--slime);
    text-shadow: 0 0 40px rgba(57,255,20,0.6), 0 6px 0 var(--ink);
}
.final__title .pink {
    color: var(--candy-pink);
    text-shadow: 0 0 40px rgba(255,59,172,0.6), 0 6px 0 var(--ink);
}
.final__desc {
    font-size: 1.2rem;
    color: rgba(255,245,230,0.85);
    max-width: 560px;
    margin: 0 auto 40px;
}
.final .btn-wishlist { font-size: 20px; padding: 22px 34px 22px 26px; }
.final .btn-wishlist .meta-icon { width: 38px; height: 38px; }

/* =================== FOOTER =================== */
footer {
    padding: 50px 24px 40px;
    background: var(--ink-2);
    border-top: 2px solid var(--ink-3);
}
.footer__inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
@media (max-width: 700px) {
    .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .footer__brand { flex-direction: column; gap: 12px; text-align: center; }
    .footer__brand img { height: 56px; }
    .footer__brand .tag { font-size: 9px; text-align: center; }
    .footer__social { justify-content: center; gap: 8px; }
    .footer__social a { width: 40px; height: 40px; }
    .footer__legal { flex-direction: column; align-items: center; gap: 8px; text-align: center; font-size: 9px; }
    .final .btn-wishlist .meta-icon { width: 49px; height: 38px; }
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 68px; }
.footer__brand .tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,245,230,0.5);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,245,230,0.15);
    border-radius: 12px;
    transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--slime); background: rgba(57,255,20,0.08); }
.footer__social svg { width: 20px; height: 20px; fill: rgba(255,245,230,0.7); }
.footer__social a:hover svg { fill: var(--slime); }
.footer__legal {
    max-width: 1400px; margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px dashed rgba(255,245,230,0.12);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,245,230,0.4);
}
@media (max-width: 700px) {
    .footer__legal { justify-content: center; text-align: center; font-size: 10px; }
}

/* =================== UTILITY =================== */
.scroll-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.scroll-fade-in.in { opacity: 1; transform: translateY(0); }

/* Candy ball bounces */
.candy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.55;
}

/* =================== FLOATING CANDY MORPHS =================== */
.morph {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.4));
    will-change: transform;
    animation: morph-float 7s ease-in-out infinite;
    opacity: 0.85;
}
.morph img { width: 100%; height: auto; display: block; }
.morph--spin { animation: morph-spin 9s ease-in-out infinite; }
.morph--wobble { animation: morph-wobble 6s ease-in-out infinite; }
.morph--bob { animation: morph-bob 8s ease-in-out infinite; }

@keyframes morph-float {
    0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
    50% { transform: translate(8px, -18px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}
@keyframes morph-spin {
    0%, 100% { transform: translate(0,0) rotate(var(--rot, -8deg)) scale(1); }
    50% { transform: translate(-8px, -14px) rotate(calc(var(--rot, -8deg) + 8deg)) scale(1.03); }
}
@keyframes morph-wobble {
    0%, 100% { transform: translate(0,0) rotate(var(--rot, 6deg)); }
    50% { transform: translate(6px, -14px) rotate(calc(var(--rot, 6deg) + 4deg)); }
}
@keyframes morph-bob {
    0%, 100% { transform: translate(0,0) rotate(var(--rot, 0deg)); }
    50% { transform: translate(0, -16px) rotate(calc(var(--rot, 0deg) - 3deg)); }
}

/* Only 2 of each character, tucked into section corners so they don't cover content.
   lollipop: hero + trailer
   wrapper:  story + faq
   icecream: weapons + final
   cotton:   features + final
*/
.hero .morph--1 { top: 14%; left: -40px; width: 120px; --rot: -10deg; }
.hero .morph--2 { top: 20%; right: -30px; width: 140px; --rot: 15deg; animation-delay: -3s; }
.hero .morph--4 { bottom: 15%; left: 2%; width: 110px; --rot: -5deg; animation-delay: -5s; }
.story .morph--3 { bottom: -30px; right: -30px; width: 130px; --rot: 12deg; animation-delay: -1s; }
.features .morph--5 { top: -30px; left: -30px; width: 120px; --rot: -8deg; animation-delay: -2s; }
.weapons .morph--7 { bottom: -30px; right: -30px; width: 130px; --rot: 8deg; animation-delay: -1s; }
.trailer .morph--9 { top: -30px; right: -30px; width: 120px; --rot: -10deg; animation-delay: -2s; }
.faq .morph--10 { bottom: -30px; left: -30px; width: 120px; --rot: 10deg; animation-delay: -1s; }
.final .morph--11 { top: 40px; left: 4%; width: 130px; --rot: -8deg; animation-delay: -1s; }
.final .morph--12 { bottom: 40px; right: 4%; width: 130px; --rot: 8deg; animation-delay: -2s; }

@media (max-width: 900px) {
    .morph { width: 80px !important; opacity: 0.7; }
    .hero .morph--1 { top: 6%; left: 0; }
    .hero .morph--2 { top: 15%; right: 0; }
    .hero .morph--4 { bottom: 10%; left: 0; }
    .story .morph--3 { bottom: 0; right: 0; }
    .features .morph--5 { top: 0; left: 0; }
    .weapons .morph--7 { bottom: 0; right: 0; }
    .trailer .morph--9 { top: 0; right: 0; }
    .faq .morph--10 { bottom: 0; left: 0; }
    .final .morph--11, .final .morph--12 { display: none; }
}

/* =================== LIGHTBOX =================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 16, 0.95);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 0 2px var(--slime), 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--ink);
    color: var(--slime);
    border: 2px solid var(--slime);
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover {
    background: var(--slime);
    color: var(--ink);
    transform: scale(1.1);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(10,24,16,0.7);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: var(--slime);
    color: var(--ink);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono), sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slime);
    background: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid var(--slime);
}


/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 60px 16px 80px;
        align-items: flex-start;
        justify-content: center;
    }
    .lightbox-image {
        max-width: 100%;
        max-height: calc(100vh - 120px);
        border-radius: 8px;
    }
    .lightbox-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 22px;
        z-index: 100001;
        background: rgba(10, 24, 16, 0.9);
        border-radius: 8px;
    }
    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: auto;
        bottom: 16px;
        transform: none;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 20px;
        opacity: 0.95;
        background: rgba(10, 24, 16, 0.9);
        border: none;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: none;
    }
    .lightbox-counter {
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px;
        padding: 8px 16px;
        background: rgba(10, 24, 16, 0.9);
    }
    .lightbox-content {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}