/* =============================================================================
   BETA BANNER — Sitewide notice for the beta phase
   Used on community, profile, forums, post, games, trivia, matrix-dodger,
   and debt-clock-racer pages. Self-contained: no dependency on other CSS.
   ============================================================================= */

.beta-banner {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0 20px;
    box-sizing: border-box;
}

.beta-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.14), rgba(255, 85, 85, 0.04));
    border: 1px solid rgba(255, 85, 85, 0.35);
    border-left: 4px solid #ff5555;
    border-radius: 6px;
    padding: 12px 18px;
    color: #eaeaea;
}

.beta-banner-tag {
    display: inline-block;
    background: #ff5555;
    color: #0a0a0a;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 85, 85, 0.4);
}

.beta-banner-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d4d4d4;
    font-family: 'Inter', system-ui, sans-serif;
}

.beta-banner-text strong {
    color: #ff5555;
    font-weight: 700;
}

.beta-banner-text a {
    color: #ff5555;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(255, 85, 85, 0.5);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.beta-banner-text a:hover {
    color: #ff7777;
    border-bottom-color: #ff7777;
}

@media (max-width: 640px) {
    .beta-banner {
        margin: 0 auto 18px;
        padding: 0 12px;
    }

    .beta-banner-inner {
        padding: 10px 14px;
        gap: 10px;
    }

    .beta-banner-text {
        font-size: 0.82rem;
    }

    .beta-banner-tag {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
}

/* Games subpage overlay variant (used when banner sits over a game canvas) */
.beta-banner--games-subpage {
    max-width: 900px;
    margin-top: 12px;
}
