/* ===== REDDIT SLIDES CSS ===== */

/* ---- PROGRESS DOTS ---- */
.slide-progress { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 100; opacity: 0; transition: opacity 0.3s; }
.slide-progress.visible { opacity: 1; }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; }
.slide-dot.active { background: #fff; width: 22px; border-radius: 3px; }

/* ======================================================
   BACKGROUNDS — BOLD REDDIT-THEMED GRADIENTS
   ====================================================== */
.slide-inner {
    overflow: hidden;
    position: relative;
}

.s-bg-rd-intro      { background: linear-gradient(135deg, #FF4500, #1A1A2E) !important; }
.s-bg-rd-numbers    { background: linear-gradient(135deg, #FF4500, #CC3700) !important; }
.s-bg-rd-subreddit  { background: linear-gradient(135deg, #0079D3, #FF4500) !important; }
.s-bg-rd-topsubs    { background: linear-gradient(135deg, #1A1A2E, #FF4500, #0079D3) !important; }
.s-bg-rd-lurker     { background: linear-gradient(135deg, #1A1A2E, #FF4500) !important; }
.s-bg-rd-karma      { background: linear-gradient(135deg, #FF4500, #FFD635) !important; }
.s-bg-rd-karmaratio { background: linear-gradient(135deg, #FF6B35, #1A1A2E, #0079D3) !important; }
.s-bg-rd-argument   { background: linear-gradient(135deg, #CC3700, #7193FF) !important; }
.s-bg-rd-accounts   { background: linear-gradient(135deg, #FF4500, #1A1A2E, #FF6B35) !important; }
.s-bg-rd-timeclock  { background: linear-gradient(135deg, #0A0A2E, #FF4500, #1A1A2E) !important; }
.s-bg-rd-sort       { background: linear-gradient(135deg, #0079D3, #1A1A2E) !important; }
.s-bg-rd-cakeday    { background: linear-gradient(135deg, #FF4500, #FFD635, #1A1A2E) !important; }
.s-bg-rd-addiction  { background: linear-gradient(135deg, #FF4500, #CC3700, #1A1A2E) !important; }
.s-bg-rd-persona    { background: linear-gradient(135deg, #FF4500, #1A1A2E, #FF6B35) !important; }

/* ---- TOP LIST (ranked subreddits) ---- */
.top-list { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 6px; }
.top-list-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); padding: 8px 14px; border-radius: 10px; animation: staggerIn 0.4s ease both; backdrop-filter: blur(10px); }
.top-list-rank { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: #FF4500; min-width: 24px; }
.top-list-name { flex: 1; font-size: 0.95rem; color: rgba(255,255,255,0.95); text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-list-count { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
@keyframes staggerIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

/* ---- SPLIT LAYOUT (comment vs post karma) ---- */
.s-split { display: flex; align-items: center; gap: 1rem; width: 100%; max-width: 380px; }
.s-split-box { flex: 1; background: rgba(255,255,255,0.08); border-radius: 14px; padding: 1.2rem 0.8rem; text-align: center; backdrop-filter: blur(10px); }
.s-split-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 7vw, 2.5rem); font-weight: 700; }
.s-split-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-split-vs { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,0.4); }

/* ---- ADDICTION METER ---- */
.meter-bar-wrap { width: 100%; max-width: 300px; margin-top: 1rem; }
.meter-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 6px; }
.meter-track { width: 100%; height: 16px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.meter-fill { height: 100%; width: 0%; border-radius: 10px; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
.rd-meter-fill { background: linear-gradient(90deg, #FFD635, #FF6B35, #FF4500, #CC3700, #DC143C); }
.meter-level { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 6px; text-align: center; }

/* ---- SLIDE CONTENT LAYOUT ---- */
.s-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 400px; }
.s-watermark { position: absolute; bottom: 1.2rem; right: 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; color: rgba(255,255,255,0.25); z-index: 2; }
.s-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 5px; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; text-transform: uppercase; }
.s-big-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3.5rem, 14vw, 7rem); font-weight: 700; line-height: 1; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.s-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 10vw, 4rem); font-weight: 700; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.s-subtitle { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 500; max-width: 320px; line-height: 1.4; color: rgba(255,255,255,0.9); }
.s-caption { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }
.s-roast { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin-top: 1.5rem; max-width: 320px; line-height: 1.5; font-style: italic; background: rgba(0,0,0,0.2); padding: 0.8rem 1.2rem; border-radius: 12px; backdrop-filter: blur(10px); }
.s-next { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); font-size: 1.2rem; cursor: pointer; padding: 0.6rem 1.8rem; border-radius: 50px; transition: all 0.3s; z-index: 10; font-family: 'Space Grotesk', sans-serif; }
.s-next:hover { border-color: rgba(255,255,255,0.8); color: #fff; background: rgba(255,255,255,0.25); }


/* ============================================================
   SCENE ANIMATIONS — RECOGNIZABLE REDDIT ITEMS (2-3X SCALED)
   ============================================================ */
.scene { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }

/* ======================
   SLIDE 0 — INTRO (SCALED 2.5x)
   ====================== */

/* -- Upvote Arrow (triangle pointing up) -- 30->75px borders, 45->112px */
.intro-upvote {
    position: absolute; top: 12%; right: 8%;
    width: 0; height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 112px solid rgba(255,69,0,0.8);
    filter: drop-shadow(0 16px 50px rgba(255,69,0,0.5));
    animation: introArrowFloat 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite alternate;
}
/* Arrow stem */
.intro-upvote::after {
    content: ''; position: absolute;
    top: 75px; left: -25px;
    width: 50px; height: 60px;
    background: rgba(255,69,0,0.8);
    border-radius: 0 0 10px 10px;
}

/* -- Snoo Antenna (circle on a line) -- 2.5x */
.intro-snoo-antenna {
    position: absolute; bottom: 14%; left: 8%;
    width: 10px; height: 200px;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    animation: snooAntennaFloat 6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.5s infinite alternate;
}
/* Antenna ball */
.intro-snoo-antenna::before {
    content: ''; position: absolute;
    top: -35px; left: 50%; transform: translateX(-50%);
    width: 45px; height: 45px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255,69,0,0.6);
}

/* -- Speech Bubble -- 2.5x */
.intro-speech {
    position: absolute; top: 55%; left: 65%;
    width: 250px; height: 150px;
    background: rgba(255,255,255,0.15);
    border-radius: 40px;
    border: 4px solid rgba(255,255,255,0.25);
    animation: introSpeechFloat 7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s infinite alternate;
}
/* Bubble pointer */
.intro-speech::after {
    content: ''; position: absolute;
    bottom: -30px; left: 50px;
    width: 0; height: 0;
    border-left: 35px solid rgba(255,255,255,0.15);
    border-right: 15px solid transparent;
    border-top: 30px solid rgba(255,255,255,0.15);
    border-bottom: 0 solid transparent;
}
/* Text lines inside bubble */
.intro-speech::before {
    content: ''; position: absolute;
    top: 40px; left: 35px;
    width: 125px; height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    box-shadow: 0 30px 0 rgba(255,255,255,0.2), 0 60px 0 rgba(255,255,255,0.15);
}

/* -- Downvote Arrow -- 2.5x */
.intro-downvote {
    position: absolute; bottom: 25%; right: 15%;
    width: 0; height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 70px solid rgba(113,147,255,0.5);
    animation: introDownFloat 5.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s infinite alternate;
}
.intro-downvote::after {
    content: ''; position: absolute;
    top: -105px; left: -18px;
    width: 35px; height: 40px;
    background: rgba(113,147,255,0.5);
    border-radius: 10px 10px 0 0;
}


/* ======================
   SLIDE 1 — THE NUMBERS (SCALED 2.5x)
   ====================== */

/* Karma Counter Pill */
.numbers-karma-pill {
    position: absolute;
    background: rgba(255,69,0,0.6);
    border-radius: 50px;
    box-shadow: 0 12px 40px rgba(255,69,0,0.4);
    animation: karmaPillDrift 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.numbers-karma-pill::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 55%; height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 5px;
}
.numbers-karma-pill::after {
    content: ''; position: absolute;
    top: 50%; left: 12%; transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(255,255,255,0.5);
}
.nkp-1 { top: 6%; left: 4%; width: 250px; height: 90px; }
.nkp-2 { top: 10%; right: 6%; width: 200px; height: 75px; animation-delay: 1.2s; }
.nkp-3 { bottom: 12%; right: 8%; width: 275px; height: 95px; animation-delay: 2s; }

/* Feed Lines (horizontal bars stacked) — 2.5x */
.numbers-feed {
    position: absolute; bottom: 8%; left: 5%;
    width: 350px; height: 225px;
    background: rgba(26,26,46,0.5);
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.1);
    animation: feedScroll 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s infinite alternate;
}
.numbers-feed::before {
    content: ''; position: absolute;
    top: 30px; left: 30px;
    width: 200px; height: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    box-shadow: 0 35px 0 rgba(255,255,255,0.12),
                0 70px 0 rgba(255,255,255,0.09),
                0 105px 0 rgba(255,255,255,0.06),
                0 140px 0 rgba(255,255,255,0.04);
}
.numbers-feed::after {
    content: ''; position: absolute;
    top: 30px; right: 30px;
    width: 40px; height: 12px;
    background: rgba(255,69,0,0.5);
    border-radius: 6px;
    box-shadow: 0 35px 0 rgba(255,69,0,0.4),
                0 70px 0 rgba(255,69,0,0.3),
                0 105px 0 rgba(255,69,0,0.2),
                0 140px 0 rgba(255,69,0,0.1);
}

/* Upvote arrow floating — 2.5x */
.numbers-upvote {
    position: absolute; top: 40%; right: 3%;
    width: 0; height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(255,69,0,0.4);
    animation: numbersUpFloat 4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.5s infinite alternate;
}
.numbers-upvote::after {
    content: ''; position: absolute;
    top: 40px; left: -15px;
    width: 30px; height: 35px;
    background: rgba(255,69,0,0.4);
    border-radius: 0 0 8px 8px;
}


/* ======================
   SLIDE 2 — SUBREDDIT IDENTITY (SCALED 2.5x)
   ====================== */

/* Subreddit Icon */
.sub-icon {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,121,211,0.5);
    border: 6px solid rgba(255,255,255,0.2);
    box-shadow: 0 16px 50px rgba(0,121,211,0.4);
    animation: subIconOrbit 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.sub-icon::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40%; height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 4px;
    box-shadow: 0 18px 0 rgba(255,255,255,0.4);
}
.si-1 { top: 6%; right: 8%; width: 175px; height: 175px; }
.si-2 { bottom: 10%; left: 5%; width: 138px; height: 138px; animation-delay: 1s; }
.si-3 { top: 35%; left: 3%; width: 112px; height: 112px; animation-delay: 2s; }

/* Comment Thread Lines — 2.5x */
.sub-thread {
    position: absolute; bottom: 20%; right: 5%;
    width: 8px; height: 300px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    animation: threadGrow 4s cubic-bezier(0.23, 1, 0.32, 1) 0.5s infinite alternate;
}
.sub-thread::before {
    content: ''; position: absolute;
    top: 75px; left: 0;
    width: 100px; height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    box-shadow: 0 75px 0 rgba(255,255,255,0.08),
                0 150px 0 rgba(255,255,255,0.06);
}
.sub-thread::after {
    content: ''; position: absolute;
    top: 70px; left: 95px;
    width: 15px; height: 15px;
    background: rgba(255,69,0,0.4);
    border-radius: 50%;
    box-shadow: 0 75px 0 rgba(255,69,0,0.3),
                0 150px 0 rgba(255,69,0,0.2);
}


/* ======================
   SLIDE 3 — TOP SUBREDDITS (SCALED 2.5x)
   ====================== */

.topsub-pill {
    position: absolute;
    background: rgba(255,69,0,0.35);
    border-radius: 60px;
    border: 4px solid rgba(255,69,0,0.25);
    animation: topsubCascade 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.topsub-pill::before {
    content: ''; position: absolute;
    top: 50%; left: 28px; transform: translateY(-50%);
    width: 35px; height: 35px;
    background: rgba(255,69,0,0.6);
    border-radius: 50%;
}
.topsub-pill::after {
    content: ''; position: absolute;
    top: 50%; left: 80px; transform: translateY(-50%);
    width: 45%; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}
.tp-1 { top: 4%; right: 5%; width: 300px; height: 90px; animation-delay: 0s; }
.tp-2 { top: 12%; left: 3%; width: 260px; height: 80px; animation-delay: 0.4s; }
.tp-3 { bottom: 18%; right: 8%; width: 325px; height: 95px; animation-delay: 0.8s; }
.tp-4 { bottom: 10%; left: 5%; width: 238px; height: 75px; animation-delay: 1.2s; }
.tp-5 { top: 40%; left: 60%; width: 275px; height: 85px; animation-delay: 1.6s; }


/* ======================
   SLIDE 4 — LURKER VS POSTER (SCALED 2.5x)
   ====================== */

/* Speech Bubble */
.lurker-bubble {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border-radius: 45px;
    border: 4px solid rgba(255,255,255,0.15);
    animation: bubbleFloat 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.lurker-bubble::after {
    content: ''; position: absolute;
    bottom: -25px; left: 45px;
    width: 0; height: 0;
    border-left: 30px solid rgba(255,255,255,0.12);
    border-right: 10px solid transparent;
    border-top: 25px solid rgba(255,255,255,0.12);
}
.lurker-bubble::before {
    content: ''; position: absolute;
    top: 35px; left: 35px;
    width: 50%; height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    box-shadow: 0 25px 0 rgba(255,255,255,0.15);
}
.lb-1 { top: 5%; right: 6%; width: 275px; height: 138px; }
.lb-2 { bottom: 15%; left: 4%; width: 225px; height: 120px; animation-delay: 1.2s; }
.lb-3 { top: 40%; left: 60%; width: 188px; height: 105px; animation-delay: 2.2s; }

/* Rising upvote arrows — 2.5x */
.lurker-upvote {
    position: absolute; bottom: 0;
    width: 0; height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 45px solid rgba(255,69,0,0.5);
    animation: upvoteRise 3.5s linear infinite;
}
.lu-1 { left: 10%; animation-delay: 0s; }
.lu-2 { left: 85%; animation-delay: 0.8s; animation-duration: 4s; }
.lu-3 { left: 50%; animation-delay: 1.6s; animation-duration: 3s; }


/* ======================
   SLIDE 5 — KARMA REPORT (SCALED 2.5x)
   ====================== */

/* Rain of upvotes */
.karma-arrow-up {
    position: absolute;
    width: 0; height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 55px solid rgba(255,69,0,0.7);
    animation: karmaRainUp 3s linear infinite;
}
.kau-1 { left: 8%; animation-delay: 0s; animation-duration: 3.2s; }
.kau-2 { left: 30%; animation-delay: 0.5s; animation-duration: 2.8s; }
.kau-3 { left: 70%; animation-delay: 1s; animation-duration: 3.5s; }

/* Rain of downvotes */
.karma-arrow-down {
    position: absolute;
    width: 0; height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid rgba(113,147,255,0.5);
    animation: karmaRainDown 4s linear infinite;
}
.kad-1 { left: 50%; animation-delay: 0.3s; }
.kad-2 { left: 88%; animation-delay: 1.5s; animation-duration: 3.5s; }

/* Award Medal (circle with ribbon) — 2.5x */
.karma-award {
    position: absolute; bottom: 12%; left: 6%;
    width: 150px; height: 150px;
    background: radial-gradient(circle, #FFD635 40%, #FFAA00 100%);
    border-radius: 50%;
    box-shadow: 0 16px 60px rgba(255,214,53,0.5);
    animation: awardPulse 3s ease-in-out infinite;
}
.karma-award::before {
    content: ''; position: absolute;
    bottom: -70px; left: 30px;
    width: 35px; height: 80px;
    background: rgba(255,69,0,0.7);
    border-radius: 0 0 8px 8px;
    transform: rotate(-8deg);
}
.karma-award::after {
    content: ''; position: absolute;
    bottom: -70px; right: 30px;
    width: 35px; height: 80px;
    background: rgba(255,69,0,0.7);
    border-radius: 0 0 8px 8px;
    transform: rotate(8deg);
}


/* ======================
   SLIDE 6 — COMMENT VS POST KARMA (SCALED 2.5x)
   ====================== */

/* Speech bubbles (comment side) */
.kr-speech-bubble {
    position: absolute;
    background: rgba(255,69,0,0.2);
    border-radius: 40px;
    border: 4px solid rgba(255,69,0,0.3);
    animation: krBubbleFloat 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.kr-speech-bubble::after {
    content: ''; position: absolute;
    bottom: -20px; left: 35px;
    width: 0; height: 0;
    border-left: 25px solid rgba(255,69,0,0.2);
    border-right: 10px solid transparent;
    border-top: 20px solid rgba(255,69,0,0.2);
}
.kr-speech-bubble::before {
    content: ''; position: absolute;
    top: 30px; left: 30px;
    width: 50%; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    box-shadow: 0 22px 0 rgba(255,255,255,0.2);
}
.kr-sb-1 { top: 6%; left: 3%; width: 238px; height: 120px; }
.kr-sb-2 { bottom: 18%; left: 5%; width: 200px; height: 105px; animation-delay: 1.2s; }

/* Link icons (post side) — 2.5x */
.kr-link-icon {
    position: absolute;
    width: 100px; height: 100px;
    border: 6px solid rgba(0,121,211,0.5);
    border-radius: 25px;
    animation: krLinkFloat 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.kr-link-icon::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg);
    width: 35px; height: 35px;
    border: 5px solid rgba(0,121,211,0.6);
    border-radius: 10px;
}
.kr-link-icon::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg);
    width: 25px; height: 25px;
    border: 5px solid rgba(0,121,211,0.4);
    border-radius: 8px;
}
.kr-li-1 { top: 8%; right: 6%; animation-delay: 0.5s; }
.kr-li-2 { bottom: 14%; right: 8%; width: 85px; height: 85px; animation-delay: 1.8s; }


/* ======================
   SLIDE 7 — ARGUMENT REPORT (SCALED 2.5x)
   ====================== */

/* Comment thread lines */
.argue-thread {
    position: absolute;
    width: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    animation: argueThreadGrow 3.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.argue-thread::before {
    content: ''; position: absolute;
    top: 20%; left: 0;
    width: 88px; height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    box-shadow: 0 55px 0 rgba(255,255,255,0.06),
                0 110px 0 rgba(255,255,255,0.04);
}
.at-1 { top: 5%; left: 3%; height: 375px; }
.at-2 { top: 10%; right: 5%; height: 300px; animation-delay: 0.8s; }

/* Clashing speech bubbles — 2.5x */
.argue-bubble-left {
    position: absolute; bottom: 18%; left: 3%;
    width: 250px; height: 138px;
    background: rgba(255,69,0,0.25);
    border-radius: 40px;
    border: 4px solid rgba(255,69,0,0.35);
    animation: argueShakeLeft 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}
.argue-bubble-left::after {
    content: ''; position: absolute;
    bottom: -25px; right: 38px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 30px solid rgba(255,69,0,0.25);
    border-top: 25px solid rgba(255,69,0,0.25);
}
.argue-bubble-left::before {
    content: ''; position: absolute;
    top: 38px; left: 35px;
    width: 138px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    box-shadow: 0 25px 0 rgba(255,255,255,0.2);
}

.argue-bubble-right {
    position: absolute; bottom: 22%; right: 3%;
    width: 225px; height: 125px;
    background: rgba(113,147,255,0.25);
    border-radius: 40px;
    border: 4px solid rgba(113,147,255,0.35);
    animation: argueShakeRight 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.3s infinite;
}
.argue-bubble-right::after {
    content: ''; position: absolute;
    bottom: -25px; left: 38px;
    width: 0; height: 0;
    border-right: 10px solid transparent;
    border-left: 30px solid rgba(113,147,255,0.25);
    border-top: 25px solid rgba(113,147,255,0.25);
}
.argue-bubble-right::before {
    content: ''; position: absolute;
    top: 35px; left: 30px;
    width: 112px; height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    box-shadow: 0 25px 0 rgba(255,255,255,0.15);
}

/* Downvote arrow — 2.5x */
.argue-downvote {
    position: absolute; top: 55%; right: 12%;
    width: 0; height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 55px solid rgba(113,147,255,0.4);
    animation: argueDownSink 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s infinite alternate;
}
.argue-downvote::after {
    content: ''; position: absolute;
    top: -85px; left: -12px;
    width: 25px; height: 35px;
    background: rgba(113,147,255,0.4);
    border-radius: 8px 8px 0 0;
}


/* ======================
   SLIDE 8 — ACCOUNT SITUATION (SCALED 2.5x)
   ====================== */

/* Snoo Antenna */
.acct-antenna {
    position: absolute;
    animation: acctAntennaWobble 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.acct-antenna::before {
    content: ''; position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 8px; height: 150px;
    background: rgba(255,255,255,0.35);
    border-radius: 4px;
}
.acct-antenna::after {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255,69,0,0.6);
}
.aa-1 { top: 5%; left: 8%; width: 40px; height: 190px; }
.aa-2 { top: 8%; right: 10%; width: 40px; height: 190px; animation-delay: 1s; }
.aa-3 { bottom: 15%; left: 50%; width: 40px; height: 190px; animation-delay: 2s; }

/* Small subreddit circles — 2.5x */
.acct-sub-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,121,211,0.3);
    border: 4px solid rgba(255,255,255,0.15);
    animation: acctCircleFloat 5s ease-in-out infinite alternate;
}
.asc-1 { bottom: 8%; right: 8%; width: 100px; height: 100px; }
.asc-2 { top: 40%; right: 3%; width: 75px; height: 75px; animation-delay: 1.5s; }


/* ======================
   SLIDE 9 — REDDIT TIME CLOCK (SCALED 2.5x)
   ====================== */

/* Clock face */
.tc-clock-face {
    position: absolute; top: 8%; right: 5%;
    width: 250px; height: 250px;
    border-radius: 50%;
    border: 10px solid rgba(255,69,0,0.5);
    background: rgba(26,26,46,0.6);
    animation: tcClockPulse 4s ease-in-out infinite alternate;
}
.tc-clock-face::before {
    content: ''; position: absolute;
    top: 20px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 30px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    box-shadow:
        0 170px 0 rgba(255,255,255,0.5),
        -85px 85px 0 rgba(255,255,255,0.3),
        85px 85px 0 rgba(255,255,255,0.3);
}
.tc-clock-face::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 25px; height: 25px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,69,0,0.6);
}

/* Hour hand */
.tc-hour-hand {
    position: absolute; top: calc(8% + 125px); right: calc(5% + 120px);
    width: 10px; height: 70px;
    background: #FF4500;
    border-radius: 5px;
    transform-origin: bottom center;
    animation: tcHourSpin 12s linear infinite;
    box-shadow: 0 0 16px rgba(255,69,0,0.5);
}

/* Minute hand */
.tc-minute-hand {
    position: absolute; top: calc(8% + 110px); right: calc(5% + 122px);
    width: 8px; height: 90px;
    background: rgba(255,255,255,0.7);
    border-radius: 4px;
    transform-origin: bottom center;
    animation: tcMinuteSpin 4s linear infinite;
}

/* Snoo antenna on clock — 2.5x */
.tc-snoo-antenna {
    position: absolute; bottom: 12%; left: 6%;
    width: 10px; height: 175px;
    background: rgba(255,255,255,0.4);
    border-radius: 5px;
    animation: snooAntennaFloat 5s ease-in-out infinite alternate;
}
.tc-snoo-antenna::before {
    content: ''; position: absolute;
    top: -30px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255,69,0,0.5);
}


/* ======================
   SLIDE 10 — SORT PREFERENCE (SCALED 2.5x)
   ====================== */

/* Scrolling Feed */
.sort-feed {
    position: absolute;
    background: rgba(26,26,46,0.4);
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.08);
    animation: sortFeedSlide 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.sort-feed::before {
    content: ''; position: absolute;
    top: 25px; left: 25px;
    width: 70%; height: 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 5px;
    box-shadow: 0 30px 0 rgba(255,255,255,0.09),
                0 60px 0 rgba(255,255,255,0.07),
                0 90px 0 rgba(255,255,255,0.05);
}
.sort-feed::after {
    content: ''; position: absolute;
    top: 25px; right: 25px;
    width: 25px; height: 10px;
    background: rgba(255,69,0,0.4);
    border-radius: 5px;
    box-shadow: 0 30px 0 rgba(255,69,0,0.3),
                0 60px 0 rgba(255,69,0,0.2),
                0 90px 0 rgba(255,69,0,0.1);
}
.sf-1 { top: 5%; left: 3%; width: 375px; height: 162px; }
.sf-2 { bottom: 10%; right: 3%; width: 325px; height: 145px; animation-delay: 1.5s; }

/* Upvote sorting — 2.5x */
.sort-upvote {
    position: absolute;
    width: 0; height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(255,69,0,0.5);
    animation: sortArrowBounce 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.su-1 { top: 35%; right: 8%; animation-delay: 0s; }
.su-2 { bottom: 35%; left: 6%; animation-delay: 0.6s; }

/* Downvote sorting — 2.5x */
.sort-downvote {
    position: absolute; top: 20%; left: 70%;
    width: 0; height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 45px solid rgba(113,147,255,0.4);
    animation: sortArrowBounce 3.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s infinite;
}


/* ======================
   SLIDE 11 — CAKE DAY REPORT (SCALED 2.5x)
   ====================== */

/* Cake body */
.cd-cake {
    position: absolute; bottom: 10%; right: 5%;
    width: 300px; height: 175px;
    background: linear-gradient(180deg, rgba(255,69,0,0.5) 0%, rgba(255,69,0,0.3) 100%);
    border-radius: 30px 30px 15px 15px;
    border: 4px solid rgba(255,69,0,0.4);
    animation: cdCakeBob 4s ease-in-out infinite alternate;
}
.cd-cake::before {
    content: ''; position: absolute;
    top: -20px; left: -4px; right: -4px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    border-radius: 20px 20px 0 0;
    border: 4px solid rgba(255,255,255,0.15);
}
.cd-cake::after {
    content: ''; position: absolute;
    top: 50px; left: 25px;
    width: 250px; height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    box-shadow: 0 35px 0 rgba(255,255,255,0.08),
                0 70px 0 rgba(255,255,255,0.05);
}

/* Candles — 2.5x */
.cd-candle {
    position: absolute;
    width: 15px; height: 75px;
    background: rgba(255,214,53,0.7);
    border-radius: 8px 8px 3px 3px;
    animation: cdCandleFlicker 2s ease-in-out infinite;
}
.cd-candle::before {
    content: ''; position: absolute;
    top: -25px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 30px;
    background: radial-gradient(ellipse, #FFD635, #FF4500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: cdFlameWave 1.5s ease-in-out infinite alternate;
}
.cd-c-1 { bottom: calc(10% + 175px); right: calc(5% + 62px); animation-delay: 0s; }
.cd-c-2 { bottom: calc(10% + 175px); right: calc(5% + 138px); animation-delay: 0.3s; }
.cd-c-3 { bottom: calc(10% + 175px); right: calc(5% + 212px); animation-delay: 0.6s; }

/* Reddit alien hat — 2.5x */
.cd-alien-hat {
    position: absolute; top: 6%; left: 5%;
    width: 150px; height: 125px;
    background: rgba(255,69,0,0.3);
    border-radius: 50% 50% 40% 40%;
    border: 6px solid rgba(255,69,0,0.4);
    animation: cdAlienFloat 5s ease-in-out 0.5s infinite alternate;
}
.cd-alien-hat::before {
    content: ''; position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 50px;
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
}
.cd-alien-hat::after {
    content: ''; position: absolute;
    top: -80px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255,69,0,0.5);
}


/* ======================
   SLIDE 12 — ADDICTION SCORE (SCALED 2.5x)
   ====================== */

/* Large background meter glow */
.addict-meter-bg {
    position: absolute; top: 50%; left: 50%;
    width: 875px; height: 875px;
    background: radial-gradient(circle, rgba(255,69,0,0.15), transparent 70%);
    transform: translate(-50%, -50%);
    animation: addictGlow 3s ease-in-out infinite alternate;
}

/* Floating upvote arrows — 2.5x */
.addict-upvote {
    position: absolute;
    width: 0; height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 55px solid rgba(255,69,0,0.5);
    animation: upvoteRise 3.5s linear infinite;
}
.addict-upvote::after {
    content: ''; position: absolute;
    top: 35px; left: -12px;
    width: 25px; height: 30px;
    background: rgba(255,69,0,0.5);
    border-radius: 0 0 8px 8px;
}
.ad-u-1 { left: 6%; bottom: 0; animation-delay: 0s; }
.ad-u-2 { left: 80%; bottom: 0; animation-delay: 1s; animation-duration: 4s; }
.ad-u-3 { left: 45%; bottom: 0; animation-delay: 2s; animation-duration: 3s; }


/* ======================
   SLIDE 13 — PERSONA (SCALED 2.5x)
   ====================== */

/* Radial glow */
.persona-rd-glow {
    position: absolute; top: 50%; left: 50%;
    width: 1000px; height: 1250px;
    background: radial-gradient(circle, rgba(255,69,0,0.18), transparent 70%);
    transform: translate(-50%, -50%);
    animation: personaRdGlow 3s ease-in-out infinite alternate;
}

/* Mini upvote confetti — 2.5x */
.persona-upvote-confetti {
    position: absolute;
    width: 0; height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(255,69,0,0.6);
    animation: confettiSpin 4s ease-in-out infinite;
}
.puc-1 { top: 6%; left: 6%; animation-delay: 0s; }
.puc-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.puc-3 { bottom: 20%; left: 10%; animation-delay: 1s; }
.puc-4 { bottom: 10%; right: 6%; animation-delay: 1.5s; }

/* Mini award medal — 2.5x */
.persona-award {
    position: absolute; top: 30%; left: 3%;
    width: 80px; height: 80px;
    background: radial-gradient(circle, #FFD635 40%, #FFAA00 100%);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(255,214,53,0.4);
    animation: personaAwardFloat 5s ease-in-out infinite alternate;
}
.persona-award::before {
    content: ''; position: absolute;
    bottom: -35px; left: 12px;
    width: 20px; height: 40px;
    background: rgba(255,69,0,0.6);
    border-radius: 0 0 5px 5px;
    transform: rotate(-8deg);
}
.persona-award::after {
    content: ''; position: absolute;
    bottom: -35px; right: 12px;
    width: 20px; height: 40px;
    background: rgba(255,69,0,0.6);
    border-radius: 0 0 5px 5px;
    transform: rotate(8deg);
}

/* Karma pill — 2.5x */
.persona-karma-pill {
    position: absolute; top: 25%; right: 4%;
    width: 175px; height: 65px;
    background: rgba(255,69,0,0.4);
    border-radius: 33px;
    animation: personaPillFloat 4.5s ease-in-out 0.8s infinite alternate;
}
.persona-karma-pill::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40%; height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
}


/* ============================================================
   KEYFRAMES
   ============================================================ */

/* -- Slide 0: Intro -- */
@keyframes introArrowFloat {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-70px) rotate(5deg); }
}
@keyframes snooAntennaFloat {
    0% { transform: translateY(0) rotate(-3deg); }
    100% { transform: translateY(-50px) rotate(3deg); }
}
@keyframes introSpeechFloat {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-60px) rotate(4deg); }
}
@keyframes introDownFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    100% { transform: translateY(40px) rotate(-8deg); opacity: 0.3; }
}

/* -- Slide 1: Numbers -- */
@keyframes karmaPillDrift {
    0% { transform: perspective(600px) rotateY(-6deg) rotateX(2deg) translateY(0); }
    100% { transform: perspective(600px) rotateY(6deg) rotateX(-2deg) translateY(-36px); }
}
@keyframes feedScroll {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-30px) rotate(1deg); }
}
@keyframes numbersUpFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-60px) scale(1.15); }
}

/* -- Slide 2: Subreddit -- */
@keyframes subIconOrbit {
    0% { transform: translateY(0) rotate(-5deg) scale(1); }
    100% { transform: translateY(-50px) rotate(5deg) scale(1.08); }
}
@keyframes threadGrow {
    0% { height: 200px; opacity: 0.5; }
    100% { height: 350px; opacity: 1; }
}

/* -- Slide 3: Top Subreddits -- */
@keyframes topsubCascade {
    0% { transform: translateY(0) rotate(-2deg); opacity: 0.6; }
    50% { transform: translateY(-40px) rotate(1deg); opacity: 1; }
    100% { transform: translateY(-16px) rotate(-1deg); opacity: 0.8; }
}

/* -- Slide 4: Lurker -- */
@keyframes bubbleFloat {
    0% { transform: translateY(0) rotate(-2deg); opacity: 0.7; }
    100% { transform: translateY(-60px) rotate(3deg); opacity: 1; }
}
@keyframes upvoteRise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(-45vh) scale(1.1) rotate(-5deg); opacity: 0.7; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-95vh) scale(0.7) rotate(5deg); opacity: 0; }
}

/* -- Slide 5: Karma -- */
@keyframes karmaRainUp {
    0% { top: 110%; opacity: 0; transform: rotate(0deg); }
    8% { opacity: 0.7; }
    85% { opacity: 0.7; }
    100% { top: -10%; opacity: 0; transform: rotate(-20deg); }
}
@keyframes karmaRainDown {
    0% { top: -10%; opacity: 0; transform: rotate(0deg); }
    8% { opacity: 0.5; }
    85% { opacity: 0.5; }
    100% { top: 110%; opacity: 0; transform: rotate(15deg); }
}
@keyframes awardPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 16px 60px rgba(255,214,53,0.5); }
    50% { transform: scale(1.12); box-shadow: 0 24px 80px rgba(255,214,53,0.7); }
}

/* -- Slide 6: Karma Ratio -- */
@keyframes krBubbleFloat {
    0% { transform: translateY(0) rotate(-3deg); opacity: 0.6; }
    100% { transform: translateY(-50px) rotate(3deg); opacity: 1; }
}
@keyframes krLinkFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-40px) rotate(15deg) scale(1.1); }
}

/* -- Slide 7: Argument -- */
@keyframes argueThreadGrow {
    0% { transform: scaleY(0.6); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 0.8; }
    100% { transform: scaleY(0.8); opacity: 0.5; }
}
@keyframes argueShakeLeft {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(15px); }
    30% { transform: translateX(-10px); }
    45% { transform: translateX(8px); }
    60% { transform: translateX(0); }
}
@keyframes argueShakeRight {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-15px); }
    30% { transform: translateX(10px); }
    45% { transform: translateX(-8px); }
    60% { transform: translateX(0); }
}
@keyframes argueDownSink {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(50px) rotate(10deg); }
}

/* -- Slide 8: Accounts -- */
@keyframes acctAntennaWobble {
    0% { transform: rotate(-6deg); }
    100% { transform: rotate(6deg); }
}
@keyframes acctCircleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

/* -- Slide 9: Time Clock -- */
@keyframes tcClockPulse {
    0% { transform: scale(1); box-shadow: 0 0 40px rgba(255,69,0,0.3); }
    100% { transform: scale(1.05); box-shadow: 0 0 70px rgba(255,69,0,0.45); }
}
@keyframes tcHourSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes tcMinuteSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* -- Slide 10: Sort -- */
@keyframes sortFeedSlide {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-24px) rotate(1deg); }
}
@keyframes sortArrowBounce {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 0.9; }
}

/* -- Slide 11: Cake Day -- */
@keyframes cdCakeBob {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-24px) rotate(1deg); }
}
@keyframes cdCandleFlicker {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.05); }
}
@keyframes cdFlameWave {
    0% { transform: translateX(-50%) rotate(-5deg) scale(1); }
    100% { transform: translateX(-50%) rotate(5deg) scale(1.15); }
}
@keyframes cdAlienFloat {
    0% { transform: translateY(0) rotate(-4deg); }
    100% { transform: translateY(-40px) rotate(4deg); }
}

/* -- Slide 12: Addiction -- */
@keyframes addictGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* -- Slide 13: Persona -- */
@keyframes personaRdGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes confettiSpin {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-70px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.6; }
}
@keyframes personaAwardFloat {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-50px) rotate(5deg); }
}
@keyframes personaPillFloat {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-30px) rotate(3deg); }
}


/* ---- ELEMENT ENTRANCE ANIMATIONS ---- */
@keyframes slideInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideEnter { from { opacity: 0; transform: scale(0.93); } to { opacity: 1; transform: scale(1); } }

.slide.active { animation: slideEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.slide.active .anim-in { animation: slideInUp 0.6s ease both; }

.d1 { animation-delay: 0.1s !important; opacity: 0; }
.d2 { animation-delay: 0.35s !important; opacity: 0; }
.d3 { animation-delay: 0.6s !important; opacity: 0; }
.d4 { animation-delay: 0.85s !important; opacity: 0; }
.d5 { animation-delay: 1.1s !important; opacity: 0; }
.d6 { animation-delay: 1.35s !important; opacity: 0; }
.slide.active .d1, .slide.active .d2, .slide.active .d3,
.slide.active .d4, .slide.active .d5, .slide.active .d6 { animation-fill-mode: both; }

/* ---- MOBILE (scaled down from 2.5x to ~1.5x on small screens) ---- */
@media (max-width: 480px) {
    .s-big-num { font-size: clamp(3rem, 12vw, 5rem); }
    .s-next { bottom: 2.5rem; }
    .intro-upvote { border-left-width: 38px; border-right-width: 38px; border-bottom-width: 58px; }
    .intro-snoo-antenna { height: 110px; }
    .intro-speech { width: 140px; height: 82px; }
    .numbers-feed { width: 190px; height: 120px; }
    .sub-icon.si-1 { width: 95px; height: 95px; }
    .sub-icon.si-2 { width: 80px; height: 80px; }
    .sub-icon.si-3 { width: 65px; height: 65px; }
    .karma-award { width: 80px; height: 80px; }
    .karma-arrow-up { border-left-width: 26px; border-right-width: 26px; border-bottom-width: 42px; }
    .karma-arrow-down { border-left-width: 19px; border-right-width: 19px; border-top-width: 30px; }
    .sort-feed.sf-1 { width: 200px; height: 90px; }
    .sort-feed.sf-2 { width: 175px; height: 80px; }
    .tc-clock-face { width: 140px; height: 140px; }
    .cd-cake { width: 170px; height: 95px; }
    .s-split { flex-direction: column; gap: 0.5rem; }
    .s-split-vs { display: none; }
    .lurker-bubble.lb-1 { width: 155px; height: 78px; }
    .lurker-bubble.lb-2 { width: 130px; height: 70px; }
    .lurker-bubble.lb-3 { width: 110px; height: 60px; }
    .topsub-pill.tp-1 { width: 170px; height: 50px; }
    .topsub-pill.tp-2 { width: 150px; height: 46px; }
    .topsub-pill.tp-3 { width: 180px; height: 52px; }
    .topsub-pill.tp-4 { width: 140px; height: 44px; }
    .topsub-pill.tp-5 { width: 160px; height: 48px; }
    .argue-bubble-left { width: 145px; height: 80px; }
    .argue-bubble-right { width: 128px; height: 70px; }
    .acct-antenna .aa-1 { height: 105px; }
    .cd-alien-hat { width: 85px; height: 70px; }
    .persona-rd-glow { width: 80vw; height: 85vh; }
    .persona-award { width: 60px; height: 60px; }
    .persona-karma-pill { width: 130px; height: 48px; }
    .addict-meter-bg { width: 80vw; height: 80vw; max-width: 400px; max-height: 400px; }
    .kr-speech-bubble.kr-sb-1 { width: 175px; height: 88px; }
    .kr-speech-bubble.kr-sb-2 { width: 148px; height: 78px; }
    .kr-link-icon.kr-li-1 { width: 75px; height: 75px; }
    .kr-link-icon.kr-li-2 { width: 64px; height: 64px; }
}

/* ---- SMALL MOBILE ---- */
@media (max-width: 360px) {
    .intro-upvote { border-left-width: 28px; border-right-width: 28px; border-bottom-width: 44px; }
    .intro-speech { width: 105px; height: 62px; }
    .numbers-feed { width: 142px; height: 90px; }
    .sub-icon.si-1 { width: 71px; height: 71px; }
    .karma-award { width: 60px; height: 60px; }
    .sort-feed.sf-1 { width: 150px; height: 68px; }
    .sort-feed.sf-2 { width: 131px; height: 60px; }
    .cd-cake { width: 128px; height: 71px; }
    .lurker-bubble.lb-1 { width: 116px; height: 58px; }
    .argue-bubble-left { width: 109px; height: 60px; }
    .argue-bubble-right { width: 96px; height: 53px; }
    .persona-rd-glow { width: 75vw; height: 80vh; }
    .persona-award { width: 45px; height: 45px; }
    .persona-karma-pill { width: 98px; height: 36px; }
    .addict-meter-bg { width: 75vw; height: 75vw; }
    .topsub-pill.tp-1 { width: 128px; height: 38px; }
    .topsub-pill.tp-3 { width: 135px; height: 39px; }
    .cd-alien-hat { width: 64px; height: 53px; }
}
