.bg-elegante {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/fondo-toro.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 2rem 0;
}

.form-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.countdown-timer span {
    display: inline-block;
    min-width: 50px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin: 0 5px;
    font-weight: bold;
}

/* Accesibilidad */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    .animate__animated, 
    .form-card {
        animation: none !important;
        transition: none !important;
    }
}

/* Estilo para preguntas */
#listaPreguntas .list-group-item {
    border-left: 5px solid #0d6efd;
    transition: all 0.3s ease;
}

#listaPreguntas .list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}