/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: red;
  font-family: 'Creepster', cursive;
  font-size: 24px;
}

.logo img {
  height: 40px;
}

/* NAV */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: red;
}

/* ================= BUTTON ================= */
.btn {
  padding: 10px 20px;
  background: red;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: darkred;
  transform: scale(1.05);
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🔥 VIDEO FIX PRO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent, black 80%);
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* TITULO */
.title {
  font-family: 'Creepster', cursive;
  font-size: 80px;
  color: red;
  text-shadow: 0 0 20px red;
}

/* SUB */
.subtitle {
  margin-top: 10px;
  opacity: 0.7;
}

/* ================= PERSONAJES ================= */
.character {
  position: fixed;
  bottom: 0;
  width: 180px;
  pointer-events: none;
  z-index: 5;
}

/* ANIMACIONES */
.left {
  left: -200px;
  animation: enterLeft 2s forwards;
}

.right {
  right: -200px;
  animation: enterRight 2s forwards;
}

@keyframes enterLeft {
  to { left: 20px; }
}

@keyframes enterRight {
  to { right: 20px; }
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
}

.dark {
  background: #0a0a0a;
}

.content {
  max-width: 600px;
  margin: auto;
}

/* ================= VIDEOS ================= */
.videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 🔥 VIDEO HORIZONTAL FIX */
.videos video {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px red;
}

/* ================= FOOTER ================= */
.footer {
  padding: 20px;
  text-align: center;
  background: black;
  opacity: 0.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .title {
    font-size: 42px;
  }

  .character {
    width: 100px;
  }

  /* 🔥 HERO VIDEO MOBILE */
  .bg-video {
    width: auto;
    height: 100%;
  }

  .videos video {
    width: 90%;
    height: auto;
  }

  .nav-links {
    display: none;
  }
}

/* ================= LOGO HORROR ================= */
.horror-logo {
  font-family: 'Creepster', cursive;
  color: #ff0000;
  text-shadow: 0 0 10px red, 0 0 30px darkred;
}

.horror-logo img {
  height: 40px;
  margin-left: 5px;
  filter: drop-shadow(0 0 10px red);
}

.horror-logo:hover {
  text-shadow: 0 0 20px red, 0 0 50px black;
}