/* ============================================================
   $ELIZABETH — Mascot of Solana — meme edition
   ============================================================ */

:root {
    --ink: #0a0e27;
    --ink-2: #10163a;
    --ink-3: #171f4d;
    --gold: #ffd700;
    --gold-deep: #f5a623;
    --sol-purple: #9945ff;
    --sol-green: #14f195;
    --pink: #ff6ec7;
    --white: #ffffff;
    --outline: #06081c;
    --font-display: 'DynaPuff', cursive;
    --font-body: 'Fredoka', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --hard-shadow: 4px 4px 0 var(--outline);
    --hard-shadow-lg: 7px 7px 0 var(--outline);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background:
        radial-gradient(1100px 600px at 85% -5%, rgba(153, 69, 255, 0.22), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(20, 241, 149, 0.10), transparent 55%),
        var(--ink);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

::selection { background: var(--gold); color: var(--ink); }

img { user-select: none; }

/* ---------- ambient background ---------- */

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.bg-glow-1 { width: 480px; height: 480px; background: rgba(153, 69, 255, 0.35); top: -140px; right: -120px; animation: drift 14s ease-in-out infinite alternate; }
.bg-glow-2 { width: 420px; height: 420px; background: rgba(255, 215, 0, 0.14); top: 45%; left: -160px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.bg-glow-3 { width: 380px; height: 380px; background: rgba(20, 241, 149, 0.16); bottom: -120px; right: 15%; animation: drift 16s ease-in-out infinite alternate; }

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.12); }
}

.floaties { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.floaty {
    position: absolute;
    bottom: -60px;
    font-size: 26px;
    opacity: 0;
    animation: floatUp linear forwards;
}
@keyframes floatUp {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.35; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 39, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--gold);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: var(--ink-2);
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover .brand-logo { transform: rotate(-12deg) scale(1.1); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.brand-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--sol-green);
}

.header-nav { display: flex; gap: 6px; margin-left: auto; }

.nav-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--white);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-link:hover {
    background: var(--sol-purple);
    transform: rotate(-2deg) scale(1.06);
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--outline);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: var(--hard-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--outline); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--outline); }

.btn-buy {
    padding: 10px 22px;
    font-size: 1rem;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    animation: buyPulse 2.2s ease-in-out infinite;
    white-space: nowrap;
}

.buy-pf-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--outline);
    background: var(--white);
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes buyPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50%      { transform: rotate(-2deg) scale(1.05); }
}
.btn-buy:hover { animation-play-state: paused; }

.btn-social { padding: 12px 22px; font-size: 0.95rem; }
.btn-x  { background: #16181c; color: var(--white); }
.btn-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }

/* store-style buttons (dApp Store / Web Version) */

.btn-store {
    padding: 8px 18px;
    text-align: left;
    gap: 11px;
}

.btn-dappstore {
    background: linear-gradient(135deg, #0e2b30 0%, #123840 100%);
    color: var(--white);
}

.btn-webversion {
    background: linear-gradient(135deg, #1b7f74 0%, #14f195 160%);
    color: var(--white);
}

.store-cube { flex-shrink: 0; }

.btn-store-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--white);
    border: 2px solid var(--outline);
    object-fit: cover;
}

.btn-store-text { display: flex; flex-direction: column; line-height: 1.2; }

.btn-store-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.btn-store-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.6px;
    opacity: 0.85;
    white-space: nowrap;
}

/* ---------- hero ---------- */

.hero { position: relative; z-index: 1; padding: 64px 24px 40px; }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    background: var(--sol-purple);
    color: var(--white);
    border: 3px solid var(--outline);
    border-radius: 999px;
    padding: 7px 18px;
    box-shadow: var(--hard-shadow);
    transform: rotate(-2deg);
    margin-bottom: 22px;
    animation: badgeBob 3s ease-in-out infinite;
}
@keyframes badgeBob {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%      { transform: rotate(-2deg) translateY(-5px); }
}

.hero-title { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; }

.hero-title-main {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 1;
    color: var(--gold);
    text-shadow:
        4px 4px 0 var(--outline),
        8px 8px 0 rgba(153, 69, 255, 0.55);
    letter-spacing: 1px;
}

.glitch-wiggle { display: inline-block; animation: wiggle 5s ease-in-out infinite; transform-origin: left bottom; }
@keyframes wiggle {
    0%, 88%, 100% { transform: rotate(0deg); }
    90%  { transform: rotate(1.6deg); }
    93%  { transform: rotate(-1.4deg); }
    96%  { transform: rotate(0.8deg); }
}

.hero-title-sub {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    color: var(--white);
    text-shadow: 3px 3px 0 var(--outline);
    letter-spacing: 2px;
}
.hero-title-sub em {
    font-style: normal;
    color: var(--sol-green);
}

/* contract address */

.ca-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ink-2);
    border: 3px solid var(--outline);
    border-radius: 14px;
    box-shadow: var(--hard-shadow);
    padding: 10px 12px;
    margin-bottom: 26px;
    max-width: 640px;
}

.ca-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    background: var(--sol-green);
    color: var(--ink);
    border-radius: 8px;
    padding: 4px 9px;
    flex-shrink: 0;
}

.ca-text {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.ca-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--gold);
    border: 2px solid var(--outline);
    border-radius: 9px;
    padding: 6px 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.15s, background 0.2s;
}
.ca-copy:hover { transform: scale(1.07) rotate(-2deg); }
.ca-copy:active { transform: scale(0.94); }
.ca-copy.copied { background: var(--sol-green); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-listings { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.listing-card {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 3px solid var(--outline);
    border-radius: 14px;
    box-shadow: var(--hard-shadow);
    padding: 10px 20px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.listing-card:hover { transform: translate(-2px, -2px) rotate(-1.5deg); box-shadow: 6px 6px 0 var(--outline); }
.listing-card img { height: 26px; width: auto; display: block; }

/* hero cat sticker */

.hero-right { display: flex; justify-content: center; }

.cat-sticker { position: relative; cursor: pointer; }

.cat-sticker-inner {
    position: relative;
    background: var(--white);
    border: 4px solid var(--outline);
    border-radius: 18px;
    padding: 14px 14px 10px;
    box-shadow: var(--hard-shadow-lg);
    transform: rotate(3.5deg);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: stickerFloat 5s ease-in-out infinite;
}
.cat-sticker:hover .cat-sticker-inner { transform: rotate(-1deg) scale(1.04); }
.cat-sticker.boing .cat-sticker-inner { animation: boing 0.6s cubic-bezier(0.34, 2.2, 0.64, 1); }

@keyframes stickerFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -12px; }
}
@keyframes boing {
    0%   { transform: rotate(3.5deg) scale(1); }
    35%  { transform: rotate(-4deg) scale(1.12); }
    70%  { transform: rotate(2deg) scale(0.96); }
    100% { transform: rotate(3.5deg) scale(1); }
}

.cat-photo {
    width: min(360px, 70vw);
    display: block;
    border-radius: 10px;
    border: 3px solid var(--outline);
}

.tape {
    position: absolute;
    top: -16px;
    right: 26px;
    width: 96px;
    height: 34px;
    background: rgba(255, 215, 0, 0.85);
    border: 2px solid rgba(0, 0, 0, 0.25);
    transform: rotate(8deg);
    border-radius: 3px;
}

.cat-caption {
    font-family: var(--font-display);
    color: var(--ink);
    text-align: center;
    font-size: 1rem;
    padding: 8px 0 4px;
}

.cat-shadow {
    width: 70%;
    height: 20px;
    margin: 26px auto 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    filter: blur(9px);
    animation: shadowPulse 5s ease-in-out infinite;
}
@keyframes shadowPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.45; }
    50%      { transform: scaleX(0.82); opacity: 0.3; }
}

/* toly tweet sticker pinned to hero polaroid corner */

.hero-tweet {
    position: absolute;
    top: -40px;
    left: -52px;
    z-index: 3;
    display: block;
    width: 260px;
    background: var(--white);
    border: 3px solid var(--outline);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--hard-shadow);
    transform: rotate(-7deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    animation: heroTweetBob 4.2s ease-in-out infinite;
}
.hero-tweet:hover {
    transform: rotate(-2deg) scale(1.1);
    box-shadow: 6px 7px 0 var(--outline);
}
@keyframes heroTweetBob {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -7px; }
}

.hero-tweet-img { display: block; width: 100%; height: auto; }

/* meow burst on cat click */
.meow-pop {
    position: fixed;
    font-family: var(--font-display);
    font-weight: 700;
    pointer-events: none;
    z-index: 999;
    animation: meowPop 1.1s ease-out forwards;
}
@keyframes meowPop {
    0%   { transform: translate(0, 0) scale(0.4) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) scale(1.4) rotate(var(--rot)); opacity: 0; }
}

/* ---------- ticker ---------- */

.ticker {
    position: relative;
    z-index: 2;
    background: var(--gold);
    border-top: 3px solid var(--outline);
    border-bottom: 3px solid var(--outline);
    transform: rotate(-1.2deg) scale(1.02);
    margin: 34px 0;
    overflow: hidden;
}

.footer-ticker {
    background: var(--sol-purple);
    border-top: 3px solid var(--outline);
    border-bottom: 3px solid var(--outline);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 34px;
    width: max-content;
    padding: 10px 0;
    animation: tickerScroll 22s linear infinite;
}
.ticker-track-slow { animation-duration: 30s; }

.ticker-track span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: 1px;
}
.footer-ticker .ticker-track span { color: var(--white); }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

/* ---------- sections ---------- */

.section { position: relative; z-index: 1; padding: 70px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* ribbon headers (avatar + banner) */

.ribbon-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 46px;
}

.ribbon-avatar {
    width: 118px;
    height: 118px;
    border-radius: 26px;
    border: 4px solid var(--outline);
    background: var(--white);
    box-shadow: var(--hard-shadow);
    overflow: hidden;
    transform: rotate(-3deg);
    margin-bottom: -26px;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ribbon-header:hover .ribbon-avatar { transform: rotate(3deg) scale(1.07); }
.ribbon-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ribbon-avatar-round { border-radius: 50%; }

.ribbon-band { position: relative; display: inline-flex; align-items: center; justify-content: center; }

.ribbon-img {
    display: block;
    max-width: min(620px, 88vw);
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 0 rgba(6, 8, 28, 0.85));
}

.ribbon-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.95rem, 2.6vw, 1.6rem);
    color: var(--ink);
    padding: 0 12%;
    text-align: center;
    line-height: 1.1;
}

.ribbon-meta { margin-top: 14px; display: flex; flex-direction: column; align-items: center; gap: 4px; }

.ribbon-name {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}
.ribbon-verify { width: 22px; height: 22px; }
.ribbon-flag { width: 30px; height: auto; border-radius: 3px; }

.ribbon-bio {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    letter-spacing: 0.4px;
}

/* ---------- toly / tweet frame ---------- */

.tweet-frame {
    background: var(--ink-2);
    border: 4px solid var(--outline);
    border-radius: 20px;
    box-shadow: var(--hard-shadow-lg);
    overflow: hidden;
}

.tweet-frame-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ink-3);
    border-bottom: 3px solid var(--outline);
    padding: 11px 16px;
}

.dot { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--outline); }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.tweet-frame-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

.tweet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
}

.tweet-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--ink);
    border: 3px solid var(--outline);
    border-radius: 16px;
    padding: 14px;
    text-decoration: none;
    box-shadow: var(--hard-shadow);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, border-color 0.2s;
}
.tweet-card:hover {
    transform: translate(-2px, -3px) rotate(-0.8deg);
    box-shadow: 6px 7px 0 var(--outline);
    border-color: var(--sol-purple);
}

.tweet-card-head { display: flex; align-items: center; gap: 9px; }

.tweet-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--outline);
    object-fit: cover;
}

.tweet-who { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }

.tweet-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}
.tweet-verify { width: 14px; height: 14px; }

.tweet-handle { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); font-weight: 500; }

.tweet-x-icon { margin-left: auto; color: rgba(255, 255, 255, 0.55); flex-shrink: 0; }

.tweet-text {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--white);
    flex: 1;
    line-height: 1.4;
}

.tweet-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tweet-date { font-size: 0.7rem; color: rgba(255, 255, 255, 0.45); font-weight: 500; }

.tweet-open {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--sol-green);
    letter-spacing: 0.4px;
}

/* ---------- charity ---------- */

.charity-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
}

.polaroid {
    display: block;
    background: var(--white);
    border: 4px solid var(--outline);
    border-radius: 14px;
    padding: 12px 12px 8px;
    box-shadow: var(--hard-shadow-lg);
    text-decoration: none;
    transform: rotate(var(--tilt, 0deg));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    max-width: 340px;
}
.polaroid:hover {
    transform: rotate(0deg) scale(1.05) translateY(-6px);
    box-shadow: 10px 12px 0 var(--outline);
}

.polaroid-img {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--outline);
    object-fit: cover;
}

.polaroid-caption {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    padding: 10px 0 6px;
    font-size: 1rem;
}

/* ---------- burns ---------- */

.burns-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.burn-chest {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 110px;
}

.burn-chest-link { display: block; }

.burn-chest-img {
    width: min(330px, 75vw);
    display: block;
    filter: drop-shadow(6px 8px 0 rgba(6, 8, 28, 0.85));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: chestShake 4s ease-in-out infinite;
}
.burn-chest-link:hover .burn-chest-img { transform: scale(1.06) rotate(-2deg); animation-play-state: paused; }

@keyframes chestShake {
    0%, 86%, 100% { transform: rotate(0deg); }
    89% { transform: rotate(-1.6deg) scale(1.015); }
    92% { transform: rotate(1.6deg) scale(1.015); }
    95% { transform: rotate(-1deg); }
}

.burn-chest-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--gold);
    text-shadow: 3px 3px 0 var(--outline), 6px 6px 0 rgba(153, 69, 255, 0.5);
    letter-spacing: 2px;
}

.burn-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--white);
    text-decoration: none;
    border: 3px solid var(--outline);
    border-radius: 12px;
    padding: 9px 16px;
    box-shadow: var(--hard-shadow);
    transition: transform 0.15s, box-shadow 0.15s;
}
.burn-proof:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--outline); }
.burn-proof img { height: 18px; width: auto; }

.burns-steps { display: flex; flex-direction: column; gap: 18px; }

.burn-step {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--ink-2);
    border: 3px solid var(--outline);
    border-radius: 18px;
    box-shadow: var(--hard-shadow);
    padding: 14px 20px;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, background 0.2s;
}
.burn-step:hover {
    transform: translate(-3px, -3px) rotate(-0.6deg);
    box-shadow: 7px 7px 0 var(--outline);
    background: var(--ink-3);
}

.burn-flame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    font-size: 30px;
    border-radius: 14px;
    border: 3px solid var(--outline);
    background: radial-gradient(circle at 50% 78%, rgba(245, 166, 35, 0.5), rgba(10, 14, 39, 0.9) 68%), var(--ink);
    animation: flameFlicker 1.5s ease-in-out infinite;
}
.burn-step:hover .burn-flame { animation-duration: 0.5s; }

@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(-2deg); filter: brightness(1) drop-shadow(0 0 5px rgba(255, 150, 0, 0.55)); }
    30%      { transform: scale(1.12) rotate(2deg); filter: brightness(1.25) drop-shadow(0 0 12px rgba(255, 170, 0, 0.8)); }
    60%      { transform: scale(0.95) rotate(-1deg); filter: brightness(0.95) drop-shadow(0 0 4px rgba(255, 150, 0, 0.45)); }
    80%      { transform: scale(1.07) rotate(1.5deg); filter: brightness(1.15) drop-shadow(0 0 9px rgba(255, 170, 0, 0.7)); }
}

.burn-step-body { flex: 1; min-width: 0; }

.burn-step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.burn-step-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.burn-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 2px solid var(--outline);
    border-radius: 10px;
    padding: 6px 12px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    transition: transform 0.2s;
}
.burn-step:hover .burn-step-badge { transform: scale(1.08) rotate(-2deg); }
.burn-step-badge img { height: 15px; width: auto; }

/* ---------- game section ---------- */

.ribbon-avatar-game { border-radius: 28px; }
.ribbon-avatar-game img { object-fit: cover; }

.game-band {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #123840 0%, #1b7f74 55%, #4fa89c 100%);
    border: 4px solid var(--outline);
    border-radius: 20px;
    box-shadow: 5px 5px 0 rgba(6, 8, 28, 0.85);
    padding: 20px 44px;
    transform: rotate(-1deg);
    max-width: min(640px, 90vw);
}

.game-band-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 3.4vw, 2rem);
    color: var(--white);
    text-shadow: 3px 3px 0 var(--outline);
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.15;
}

.game-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 44px;
}

/* toly proof tweet card (game section) */

.toly-proof {
    display: block;
    max-width: 560px;
    margin: 0 auto 46px;
    background: #16181c;
    border: 3px solid var(--outline);
    border-radius: 20px;
    padding: 18px 20px;
    text-decoration: none;
    box-shadow: var(--hard-shadow-lg);
    transform: rotate(-1deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.toly-proof:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 9px 10px 0 var(--outline);
}

.tp-head { display: flex; align-items: center; gap: 10px; }

.tp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--outline);
    object-fit: cover;
}

.tp-who { display: flex; flex-direction: column; line-height: 1.25; }

.tp-name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}
.tp-verify { width: 15px; height: 15px; }

.tp-handle, .tp-quote-handle { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); font-weight: 500; }

.tp-x { margin-left: auto; color: rgba(255, 255, 255, 0.6); }

.tp-emoji { font-size: 1.5rem; margin: 10px 0 12px; }

.tp-quote {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
}

.tp-quote-head { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }

.tp-quote-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--outline);
    object-fit: cover;
}

.tp-quote-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.tp-quote-replying {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 6px 0 4px;
    font-weight: 500;
}
.tp-quote-replying span { color: #1d9bf0; }

.tp-quote-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.45;
}

.tp-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding: 0 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}
.tp-rt { color: #00ba7c; }
.tp-like { color: #f91880; }

.game-shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.game-shot {
    background: var(--white);
    border: 4px solid var(--outline);
    border-radius: 22px;
    padding: 8px;
    box-shadow: var(--hard-shadow-lg);
    transform: rotate(var(--tilt, 0deg));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.game-shot:hover {
    transform: rotate(0deg) scale(1.06) translateY(-8px);
    box-shadow: 10px 12px 0 var(--outline);
    z-index: 2;
    position: relative;
}

.game-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--outline);
}

/* ---------- footer ---------- */

.site-footer { position: relative; z-index: 1; margin-top: 40px; }

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 46px 24px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo:hover { transform: rotate(360deg) scale(1.1); }

.footer-social { display: flex; gap: 12px; }

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 3px solid var(--outline);
    background: var(--ink-2);
    color: var(--white);
    box-shadow: var(--hard-shadow);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.footer-social-link:hover {
    transform: translate(-2px, -2px) rotate(-4deg);
    box-shadow: 6px 6px 0 var(--outline);
    background: var(--sol-purple);
}

.footer-copy { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); font-weight: 500; }

.footer-ca {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    word-break: break-all;
    max-width: 90vw;
}

/* ---------- reveal on scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
    .tweet-grid { grid-template-columns: repeat(2, 1fr); }
    .game-shots { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .hero-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .hero-title { align-items: center; }
    .ca-box { width: 100%; }
    .hero-buttons, .hero-listings { justify-content: center; }
    .burns-layout { grid-template-columns: 1fr; }
    .burn-chest { position: static; }
    .header-nav { display: none; }
}

@media (max-width: 560px) {
    .header-inner { padding: 10px 14px; gap: 10px; }
    .brand-tag { display: none; }
    .brand-name { font-size: 1.05rem; }
    .btn-buy { padding: 9px 18px; font-size: 0.95rem; margin-left: auto; }
    .hero { padding: 42px 16px 28px; }
    .ca-text { font-size: 0.68rem; }
    .ca-copy span { display: none; }
    .section { padding: 52px 16px; }
    .tweet-grid { grid-template-columns: 1fr; padding: 14px; }
    .game-shots { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .burn-step { flex-wrap: wrap; }
    .cat-photo { width: min(300px, 78vw); }
    .hero-tweet { left: -10px; top: -34px; width: 190px; }
    .btn-buy { padding: 9px 14px; font-size: 0.82rem; }
    .toly-proof { padding: 14px; }
    .tp-stats { font-size: 0.72rem; }
}
