:root {
    --primary-color: #e50914; /* Red theater */
    --secondary-color: #141414; /* Deep dark background */
    --accent-color: #d4af37; /* Gold accent */
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.hero-section {
    position: relative;
    height: 40vh;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(20,20,20,0.2) 0%, rgba(20,20,20,1) 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.btn-premium {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background-color: #ff0f1a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
    color: white;
}

.form-control-dark {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
}

.form-control-dark:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(229, 9, 20, 0.25);
    color: white;
}
/* Arreglo para que las opciones del menú no queden blancas sobre blancas */
.form-control-dark option {
    background-color: #141414;
    color: white;
}

