@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --bg-dark: #0b0d11;
    --bg-card: #12151c;
    --bg-card-light: #181c25;
    --border: #1c2030;
    --border-light: #252a38;
    --blue: #0095ff;
    --blue-light: #3db5ff;
    --blue-dark: #0070cc;
    --blue-glow: rgba(0, 149, 255, 0.25);
    --orange: #ff6b2c;
    --orange-light: #ff8c55;
    --orange-dark: #e05a1e;
    --orange-glow: rgba(255, 107, 44, 0.2);
    --green: #2dd4a0;
    --green-dark: #1a9a6e;
    --red: #ff4757;
    --text-white: #f0f2f5;
    --text-primary: #c8cdd6;
    --text-secondary: #6b7385;
    --text-muted: #3e4455;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    padding-bottom: 24px;
    overflow-x: hidden;
}

#app { max-width: 480px; margin: 0 auto; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseBtn {
    0% { box-shadow: 0 4px 20px var(--orange-glow), 0 0 0 0 rgba(255,107,44,0.3); }
    70% { box-shadow: 0 4px 20px var(--orange-glow), 0 0 0 12px rgba(255,107,44,0); }
    100% { box-shadow: 0 4px 20px var(--orange-glow), 0 0 0 0 rgba(255,107,44,0); }
}
@keyframes tapeMove {
    0% { background-position: 0 0; }
    100% { background-position: 22.6px 0; }
}
@keyframes ticketPop {
    0% { transform: scale(0) rotate(-8deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes glowLine {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}
@keyframes numberPop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes floatSlow {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
@keyframes floatMed {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}
@keyframes confettiFall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.screen { animation: fadeIn 0.35s ease; }

.card {
    background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border-radius: 18px;
    padding: 22px;
    margin: 10px 16px;
    border: 1px solid var(--border);
    animation: fadeInUp 0.45s ease both;
    position: relative;
    overflow: hidden;
}
.card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
    animation: glowLine 3s ease infinite;
}
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.06s; }
.card:nth-child(3) { animation-delay: 0.12s; }
.card:nth-child(4) { animation-delay: 0.18s; }
.card:nth-child(5) { animation-delay: 0.24s; }
.card:nth-child(6) { animation-delay: 0.30s; }
.card:nth-child(7) { animation-delay: 0.36s; }

.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(180deg, #0f1218 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border);
}
.hero-image {
    width: 100%; height: 180px;
    object-fit: cover; display: block;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 70%, transparent 100%);
}
.hero-overlay {
    padding: 12px 20px 16px;
    margin-top: -30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.hero-bg-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; overflow: hidden;
}
.hero-bg-el { position: absolute; opacity: 0.045; }
.hero-bg-el:nth-child(1) { top: 8%; left: 6%; font-size: 28px; animation: floatSlow 6s ease-in-out infinite; }
.hero-bg-el:nth-child(2) { top: 55%; right: 8%; font-size: 24px; animation: floatMed 5s ease-in-out infinite 0.5s; }
.hero-bg-el:nth-child(3) { bottom: 10%; left: 12%; font-size: 20px; animation: floatSlow 7s ease-in-out infinite 1s; }
.hero-bg-el:nth-child(4) { top: 15%; right: 15%; font-size: 18px; animation: floatMed 5.5s ease-in-out infinite 0.8s; }
.hero-bg-el:nth-child(5) { bottom: 25%; right: 4%; font-size: 22px; animation: floatSlow 6.5s ease-in-out infinite 1.5s; }
.hero-bg-el:nth-child(6) { top: 40%; left: 3%; font-size: 16px; animation: floatMed 5s ease-in-out infinite 0.3s; }

.gwt-logo { position: relative; z-index: 2; margin-bottom: 2px; }
.gwt-logo-text {
    font-size: 64px; font-weight: 900; letter-spacing: 14px;
    color: transparent;
    background: linear-gradient(180deg,
        rgba(200,205,215,0.38) 0%,
        rgba(150,158,175,0.28) 35%,
        rgba(110,118,135,0.18) 65%,
        rgba(80,86,100,0.1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; display: inline-block; user-select: none;
}

.hero-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 6px 0 8px; position: relative; z-index: 2;
}
.hero-divider-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    animation: lineExpand 0.8s ease 0.3s both;
}
.hero-divider-dot {
    width: 4px; height: 4px;
    background: var(--blue); border-radius: 50%;
    box-shadow: 0 0 8px var(--blue-glow);
}
.hero-title {
    font-size: 18px; font-weight: 800; color: var(--text-white);
    text-transform: uppercase; letter-spacing: 4px;
    animation: fadeInUp 0.5s ease 0.15s both;
    position: relative; z-index: 2;
}
.hero-subtitle {
    font-size: 10px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 5px;
    margin-top: 5px; font-weight: 600;
    position: relative; z-index: 2;
}

.timer-card { text-align: center; background: linear-gradient(165deg, #111520, #161b28); }
.timer-label {
    font-size: 10px; color: var(--text-secondary);
    margin-bottom: 16px; text-transform: uppercase;
    letter-spacing: 4px; font-weight: 700;
}
.timer {
    display: flex; justify-content: center;
    gap: 8px; margin-bottom: 16px;
}
.timer-block {
    background: var(--bg-dark); border-radius: 14px;
    padding: 14px 12px 10px; min-width: 68px;
    text-align: center; border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.timer-block::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-dark));
}
.timer-number {
    display: block; font-size: 32px; font-weight: 900;
    color: var(--text-white); line-height: 1;
    animation: numberPop 0.5s ease;
}
.timer-text {
    display: block; font-size: 8px; color: var(--text-muted);
    margin-top: 6px; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700;
}

.progress-bar-container {
    background: #0a0c10; border-radius: 8px; height: 14px;
    overflow: hidden; border: 1px solid var(--border); position: relative;
}
.progress-bar {
    background: repeating-linear-gradient(-45deg,
        var(--blue), var(--blue) 8px,
        var(--blue-dark) 8px, var(--blue-dark) 16px
    );
    background-size: 22.6px 100%;
    animation: tapeMove 1.3s linear infinite;
    height: 100%; border-radius: 7px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    box-shadow: 0 0 12px var(--blue-glow);
    position: relative;
}
.progress-bar::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    border-radius: 7px;
}
.progress-percent {
    text-align: center; font-size: 10px; font-weight: 700;
    color: var(--text-secondary); margin-top: 6px; letter-spacing: 1px;
}

.description-text { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }

.btn {
    display: block; width: 100%; padding: 16px; border: none;
    border-radius: 14px; font-size: 14px; font-weight: 800;
    cursor: pointer; text-align: center; text-decoration: none;
    margin-top: 12px; transition: all 0.15s ease;
    text-transform: uppercase; letter-spacing: 1.5px;
    position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff; box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-secondary {
    background: transparent; color: var(--blue);
    border: 2px solid var(--border-light);
}
.btn-secondary:active { background: rgba(0,149,255,0.06); border-color: var(--blue); }
.btn-large {
    padding: 22px; font-size: 16px; letter-spacing: 2px;
    animation: pulseBtn 2.5s infinite; border-radius: 16px;
}

.participants-count {
    text-align: center; font-size: 14px;
    color: var(--text-secondary); margin-bottom: 16px; font-weight: 600;
}

.status-badge {
    background: linear-gradient(135deg, #0a1e18, #0e2a1f);
    color: var(--green); padding: 16px; border-radius: 14px;
    text-align: center; font-size: 15px; font-weight: 800;
    margin-bottom: 18px; border: 1px solid var(--green-dark);
    text-transform: uppercase; letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(45,212,160,0.08);
}
.tickets-section {
    text-align: center;
    padding-top: 8px;
}
.tickets-label {
    font-size: 17px; margin-bottom: 10px;
    font-weight: 800; color: var(--text-white);
}
.tickets-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; margin-bottom: 16px;
}
.ticket {
    background: var(--bg-dark); border-radius: 10px;
    padding: 10px 16px; font-size: 13px; text-align: center;
    min-width: 70px; font-weight: 700;
    animation: ticketPop 0.4s ease both;
}
.ticket:nth-child(1) { animation-delay: 0.1s; }
.ticket:nth-child(2) { animation-delay: 0.2s; }
.ticket:nth-child(3) { animation-delay: 0.25s; }
.ticket:nth-child(4) { animation-delay: 0.3s; }
.ticket:nth-child(5) { animation-delay: 0.35s; }
.ticket-base {
    border: 1px solid var(--blue); color: var(--blue-light);
    box-shadow: 0 0 12px var(--blue-glow);
}
.ticket-bonus {
    border: 1px solid var(--orange); color: var(--orange-light);
    box-shadow: 0 0 12px var(--orange-glow);
}
.chance-text {
    text-align: center; font-size: 12px; color: var(--text-muted);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; margin-top: 4px;
}

.referral-title {
    font-size: 16px; font-weight: 900; margin-bottom: 4px;
    color: var(--text-white); text-transform: uppercase; letter-spacing: 1px;
}
.referral-subtitle {
    font-size: 13px; color: var(--text-secondary); margin-bottom: 14px;
}
.referral-stats {
    display: flex; justify-content: space-around;
    margin: 20px 0; padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ref-stat { text-align: center; animation: fadeInUp 0.5s ease both; }
.ref-stat:nth-child(1) { animation-delay: 0.1s; }
.ref-stat:nth-child(2) { animation-delay: 0.2s; }
.ref-stat:nth-child(3) { animation-delay: 0.3s; }
.ref-stat-number {
    display: block; font-size: 30px; font-weight: 900; color: var(--blue);
}
.ref-stat-label {
    display: block; font-size: 9px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 700; margin-top: 6px;
}
.progress-section { margin-top: 16px; }
.progress-label {
    font-size: 10px; color: var(--text-secondary);
    margin-bottom: 10px; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700;
}
.progress-text {
    font-size: 12px; color: var(--text-secondary);
    margin-top: 8px; text-align: center; font-weight: 700;
}

.error-text {
    color: var(--red); text-align: center;
    margin-top: 12px; font-size: 13px; font-weight: 700;
}
.channel-link { color: var(--blue); text-decoration: none; font-weight: 800; }

.channels-list {
    margin: 12px 0; text-align: left;
}
.channel-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; margin: 6px 0;
    background: var(--bg-dark); border-radius: 10px;
    border: 1px solid var(--border);
}
.channel-item-icon { font-size: 18px; }
.channel-item-name { color: var(--blue); font-weight: 700; font-size: 14px; }

.rules-card { cursor: pointer; transition: border-color 0.2s; }
.rules-card:active { border-color: var(--blue); }
.rules-header {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-secondary);
}
.rules-arrow { transition: transform 0.3s; color: var(--blue); font-size: 11px; }
.rules-arrow.open { transform: rotate(180deg); }
.rules-content {
    margin-top: 13px; font-size: 13px; line-height: 1.9;
    color: var(--text-secondary); animation: fadeInUp 0.25s ease;
}

.footer {
    text-align: center; padding: 28px; font-size: 10px;
    color: var(--text-muted); font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
}

.captcha-card { text-align: center; margin-top: 28vh; }
.captcha-icon { font-size: 48px; margin-bottom: 16px; }
.captcha-subtitle {
    color: var(--text-secondary); margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 11px; font-weight: 700;
}
.captcha-question {
    font-size: 30px; font-weight: 900;
    margin-bottom: 20px; color: var(--text-white);
}
.captcha-input {
    width: 140px; padding: 16px; border: 2px solid var(--border);
    border-radius: 14px; background: var(--bg-dark);
    color: var(--text-white); font-size: 24px; font-weight: 800;
    text-align: center; margin: 0 auto 16px; display: block;
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.captcha-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-glow); }

.confetti-container {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; z-index: 999; overflow: hidden;
}
.confetti-piece {
    position: absolute; top: -20px;
    width: 10px; height: 10px; border-radius: 2px;
    animation: confettiFall linear forwards;
}

.overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
    z-index: 100; display: flex; align-items: flex-end;
    justify-content: center; animation: fadeIn 0.2s ease;
}
.bottom-sheet {
    background: linear-gradient(160deg, var(--bg-card), var(--bg-card-light));
    border-radius: 24px 24px 0 0; padding: 24px;
    width: 100%; max-width: 480px; max-height: 85vh;
    overflow-y: auto; border: 1px solid var(--border);
    border-bottom: none; animation: slideUp 0.3s ease;
}
.sheet-handle {
    width: 36px; height: 4px; background: var(--border-light);
    border-radius: 2px; margin: 0 auto 20px;
}
.share-steps {
    margin: 16px 0; line-height: 2.4;
    color: var(--text-secondary); font-weight: 600; font-size: 14px;
}
.share-link-label {
    font-size: 10px; color: var(--text-muted); margin-top: 20px;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
}
.share-link-box {
    display: flex; align-items: center; background: var(--bg-dark);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 14px; margin-top: 8px; gap: 10px;
}
.ref-link-text {
    flex: 1; font-size: 12px; color: var(--blue-light);
    word-break: break-all; font-weight: 700;
}
.btn-copy {
    background: var(--border-light); border: none;
    border-radius: 10px; padding: 10px 14px;
    cursor: pointer; font-size: 16px; transition: all 0.2s;
}
.btn-copy:active { background: var(--orange); transform: scale(0.95); }
.copy-success {
    color: var(--green); text-align: center; font-size: 13px;
    margin-top: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; animation: fadeInUp 0.3s ease;
}

.finished-card { text-align: center; margin-top: 18vh; }
.finished-icon { font-size: 56px; margin-bottom: 16px; }
.finished-text {
    color: var(--text-secondary); margin: 16px 0;
    font-weight: 700; font-size: 14px;
}
.finished-thanks {
    color: var(--text-muted); margin-top: 16px; font-size: 12px;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* === TOP PARTICIPANTS === */
.top-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.top-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.top-row:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(4px);
}

.top-rank {
    font-size: 18px;
    font-weight: 900;
    min-width: 36px;
    text-align: center;
}

.top-medal {
    font-size: 22px;
    min-width: 36px;
    text-align: center;
}

.top-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-tickets {
    font-size: 13px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    white-space: nowrap;
}

/* Золото */
.top-row-1 {
    background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,180,0,0.05));
    border: 1px solid rgba(255,215,0,0.3);
}
.top-row-1 .top-name {
    color: #FFD700;
    font-size: 15px;
}
.top-row-1 .top-tickets {
    background: rgba(255,215,0,0.15);
    color: #FFD700;
}

/* Серебро */
.top-row-2 {
    background: linear-gradient(135deg, rgba(192,192,192,0.10), rgba(192,192,192,0.03));
    border: 1px solid rgba(192,192,192,0.25);
}
.top-row-2 .top-name {
    color: #C0C0C0;
}
.top-row-2 .top-tickets {
    background: rgba(192,192,192,0.12);
    color: #C0C0C0;
}

/* Бронза */
.top-row-3 {
    background: linear-gradient(135deg, rgba(205,127,50,0.10), rgba(205,127,50,0.03));
    border: 1px solid rgba(205,127,50,0.25);
}
.top-row-3 .top-name {
    color: #CD7F32;
}
.top-row-3 .top-tickets {
    background: rgba(205,127,50,0.12);
    color: #CD7F32;
}

/* Остальные */
.top-rank-default {
    color: var(--text-muted);
    font-size: 14px;
}

/* === STORIES === */
.story-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
}
.story-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.25), transparent);
    animation: glowLine 3s ease infinite;
}

.story-tape {
    position: absolute;
    top: 0; left: -20px; right: -20px;
    height: 10px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(245,158,11,0.15) 0px,
        rgba(245,158,11,0.15) 8px,
        transparent 8px,
        transparent 16px
    );
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.story-tape-bot {
    top: auto;
    bottom: 0;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0 16px;
}
.story-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.story-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.story-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 2px;
}

.story-rules {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.story-rule-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}
.story-rule-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

.story-btn {
    background: linear-gradient(135deg, #b45309, #92400e) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(180, 83, 9, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
}

.story-status-box {
    text-align: center;
    padding: 20px;
    margin-top: 12px;
    background: var(--bg-dark);
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}

.story-status-pending {
    border-color: #991b1b !important;
    animation: storyPulse 2s ease infinite;
}

.story-status-approved {
    border-color: var(--green) !important;
    background: rgba(45, 212, 160, 0.04) !important;
}

@keyframes storyPulse {
    0% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.25); }
    70% { box-shadow: 0 0 0 10px rgba(185, 28, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

.story-timer-display {
    font-size: 28px;
    font-weight: 900;
    color: #ef4444;
    margin: 8px 0;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}