/* Fundal tip studio BBC/RTL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: radial-gradient(circle at top, #1b3b6b 0%, #000 60%);
    overflow-x: hidden;
}

/* Luminile de studio */
#studio-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 150, 255, 0.3), transparent 60%);
    pointer-events: none;
    animation: studioPulse 8s infinite;
}

@keyframes studioPulse {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Container joc */
#game {
    width: 700px;
    max-width: 95%;
    margin: 40px auto;
    text-align: center;
}

/* Logo stil show */
.logo {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #0af, 0 0 20px #0af;
    margin-bottom: 20px;
}

/* Panel întrebare */
.panel {
    background: linear-gradient(135deg, #021526, #04345c);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.7);
    border: 2px solid #0af;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 15px rgba(0, 150, 255, 0.5); }
    to   { box-shadow: 0 0 35px rgba(0, 150, 255, 1); }
}

/* Timer */
#timer {
    font-size: 20px;
    margin-bottom: 15px;
}

.timer-warning {
    color: #e74c3c;
    animation: timerPulse 0.5s infinite;
}

@keyframes timerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Întrebare */
#question {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Răspunsuri stil bare BBC/RTL */
#answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-btn {
    position: relative;
    background: linear-gradient(90deg, #0b2340, #15406d);
    border-radius: 999px;
    border: 2px solid #0af;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.answer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.7);
}

/* Litera A/B/C */
.answer-label {
    font-weight: bold;
    margin-right: 10px;
    color: #f1c40f;
}

/* Selectat (galben, puls) */
.selected {
    background: linear-gradient(90deg, #f1c40f, #f39c12) !important;
    border-color: #f1c40f !important;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Corect / greșit */
.correct {
    background: linear-gradient(90deg, #2ecc71, #27ae60) !important;
    border-color: #2ecc71 !important;
}

.wrong {
    background: linear-gradient(90deg, #e74c3c, #c0392b) !important;
    border-color: #e74c3c !important;
}

/* Fade in/out */
.fade-in {
    animation: fadeIn 0.4s forwards;
}

.fade-out {
    animation: fadeOut 0.4s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

/* Rezultat final */
#result {
    margin-top: 25px;
    font-size: 22px;
    text-shadow: 0 0 10px #0af;
}

/* Responsive telefon */
@media (max-width: 600px) {
    #game {
        margin-top: 20px;
    }

    .logo {
        font-size: 24px;
    }

    #question {
        font-size: 18px;
    }

    .answer-btn {
        font-size: 16px;
        padding: 10px 16px;
    }

    #timer {
        font-size: 18px;
    }
}


/* Butoane categorie – stil identic cu answer-btn, doar mai mari */
.category-btn {
    position: relative;
    background: linear-gradient(90deg, #0b2340, #15406d);
    border-radius: 999px;
    border: 3px solid #0af;
    color: #fff;
    padding: 16px 28px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    width: 100%;
    max-width: 350px;
    margin: 12px auto;
    display: block;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.7);
}

/* Punctul din stânga (•) */
.cat-label {
    font-weight: bold;
    margin-right: 10px;
    color: #f1c40f;
}


