body {
    background-color: #484848;
    /* Fondo gris oscuro de la imagen 1 */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

header {
    background-color: #000;
}

/* Header negro */

/* --- ESTILOS DE LA IMAGEN PRINCIPAL (POSTER) --- */
.poster-big {
    width: 100%;
    border-radius: 12px;
    /* Bordes redondeados */

    /* AQUI ESTÁ EL CAMBIO CLAVE: El resplandor verde fosforescente */
    box-shadow: 0 0 25px 5px rgba(76, 209, 55, 0.7);
    /* O si lo quieres más sólido: box-shadow: 0 0 20px 2px #4cd137; */
}

/* --- Estilos de Etiquetas (Badges) --- */
.badges-container {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.age-apt {
    background-color: #2ecc71;
}

.age-14 {
    background-color: #f1c40f;
    color: #000;
}

.age-16 {
    background-color: #e67e22;
}

.age-18 {
    background-color: #c0392b;
}

.status-estreno {
    background: linear-gradient(45deg, #ff0055, #ff5500);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.status-cartelera {
    background-color: #34495e;
    border: 1px solid #555;
}

.status-proximamente {
    background-color: #3498db;
}

/* Estructura */
.detail-container {
    padding-top: 40px;
    display: flex;
    gap: 40px;
    padding-bottom: 50px;
}

.synopsis {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
}

/* Botones de Horarios */
.showtimes-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.time-btn {
    background: #666;
    border: 1px solid #777;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.time-btn:hover {
    border-color: #4cd137;
    background: #555;
}

.time-btn span {
    font-size: 1.2rem;
    font-weight: bold;
}

.date-group {
    margin-bottom: 25px;
}

.date-title {
    color: #4cd137;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Footer Verde Oscuro --- */
footer {
    background-color: #021a05;
    /* Fondo verde muy oscuro */
    padding: 40px 0 20px 0;
}