/* Fondo general de la página en ROJO */
body {
    background-color: #920000 !important;
}

/* 1. Sombreado rojo intenso para el título principal */
.titulo-sombra-roja {
    text-shadow: 0 0 15px rgba(230, 0, 0, 0.8), 0 0 30px rgba(230, 0, 0, 0.4);
}

/* 2. Sombreado negro profundo para la tarjeta principal contenedora */
.card-profundidad-negra {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.7) !important;
}

/* 3. Corrección de la barra lateral derecha para que NO se superponga por encima de la barra de navegación */
.infobox-cine {
    background-color: #111111;
    border: 2px solid #E60000;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    /* Ajuste para que quede por debajo del menú fijo y no se encime */
    position: relative;
    z-index: 1;
}

.infobox-cine th {
    background-color: #1a0000;
    color: #ff4d4d;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-bottom: 1px solid #333;
}

.infobox-cine td {
    background-color: #111111;
    color: #e0e0e0;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-bottom: 1px solid #222;
}

.galeria-img {
    border: 2px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.galeria-img:hover {
    transform: scale(1.03);
    border-color: #E60000;
}