@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@800;900&display=swap');

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a1a2e;
}



body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--light);
    line-height: 1.6;
    
    /* IMAGEN + FILTRO OSCURO TODO EN UNO */
    background: 
        linear-gradient(rgba(10, 10, 25, 0.75), rgba(10, 10, 25, 0.85)), /* este es el filtro oscuro */
        url('https://images2.alphacoders.com/134/thumb-1920-1344847.png'); /* tu imagen */

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--dark);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    color: var(--light);
}

.header {
    text-align: center;
    padding: 20px 0;
    background-color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent);
}

.video-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda la pantalla, cambia a 600px si lo quieres más pequeño */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* EL VIDEO DE FONDO */
.video-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;

  /* ESTO ES EL DIFUMINADO */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* CAPA OSCURA PARA QUE SE LEA EL TEXTO, COMO EN TU FOTO */
.video-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(26,26,46,0.3) 100%); /* cambia 0.8 por 0.3 */
  z-index: 2;
}

/* EL TEXTO ENCIMA */
.video-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto; /* ESTO es lo que lo lleva al centro real */
  text-align: center; /* centra todo lo de adentro */
  padding-bottom: 20%; /* quitamos el 8% que lo mandaba al costado */
  
  display: flex;
  flex-direction: column;
  align-items: center; /* asegura que todo quede centrado */
}

.video-hero-title {
  
   font-family: 'Cinzel', serif;
  font-size: clamp(48px, 10vw, 130px); /* se adapta solo: 48px en cel, 130px en PC */
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 8px;

  /* LUCES DE NEON + PIEDRA ANTIGUA */
  text-shadow: 
    0 0 10px #ffcc00,
    0 0 20px #ff9900,
    0 0 40px #ff6a00,
    0 0 80px rgba(255,106,0,0.6),
    4px 4px 0px #2b1a0e, /* efecto tallado en piedra */
    8px 8px 15px rgba(0,0,0,0.9);

}

.video-hero-title2 {
  
   font-family: 'Cinzel', serif;
  font-size: clamp(30px, 10vw, 70px); /* se adapta solo: 48px en cel, 130px en PC */
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 8px;
  text-align: center;

  /* LUCES DE NEON + PIEDRA ANTIGUA */
  text-shadow: 
    0 0 10px #ffcc00,
    0 0 20px #ff9900,
    0 0 40px #ff6a00,
    0 0 80px rgba(255,106,0,0.6),
    4px 4px 0px #2b1a0e, /* efecto tallado en piedra */
    8px 8px 15px rgba(0,0,0,0.9);

}



.sets-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 20px;
  background: transparent;
}

@media (max-width: 1200px) { 
  .sets-section { grid-template-columns: repeat(3, 1fr); } 
}
@media (max-width: 600px) { 
  .sets-section { grid-template-columns: repeat(2, 1fr); } 
}

/* TARJETA */
.set-card {
  border: 1px solid #3a2a3a;
  background: #231423;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.set-card:hover {
  border-color: #ff5c7a;
  box-shadow: 0 0 18px rgba(255,92,122,0.6), 0 0 35px rgba(255,214,199,0.3);
  transform: translateY(-3px);
}

/* MARQUEE / TEXTO QUE SE MUEVE */
.marquee { 
  overflow: hidden; 
  white-space: nowrap; 
  background: #0f0a0f;
  padding: 6px 0;
  border-bottom: 1px solid #3a2a3a;
  font-size: clamp(12px, 2vw, 25px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee span {
  display: inline-block;
  animation: scroll 8s linear infinite;
  padding-left: 100%;
}

.set-card:hover .marquee span { 
  animation-duration: 3s; 
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* IMAGEN */
.img-box { 
  cursor: pointer; 
  aspect-ratio: 1 / 1; 
  overflow: hidden; 
}

.img-box img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}

.img-box:hover img { 
  transform: scale(1.08); 
}

/* FOOTER */
.footer { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 8px 10px; 
  font-size: 13px; 
}

.btn-comprar { 
  color: #ff8fa3; 
  cursor: pointer; 
  font-size: clamp(12px, 2vw, 25px);
  font-weight: bold; 
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-comprar:hover { 
  color: #ffd6c7; 
  text-shadow: 0 0 8px #ff5c7a; 
}

.costo {
  color: #fff;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 25px);
}

.video-hero-btn {
  margin-top: 30px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.video-hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--dark));
  z-index: 2;
  pointer-events: none;
}

nav ul {
  display: flex;
  list-style: none; /* quita los puntitos */
  gap: 20px; /* espacio entre links */
}

.header h1 {
    margin: 0;
    color: var(--accent);
}

.main-image {
    width: 40%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sub-image {
    width: 100%;
    max-width: 350px; /* Aquí controlas lo grande que puede ser. Ponle 300px, 250px, etc */
    height: auto; /* para que no se deforme */
    display: block;
    margin: 20px auto; /* esto ya lo tienes bien, así se centra */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.split-media-layout {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dividido en 2 */
  gap: 15%;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  
  
}

/* IZQUIERDA */
-media-main {
  width: 100%;
  aspect-ratio: 4 / 5; /* rectangular vertical como tu dibujo */
  overflow: hidden;
  border-radius: 12px;
  
}

.split-media-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
  
}

/* 
.split-media-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media-nav-card {
  width: 100%;
  height: 72px; 
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; /* rectángulo uniforme 
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.split-media-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.split-media-nav-label {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.split-media-nav-card:hover {
  background: rgba(57, 255, 20, 0.1); /* fondo verdoso leve 
  border-color: #39ff14; /* borde verde fosforescente */
  
  /* EL BRILLO 
  box-shadow: 
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #39ff14,
    0 0 40px rgba(57, 255, 20, 0.5);

  transform: translateX(6px) scale(1.02);
}

.split-media-nav-card:hover .split-media-nav-label {
  color: #39ff14; /* texto también se pone verde 
  text-shadow: 0 0 8px #39ff14;
}

/* RESPONSIVE - EN CELULAR SE PONE UNO ABAJO DEL OTRO 
@media (max-width: 800px) {
  .split-media-layout {
    grid-template-columns: 1fr;
  }
  .split-media-main {
    aspect-ratio: 16 / 9;
  }
}
*/
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.btn {
    padding: 12px 24px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.botones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  max-width: none; /* quitamos el limite de 600px */
  padding: 15px;
  box-sizing: border-box;
}

.boton-imagen {
  color: #ffffff;
  background: transparent;
  border: none;
  padding-bottom: 30%;
  cursor: pointer;
  line-height: 0;
  transition: all 0.3s ease;
}

.boton-imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

/* BRILLO VERDE FOSFORESCENTE FUERTE */
.boton-imagen:hover img {
  transform: scale(1.1);
  filter: 
    brightness(1) 
    drop-shadow(0 0 8px #39ff14) 
    drop-shadow(0 0 20px #39ff14) 
    drop-shadow(0 0 35px #39ff14);
}

.boton-imagen:active img {
  transform: scale(0.92);
  filter: brightness(0.5);
}

@media (max-width: 600px) {
  .botones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

h4.boton-imagennombre {
  text-align: center;
  margin-top: 8px;
  color: #ffffff !important;
  font-weight: 700;
  
  /* RESPONSIVE CON MIN Y MAX */
  font-size: clamp(11px, 1.5vw + 8px, 45px);
  
  line-height: 1.2;
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #e5ff00,
    0 0 40px #e5ff00,
    0 0 80px #e5ff00;
  animation: neon-pulse 1.5s infinite alternate;
}



.forja-omni-grimorio__grid {
    display: flex;
    flex-direction: row; /* las pone en fila */
    justify-content: center; /* las centra en la pagina */
    gap: 20px; /* el espacio entre si - ponle 15px, 30px, lo que quieras */
    flex-wrap: nowrap; /* obliga a que se queden en una sola fila */
    padding: 20px 0;
}

.forja-omni-card {
    flex: 1; /* las 4 ocupan el mismo ancho */
    max-width: 180px; /* para que no sean gigantes */
    background: #121212;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.forja-omni-card__imagen {
    width: 100%;
    height: auto;
    display: block;
}

.forja-omni-card__nombre {
    margin: 0;
    padding: 10px;
    background: #0e0e0e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;

    /* Interior blanco */
    color: #FFFFFF;

    /* Resplandor dorado */
    text-shadow: 
        0 0 5px #FFFFFF,
        0 0 10px #FFFFFF,
        0 0 20px #FFD700,
        0 0 35px #FFC400,
        0 0 50px #FF9800;
}

film-contest-page__prize-card--primary {
    border-color: var(#dadd0966);
    box-shadow: 0 0 7px #dadd0966;
}
.film-contest-page__prize-card {
    display: flex;
    min-width: 0;
    min-height: clamp(118px, 8.39vw, 161px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 1.6vw, 30px);
    overflow: hidden;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: clamp(20px, 1.56vw, 30px);
    background: var(--color-black);
    box-shadow: 0 0 7px #ffedcd66;
    white-space: nowrap;
}

.film-contest-page__prize-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.09vw, 21px);
    margin: 0;
}
*, *:before, *:after {
    box-sizing: border-box;
}

.film-contest-page__prize-card--primary dt {
    color: var(--color-accent-secondary);
}

.film-contest-page__prize-card dt {
    margin: 0;
    color: var(--color-accent);
    font-family: var(--font-display-compressed);
    font-size: clamp(14px, 4vw, 32px);
}

.info-section {
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-item h3 {
    color: var(--accent);
    margin-bottom: 5px;
    color:white;
}

.media-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    align-items: center; /* para que ambos queden centrados */
}

.map-container, .video-container {
    height: 480px; /* altura buena para PC */
    min-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container img,
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* muestra TODO sin cortar */
}

 .video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; /* que llene sin deformarse */
    display: block;
}

.back-btn {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .info-grid, .media-container {
        grid-template-columns: 1fr;
    }
    
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
}

.grupos-img {
  display: block;
  width: 95%;
  max-width: 1200px;
  height: auto;
  margin: 30px auto;
}

.grupos-img1 {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  height: auto;
}

.letras {
    text-align: center;
    font-size: 25px;
    line-height: 1.5;
    margin: 20px auto;
    max-width: 800px;
    color: var(--light);
    padding-left: 2%;
    padding-right: 5%;
}
