/* CONTENEDORES PRINCIPALES */
#gol-auth-container, #gol-game-container {
    border: 2px solid #FF6600 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff;
    transition: all 0.3s ease;
}

/* BOTONES DE LA MARCA */
.btn-caesars {
    background-color: #FF6600;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.1s active, background 0.3s;
}

.btn-caesars:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* TRIVIA: BOTONES DE OPCIÓN */
.trivia-btn {
    background: #222 !important;
    border: 2px solid transparent !important;
    margin-bottom: 12px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
}

/* EFECTOS DE SELECCIÓN (FEEDBACK) */
.trivia-btn.correct-ans {
    background-color: #46b450 !important; /* Verde Little Caesars */
    border-color: #fff !important;
}

.trivia-btn.wrong-ans {
    background-color: #dc3232 !important; /* Rojo Error */
    border-color: #fff !important;
}

/* BARRA DE DECIBELES */
#db-bar {
    background: linear-gradient(90deg, #FFCC00 0%, #FF6600 100%);
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

/* PANEL DE RESULTADOS FINAL */
#summary-points {
    border-left: 5px solid #FF6600;
    line-height: 1.6;
}

#summary-points p {
    margin: 8px 0;
    font-size: 16px;
}

/* ESTILOS PARA EL BACKEND (ADMIN-PANEL) */
.button-primary[href*="validar"] {
    background: #46b450 !important;
    border-color: #46b450 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.button[href*="invalidar"] {
    color: #dc3232 !important;
    border-color: #dc3232 !important;
}