:root {
    --lfc-red: #C8102E;
    --lfc-gold: #D4AF37;
    --dark-bg: #0A0E14;
    --card-glass: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --transition-standard: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image: url('slot_background.png');
    background-size: cover;
    background-position: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 14, 20, 0.4), rgba(10, 14, 20, 0.9));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 2rem;
}

header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--lfc-gold);
    opacity: 0.9;
    line-height: 1.4;
}

header h1 small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.status-card {
    background: var(--card-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: scale(1.02);
}

.status-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--lfc-red);
    margin-bottom: 1rem;
}

.big-no {
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--lfc-red) 0%, #a00d24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    user-select: none;
    cursor: pointer;
}

.sad-comment {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
    font-weight: 300;
    color: #cbd5e1;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--lfc-gold);
}

.stat-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: #64748b;
    margin-top: -0.5rem;
}

footer {
    margin-top: 3rem;
    font-size: 0.7rem;
    color: #475569;
}

@media (max-width: 480px) {
    .big-no {
        font-size: 6rem;
    }
    
    .status-card {
        padding: 3rem 1.5rem;
    }
}
