:root {
    --pink: #ff2bd6;
    --cyan: #00f0ff;
    --yellow: #ffe600;
    --lime: #b6ff00;
    --orange: #ff7a00;
    --purple: #8b5cf6;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.85);
    --card: rgba(0, 0, 0, 0.55);
    --border: rgba(255, 255, 255, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background:
        repeating-linear-gradient(45deg, rgba(255, 43, 214, 0.12) 0 12px, transparent 12px 24px),
        repeating-linear-gradient(-45deg, rgba(0, 240, 255, 0.12) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, #1a0033, #001a33 50%, #330033);
}

body::-webkit-scrollbar { display: none; }

body.locked { overflow: hidden; height: 100vh; }

/* ---------- WELCOME ---------- */
.welcome {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0.92));
    backdrop-filter: blur(6px);
    transition: opacity 0.4s ease;
}
.welcome.hidden { opacity: 0; pointer-events: none; }
.welcome-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: 24px;
    border: 4px dashed var(--yellow);
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
    background-size: 300% 300%;
    animation: gradient-shift 6s linear infinite;
    box-shadow: 0 0 80px rgba(255, 43, 214, 0.55);
    max-width: min(90vw, 460px);
}
.welcome-title {
    font-family: 'Bungee', sans-serif;
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 3px #000;
    color: #fff;
    text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--yellow);
}
.welcome-sub {
    margin-top: 12px;
    font-family: 'Lilita One', cursive;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}
.welcome-warn {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--yellow);
    letter-spacing: 0.05em;
}
.enter-btn {
    margin-top: 22px;
    font-family: 'Bungee', sans-serif;
    font-size: 1.25rem;
    padding: 16px 32px;
    border: 4px solid #000;
    border-radius: 999px;
    background: var(--yellow);
    color: #000;
    cursor: pointer;
    box-shadow: 0 8px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
    animation: pulse 1.1s ease-in-out infinite;
}
.enter-btn:hover { transform: translateY(2px) rotate(-2deg); }
.enter-btn:active { transform: translateY(8px); box-shadow: 0 0 0 #000; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---------- BG STROBE / RAIN ---------- */
.strobe {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    mix-blend-mode: screen;
    animation: strobe 3.5s steps(2, end) infinite;
}
@keyframes strobe {
    0%, 100% { background: rgba(255, 255, 255, 0); }
    98%, 100% { background: rgba(255, 255, 255, 0); }
    50% { background: rgba(255, 255, 255, 0.04); }
}

.emoji-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.emoji-rain span {
    position: absolute;
    top: -10vh;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    animation: fall linear infinite;
    user-select: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
@keyframes fall {
    to { transform: translateY(115vh) rotate(720deg); }
}

/* ---------- SURF BG (toned, behind chaos) ---------- */
.surf-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    background: linear-gradient(180deg, #1a0033 0%, #2e0a4d 28%, #1d3acb 55%, #00b4d8 78%, #022b4a 100%);
}
.sun {
    position: absolute; width: min(140px, 30vw); height: min(140px, 30vw);
    top: 6%; right: 8%; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff7ed, var(--yellow) 45%, var(--orange) 78%, transparent 80%);
    box-shadow: 0 0 80px rgba(255, 230, 0, 0.7);
    animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.wave {
    position: absolute; left: -15%; width: 130%; height: 130px;
    border-radius: 45%; background: rgba(0, 240, 255, 0.25);
    animation: swell 5s ease-in-out infinite;
}
.wave-back { bottom: 18%; height: 110px; opacity: 0.45; animation-duration: 7s; }
.wave-mid { bottom: 8%; height: 120px; background: rgba(139, 92, 246, 0.4); animation-duration: 5.5s; animation-delay: -1s; }
.wave-front { bottom: 0; height: 140px; background: linear-gradient(180deg, rgba(0,240,255,0.5), rgba(255,43,214,0.5)); border-radius: 50% 50% 0 0; animation-duration: 4.5s; animation-delay: -2s; }
@keyframes swell {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(3%) translateY(-12px); }
}

/* ---------- MARQUEE ---------- */
.marquee {
    position: relative;
    z-index: 5;
    font-family: 'Bungee', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    color: #000;
    overflow: hidden;
}
.marquee.top { background: var(--yellow); transform: rotate(-1deg); margin: 0 -2vw; }
.marquee.mid { background: var(--lime); transform: rotate(1.5deg); margin: 28px -2vw; }
.marquee.bottom { background: var(--cyan); transform: rotate(-1.5deg); margin: 32px -2vw 18px; }

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
    will-change: transform;
}
.marquee.mid .marquee-track { animation-duration: 36s; animation-direction: reverse; }
.marquee.bottom .marquee-track { animation-duration: 24s; }
.marquee-content { padding-right: 2rem; }

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

/* ---------- CONTENT ---------- */
.content {
    position: relative;
    z-index: 4;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 80px;
}

.hero { text-align: center; }

.mascot-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 4px;
    filter: drop-shadow(0 16px 40px rgba(255, 43, 214, 0.55));
}
.mascot {
    display: block;
    width: min(340px, 80vw);
    height: min(340px, 80vw);
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--yellow);
    box-shadow:
        0 0 0 4px #000,
        0 0 50px rgba(255, 230, 0, 0.55),
        0 0 80px rgba(255, 43, 214, 0.45);
    background: #000;
}
.wobble { animation: wobble 1.2s ease-in-out infinite; }
@keyframes wobble {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-6px); }
}

.float-emoji {
    position: absolute;
    font-size: 2.2rem;
    animation: orbit 5s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.e1 { top: -10%; left: -8%; animation-delay: 0s; }
.e2 { top: 10%; right: -10%; animation-delay: -1.2s; }
.e3 { bottom: -8%; left: 0%; animation-delay: -2.4s; }
.e4 { bottom: 5%; right: 0%; animation-delay: -3.5s; }
.e5 { top: -12%; right: 30%; animation-delay: -4.2s; }
@keyframes orbit {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-18px) rotate(20deg); }
}

.catchphrase {
    font-family: 'Lilita One', cursive;
    font-weight: 400;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: var(--yellow);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 10px;
    -webkit-text-stroke: 1px #000;
}
.glitch { position: relative; }
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute; left: 0; top: 0; width: 100%;
    overflow: hidden; mix-blend-mode: screen;
}
.glitch::before { color: var(--cyan); transform: translate(-2px, 0); animation: glitch1 2.4s infinite linear alternate; }
.glitch::after { color: var(--pink); transform: translate(2px, 0); animation: glitch2 2.7s infinite linear alternate; }
@keyframes glitch1 {
    0% { clip-path: inset(0 0 80% 0); }
    50% { clip-path: inset(40% 0 30% 0); }
    100% { clip-path: inset(70% 0 5% 0); }
}
@keyframes glitch2 {
    0% { clip-path: inset(70% 0 10% 0); }
    50% { clip-path: inset(20% 0 50% 0); }
    100% { clip-path: inset(5% 0 80% 0); }
}

.title {
    font-family: 'Bungee', sans-serif;
    font-weight: 400;
    font-size: clamp(2.6rem, 11vw, 5rem);
    line-height: 1;
    margin: 6px 0 14px;
    -webkit-text-stroke: 3px #000;
    color: #fff;
    text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--pink), 12px 12px 0 var(--cyan);
}
.rainbow {
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--lime), var(--cyan), var(--purple), var(--pink));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #000;
    animation: rainbow 3s linear infinite;
}
@keyframes rainbow { to { background-position: 300% 0; } }
.shake { animation: rainbow 3s linear infinite, shake 0.4s ease-in-out infinite; }
@keyframes shake {
    0%, 100% { transform: translate(0, 0) rotate(-1deg); }
    25% { transform: translate(2px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 2px) rotate(-1deg); }
    75% { transform: translate(2px, 2px) rotate(1deg); }
}

.sub {
    color: var(--muted);
    font-family: 'Lilita One', cursive;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 36em;
    margin: 0 auto 22px;
    letter-spacing: 0.04em;
}

.ca-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    padding: 14px 18px;
    background: var(--card);
    border: 3px solid var(--yellow);
    border-radius: 16px;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 24px rgba(255, 230, 0, 0.35);
}
.ca-label {
    font-family: 'Bungee', sans-serif;
    font-size: 0.78rem;
    color: var(--yellow);
}
.ca-address {
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    max-width: 100%;
    color: #fff;
}
.copy-btn {
    font-family: 'Bungee', sans-serif;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid #000;
    background: var(--lime);
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
}
.copy-btn:hover { transform: translateY(-2px); }
.copy-btn:active { transform: translateY(2px); box-shadow: 0 0 0 #000; }

.links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.link-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 999px;
    font-family: 'Bungee', sans-serif; font-size: 0.9rem;
    text-decoration: none; color: #000;
    background: var(--cyan); border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
}
.link-btn:hover { transform: translateY(-3px) rotate(-2deg); }
.link-btn:active { transform: translateY(3px); box-shadow: 0 0 0 #000; }
.link-btn.buy {
    background: var(--lime);
    animation: buy-flash 0.8s ease-in-out infinite;
}
@keyframes buy-flash {
    0%, 100% { background: var(--lime); }
    50% { background: var(--yellow); }
}

.about, .tiktok-section {
    margin-top: 36px;
    padding: 24px 22px;
    background: var(--card);
    border: 3px dashed var(--pink);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 24px rgba(255, 43, 214, 0.35);
}
.section-title {
    font-family: 'Bungee', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--yellow);
    -webkit-text-stroke: 1px #000;
    display: inline-block;
}
.spin-on-hover { transition: transform 0.4s; }
.spin-on-hover:hover { transform: rotate(-6deg) scale(1.05); }

.about-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 12px;
}
.about-text strong { color: var(--yellow); }
.about-text em { color: var(--cyan); font-style: normal; font-weight: 700; }
.about-text.muted { font-size: 0.84rem; opacity: 0.85; margin-bottom: 0; }
.lore-link {
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px dashed var(--cyan);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s, transform 0.15s;
    display: inline-block;
}
.lore-link:hover { color: var(--yellow); border-color: var(--yellow); transform: translateY(-1px); }

.tiktok-row {
    display: flex; flex-wrap: nowrap; gap: 18px;
    justify-content: flex-start; align-items: flex-start;
    overflow-x: auto; padding: 8px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.tiktok-row::-webkit-scrollbar { height: 0; }
.tiktok-embed-wrapper {
    flex: 0 0 min(325px, 85vw);
    min-width: 280px;
    scroll-snap-align: center;
    border: 3px solid var(--yellow);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
    background: #000;
}
.tiktok-embed-wrapper:nth-child(2) { border-color: var(--pink); }
.tiktok-embed-wrapper:nth-child(3) { border-color: var(--lime); }
.tiktok-embed-wrapper blockquote.tiktok-embed { margin: 0 !important; }
.tiktok-embed-wrapper iframe { border-radius: 14px !important; }

@media (max-width: 900px) { .tiktok-row { justify-content: flex-start; } }
@media (max-width: 480px) { .ca-box { flex-direction: column; text-align: center; } }

/* ---------- MUTE BUTTON ---------- */
.mute-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #000;
    background: var(--yellow);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 6px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
}
.mute-btn:hover { transform: translateY(-3px) rotate(8deg); }
.mute-btn:active { transform: translateY(3px); box-shadow: 0 0 0 #000; }
