  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }

  :root {
    --negro: #0f0f0f;
    --verde: #00ff88;
    --naranja: #ff6600;
    --blanco: #fff;
  }

  body {
    background: var(--negro);
    color: white;
  }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url("img/Kman-Background.jpg") center/cover no-repeat;
  }

  .bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
  }

  .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }

  .overlay h1 {
    font-size: 60px;
  }

  .overlay p {
    color: var(--verde);
    margin: 10px 0 20px;
  }

  .buttons a {
    padding: 12px 25px;
    margin: 5px;
    background: var(--naranja);
    border-radius: 8px;
    color: white;
    text-decoration: none;
  }

  .buttons a:hover {
    background: var(--verde);
    color: black;
  }

  /* EPISODIOS */
  .episodes {
    padding: 50px 20px;
  }

  .cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
  }

  .card {
    min-width: 200px;
    transition: 0.3s;
  }

  .card img {
    width: 100%;
    border-radius: 10px;
  }

  .card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--verde);
  }

  /* VIDEO */
  .video-section {
    text-align: center;
    padding: 50px 20px;
  }

  .video-container {
    max-width: 900px;
    margin: auto;
    aspect-ratio: 16/9;
  }

  iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  /* REDES */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 40px;
  }

  .social-links a {
    font-size: 24px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 10px;
    transition: 0.3s;
  }

  .social-links a:hover {
    background: var(--verde);
    color: black;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    background: black;
  }
  
  .back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;

  padding: 8px 14px;
  font-size: 13px;
  text-decoration: none;

  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;

  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* Hover más pro */
.back-link:hover {
  background: linear-gradient(45deg, var(--verde), var(--naranja));
  color: black;
  box-shadow: 0 0 10px var(--verde);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.social-links a {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  background: #1a1a1a;
  border-radius: 50%;
  color: white;

  transition: all 0.3s ease;
}

.social-links a {
  color: var(--verde);
}

/* YouTube */
.social-links a:nth-child(1):hover {
  background: #ff0000;
  color: white;
}

/* Facebook */
.social-links a:nth-child(2):hover {
  background: #1877f2;
  color: white;
}

/* Instagram */
.social-links a:nth-child(3):hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: white;
}

/* TikTok */
.social-links a:nth-child(4):hover {
  background: #000;
  color: white;
}

/* =========================
   RESPONSIVE - MOBILE WOW
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: 80vh;
  }

  .overlay {
    padding: 15px;
  }

  .overlay h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .overlay p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .back-link {
  top: 10px;
  left: 10px;
  font-size: 12px;
  padding: 6px 10px;
}

  /* BOTONES */
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .buttons a {
    width: 90%;
    max-width: 300px;
    padding: 14px;
    font-size: 16px;
    text-align: center;
  }

  /* VIDEO HERO (mejor rendimiento móvil) */
  .bg-video {
    display: none; /* evita consumo en celular */
  }

  .hero {
    background: url("img/Kman-Background.jpg") center/cover no-repeat;
  }

  /* EPISODIOS */
  .episodes {
    padding: 40px 15px;
  }

  .episodes h2 {
    font-size: 22px;
    text-align: center;
  }

  .cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .card {
    min-width: 160px;
    scroll-snap-align: start;
  }

  .card img {
    border-radius: 8px;
  }

  /* VIDEO */
  .video-section {
    padding: 40px 15px;
  }

  .video-section h2 {
    font-size: 22px;
  }

  .video-container {
    width: 100%;
  }

  iframe {
    border-radius: 10px;
  }

  /* REDES */
  .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 12px;
    padding: 20px;
  }

  .social-links a {
    width: 100%;
    height: 70px; /* altura uniforme */

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    border-radius: 12px; /* menos circular, más moderno */
  }
}