@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://wallpapers.com/images/featured/dota-2-4f14q75lj1uhmxrp.jpg'); /* 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);

}


.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: 60%; /* en vez de 100%, ponle 60%, 50%, etc */
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px auto; /* el auto la centra */
    display: block; /* necesario para que el auto funcione */
    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;
 
  
}

/* DERECHA */
.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; /* TODAS UNIFORMES */
  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 {
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.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);
  }
}

h3.boton-imagennombre {
  text-align: center;
  margin-top: 8px;
  color: #ffffff !important;
  font-size: 14px;
}


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;
    }
}
.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%;
    
}