/* Tap Universe - Space Theme Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #030308;
}

:root {
    --bg-top: #050510;
    --bg-bottom: #0d0520;
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    --accent-orange: #f97316;
    --accent-green: #22c55e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 50%, #030308 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.nebula {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.nebula-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    opacity: 0.08;
    top: -200px;
    right: -200px;
}

.nebula-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    opacity: 0.05;
    bottom: 30%;
    left: -150px;
}

.nebula-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    opacity: 0.04;
    top: 50%;
    right: 10%;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0 40px;
    min-height: 90vh;
}

.hero-left {
    flex: 1;
    max-width: 480px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.tagline {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Live Stats */
.live-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.download-btn.large {
    padding: 20px 40px;
    font-size: 19px;
}

.apple-logo {
    width: 22px;
    height: 22px;
}

.free-badge {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   INTERACTIVE DEMO
   ============================================ */

.hero-demo {
    flex-shrink: 0;
}

.demo-container {
    width: 320px;
    height: 520px;
    background: linear-gradient(180deg, #0a1628 0%, #0d0520 100%);
    border-radius: 40px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.demo-container.milestone-flash {
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-header {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: none;
}

.demo-badge {
    font-size: 11px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-switch-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-switch-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.demo-milestone {
    font-size: 64px;
    margin-top: 40px;
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.demo-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.demo-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.demo-counter {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    margin-bottom: 20px;
}

.demo-progress-container {
    width: 100%;
    margin-bottom: auto;
}

.demo-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 3px;
    transition: width 0.2s ease, background 0.3s ease;
}

.demo-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 16px;
}

/* Tap Button */
.demo-tap-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.8), rgba(0, 212, 255, 0.4) 50%, rgba(168, 85, 247, 0.3));
    cursor: pointer;
    position: relative;
    transition: transform 0.1s ease;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.demo-tap-btn:hover {
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.demo-tap-btn.tapped {
    transform: scale(0.92);
}

.tap-emoji {
    font-size: 48px;
    position: relative;
    z-index: 1;
}

/* Speed Tap Mode */
.speed-timer {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.speed-btn {
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.8), rgba(168, 85, 247, 0.4) 50%, rgba(0, 212, 255, 0.3));
    box-shadow: 
        0 0 40px rgba(168, 85, 247, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.speed-btn:hover {
    box-shadow: 
        0 0 60px rgba(168, 85, 247, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Reaction Mode */
.reaction-area {
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reaction-start-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 32px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reaction-start-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.reaction-target {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    animation: targetPop 0.2s ease-out;
    transition: transform 0.1s ease;
}

.reaction-target:hover {
    transform: scale(1.1);
}

.reaction-target.good {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.reaction-target.bomb {
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
}

.reaction-target.hit-good {
    animation: hitGood 0.2s ease-out forwards;
}

.reaction-target.hit-bomb {
    animation: hitBomb 0.2s ease-out forwards;
}

.reaction-target.missed {
    animation: missed 0.3s ease-out forwards;
}

@keyframes targetPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes hitGood {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes hitBomb {
    0% { transform: scale(1); opacity: 1; background: rgba(255, 0, 0, 0.3); border-radius: 50%; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes missed {
    0% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Leaderboard Mode */
.leaderboard-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: auto;
}

.lb-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.lb-row.gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.lb-row.silver {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
}

.lb-row.bronze {
    background: rgba(205, 127, 50, 0.08);
    border-color: rgba(205, 127, 50, 0.2);
}

.lb-medal {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.lb-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-level {
    font-size: 12px;
    color: var(--accent-purple);
    font-weight: 500;
}

.lb-xp {
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.lb-footer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

.lb-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

.tap-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 0;
}

.tap-ripple.active {
    animation: ripple 0.4s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Particles */
.demo-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.tap-particle {
    position: absolute;
    font-size: 20px;
    animation: tapParticle 0.6s ease-out forwards;
}

@keyframes tapParticle {
    0% { 
        opacity: 1; 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    100% { 
        opacity: 0; 
        transform: translate(var(--tx), var(--ty)) scale(0.5) rotate(180deg); 
    }
}

.celebration-particle {
    position: absolute;
    font-size: 24px;
    bottom: 50%;
    animation: celebrate 1s ease-out forwards;
}

@keyframes celebrate {
    0% { 
        opacity: 1; 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(calc(-1 * var(--distance))) rotate(360deg) scale(0.3); 
    }
}

/* ============================================
   LIVE TICKER
   ============================================ */

.live-ticker {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    margin-bottom: 60px;
    overflow: hidden;
}

.ticker-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
}

.ticker-content::-webkit-scrollbar {
    display: none;
}

.ticker-item {
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.ticker-score {
    color: var(--accent-cyan);
    font-weight: 600;
}

.ticker-divider {
    color: var(--text-muted);
}

.ticker-loading {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   GAME MODES
   ============================================ */

.game-modes {
    padding: 60px 0;
}

.game-modes h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mode-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-4px);
}

.mode-card.journey:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
}

.mode-card.challenge:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.15);
}

/* Mode Visuals */
.mode-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.mode-orbit {
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mode-planet {
    font-size: 40px;
    position: absolute;
}

.mode-rocket {
    font-size: 28px;
    position: absolute;
    animation: orbit 8s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.challenge-icons {
    display: flex;
    gap: 12px;
}

.challenge-icon {
    font-size: 32px;
    animation: bounce-icon 2s ease-in-out infinite;
}

.challenge-icon.c1 { animation-delay: 0s; }
.challenge-icon.c2 { animation-delay: 0.2s; }
.challenge-icon.c3 { animation-delay: 0.4s; }
.challenge-icon.c4 { animation-delay: 0.6s; }

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mode-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.mode-card > p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mode-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mode-features li {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES
   ============================================ */

.features {
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-label {
    display: inline-block;
    font-size: 13px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(168, 85, 247, 0.08));
    border-color: rgba(0, 212, 255, 0.2);
}

.feature-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 36px;
    position: relative;
    z-index: 1;
}

.feature-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.feature-glow.cyan { background: var(--accent-cyan); }
.feature-glow.purple { background: var(--accent-purple); }
.feature-glow.orange { background: var(--accent-orange); }

.feature-card:hover .feature-glow {
    opacity: 0.6;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 80px 0 120px;
}

.cta-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--card-border);
    padding: 32px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.legal-page p, .legal-page li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--accent-cyan);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    margin-bottom: 32px;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0 40px;
        min-height: auto;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .live-stats {
        justify-content: center;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-container {
        width: 280px;
        height: 460px;
    }
    
    .demo-milestone {
        font-size: 52px;
    }
    
    .demo-counter {
        font-size: 44px;
    }
    
    .demo-tap-btn {
        width: 100px;
        height: 100px;
    }
    
    .tap-emoji {
        font-size: 40px;
    }
    
    .reaction-area {
        height: 150px;
    }
    
    .reaction-target {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    
    .lb-row {
        padding: 8px 10px;
    }
    
    .lb-name {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .live-stats {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .live-ticker {
        flex-direction: row;
        border-radius: 20px;
        padding: 12px 16px;
        gap: 12px;
    }
    
    .ticker-label {
        font-size: 13px;
    }
    
    .ticker-content {
        padding-right: 16px;
    }
}
