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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-main: #0b0f19;
    --surface: rgba(26, 32, 53, 0.6);
    --surface-hover: rgba(35, 43, 68, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #f43f5e;
    /* Rose / Crimson */
    --primary-glow: rgba(244, 63, 94, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --radius-lg: 16px;
    --radius-md: 12px;
}

body {
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(244, 63, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    color: var(--text-main);
    overflow-x: hidden;
}

/* HERO SECTION FOR WEBVIEW / APP */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    /* space for nav */
}

.app-layout {
    width: 100%;
    max-width: 900px;
    /* Matches FAQ and other sections */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-header {
    text-align: center;
    padding: 10px 0 0;
}

.app-title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.app-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Glassmorphism Surface Base */
.glass-panel {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Common block styles */
.block-odds,
.block-game,
.input-player,
.btn-connect,
.btn-full,
.btn-lang {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

/* ODDS BLOCK */
.block-odds {
    padding: 10px 16px 8px 16px;
    /* slightly less bottom padding to perfectly visually center */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.odds-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.odds-history {
    display: flex;
    align-items: center;
    width: max-content;
    /* perfectly centers when not overflowing */
    max-width: 100%;
    margin: 0 auto;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0;
}

.odds-history::-webkit-scrollbar {
    display: none;
}

.server-odds-notice {
    font-size: 9px;
    font-weight: 600;
    color: rgba(250, 204, 21, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(250, 204, 21, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.15);
    border-radius: 4px;
}

.server-odds-notice::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #facc15;
    box-shadow: 0 0 4px #facc15;
}

.odd {
    padding: 6px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.odd.empty {
    color: #475569;
}

.odd.low {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
}

.odd.mid {
    color: #c084fc;
    border-color: rgba(192, 132, 252, 0.3);
    background: rgba(192, 132, 252, 0.05);
}

.odd.high {
    color: var(--primary);
    border-color: var(--primary-glow);
    background: rgba(244, 63, 94, 0.05);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
        filter: brightness(2);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: brightness(1);
    }
}

.slide-in-left {
    animation: slideInLeft 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes shiftRight {
    0% {
        transform: translateX(calc(-100% - 8px));
    }

    100% {
        transform: translateX(0);
    }
}

.shift-right {
    animation: shiftRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* MAIN GAME AREA (ANALYTICS READOUT) */
.block-game {
    height: 240px;
    /* Serious, compact readout */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.3) 0%, transparent 100%);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

/* Subtle grid inside the readout to look like analytics */
.block-game::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 20px 20px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 2px, transparent 2px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    z-index: 0;
}

/* Subtle grid inside the readout to look like analytics */
.block-game::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 20px 20px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 2px, transparent 2px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    z-index: 0;
}

@keyframes twinkleFade {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    /* Lower opacity */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    animation: twinkleFade 2s ease-in-out forwards;
    pointer-events: none;
    z-index: 0;
}

.grid-line.horizontal {
    width: 100%;
    height: 2px;
    left: 0;
}

.grid-line.vertical {
    height: 100%;
    width: 2px;
    top: 0;
}

/* ML HUD STYLES */
.hud-top-left {
    position: absolute;
    top: 12px;
    z-index: 10;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    /* Made smaller */
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 16px;
    text-align: left;
    opacity: 0.7;
}

.hud-stat {
    letter-spacing: 1px;
}

.hud-val {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.hud-val.text-green {
    color: #10b981;
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
}

.multiplier-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 42px;
    /* Medium size */
    font-weight: 800;
    color: var(--text-main);
    z-index: 1;
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(244, 63, 94, 0.15);
    opacity: 0.6;
}

@keyframes slowBlink {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(244, 63, 94, 0.8) 0%, rgba(225, 29, 72, 0.4) 100%);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
    z-index: 1;
    transition: width 1s linear;
}

.progress-text {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SYSTEM STATUS CONSOLE */
.block-console {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.console-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    /* red unauthorized */
}

.status-indicator.orange {
    color: #facc15;
}

.status-indicator.green {
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    /* Removed animation so it doesn't look like a loading state */
}

.status-indicator.orange .status-dot {
    background-color: #facc15;
    box-shadow: 0 0 8px #facc15;
}

.status-indicator.green .status-dot {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.countdown-highlight {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.console-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-line {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid #3b82f6;
    padding: 14px 16px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 4px;
}

.log-time {
    color: #94a3b8;
    margin-right: 8px;
    font-weight: 700;
}

/* DESKTOP GRID WRAPPER (Mobile is default flex column) */
.desktop-action-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ACTION ROW (Mobile) */
.block-action-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.info-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.2s ease, filter 0.2s ease;
}

.input-player:focus~.info-icon {
    color: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.input-player {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 48px 18px 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    outline: none;
    text-align: left;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.fake-placeholder {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    pointer-events: none;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.blinking-cursor {
    animation: cursorBlink 1s step-end infinite;
    color: inherit;
    font-weight: inherit;
    margin-left: 2px;
}

.input-player:focus~.fake-placeholder,
.input-player:valid~.fake-placeholder {
    display: none;
}

.input-player:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 1px #10b981, 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-connect {
    flex: 1;
    min-width: 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    border-radius: var(--radius-md);
}

.btn-connect:hover {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-register {
    flex: 1;
    min-width: 0;
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-main);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    transition: all 0.2s ease;
    backdrop-filter: blur(12px);
}

.btn-register:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* REGISTER & HOW IT WORKS */
.btn-full {
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    background: var(--surface);
}

.btn-full:hover {
    background: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-full:last-of-type {
    text-transform: none;
    /* How it works? */
    color: var(--text-muted);
    font-weight: 600;
    font-size: 20px;
}

/* DESKTOP SPECIFIC OVERRIDES */
@media (min-width: 769px) {
    .desktop-action-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
        /* 20px rows, 12px columns */
    }

    .block-action-row {
        display: contents;
        /* Flattens children into the grid */
    }

    .input-wrapper {
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .btn-connect {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .btn-full {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .btn-register {
        grid-column: 2 / 3;
        grid-row: 2;
    }
}

/* BOTTOM SECTION & FLAGS */
.block-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto;
}

.lang-selector {
    position: relative;
}

.btn-lang-current {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-lang-current:hover {
    background: var(--surface-hover);
}

.btn-lang-current .arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.lang-selector.open .arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111827;
    /* Solid dark background for dropdown so it doesn't blur everything messily */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.lang-selector.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.btn-lang-option {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.1s;
}

.btn-lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .app-layout {
        padding: 16px;
        gap: 16px;
    }

    .block-game {
        height: 180px;
    }

    .multiplier-text {
        font-size: 36px;
        /* Medium size for mobile */
    }

    .block-action-row {
        gap: 6px;
    }

    .input-player {
        width: 100%;
        font-size: 16px;
        padding: 16px 40px 16px 14px;
    }

    .fake-placeholder {
        font-size: 16px;
        left: 14px;
    }

    .btn-connect,
    .btn-register {
        flex: 1;
        padding: 16px 0;
        font-size: 14px;
    }

    .btn-full {
        padding: 14px;
        font-size: 18px;
    }
}

/* BROWSER ONLY SECTIONS */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
}

.menu-toggle svg {
    transition: stroke 0.2s;
}

.menu-toggle:hover svg {
    stroke: var(--primary);
}

.nav-container {
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.browser-section {
    padding: 100px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.browser-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.faq-grid,
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: var(--surface-hover);
}

.card h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.site-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px;
    margin-top: 80px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-main);
}

/* RESPONSIVE NAV BAR & MARKETING SECTIONS */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    .browser-section {
        padding: 60px 20px;
    }

    .browser-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Multiplier Loader Animation */
.multiplier-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
}

.multiplier-loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: loaderPulse 1.2s infinite ease-in-out both;
}

.multiplier-loader span:nth-child(1) {
    animation-delay: -0.32s;
    background-color: #3b82f6;
    /* premium blue */
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.multiplier-loader span:nth-child(2) {
    animation-delay: -0.16s;
    background-color: #a855f7;
    /* premium purple */
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.multiplier-loader span:nth-child(3) {
    background-color: #f43f5e;
    /* premium rose */
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
}

@keyframes loaderPulse {

    0%,
    80%,
    100% {
        transform: scale(0.4);
        opacity: 0.3;
    }

    40% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.game-status-label {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f43f5e;
    /* Rose / Crimson */
    text-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.demo-mode-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 100;
    pointer-events: none;
    text-transform: uppercase;
}

.game-status-label.flew-away {
    animation: flewAwayPulse 0.5s infinite alternate;
}

@keyframes flewAwayPulse {
    from {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}