* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url('img/misc/texture.jpg') center/cover fixed;
  color: #fff;
  font-family: 'Arial Black', 'Impact', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Grano overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.15"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 9998;
}

/* Scanlines
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9997;
} */

header {
  text-align: center;
  padding: 60px 20px 10px;
}

.title-img {
  max-width: 90%;
  width: 880px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Trailer section */
.trailer-section {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: none;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Synopsis Section */
.synopsis-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
  line-height: 1.8;
}

.synopsis-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem); /* Reducido un 30% aprox */
  color: #831c19;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.synopsis-section p {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  color: #ddd;
  max-width: 900px;
  margin: 0 auto;
}

.synopsis-section strong {
  color: #fff;
  letter-spacing: 1px;
}

/* Single image section */
.single-image-section {
  max-width: 1500px;
  margin: 60px auto;
  padding: 0 20px;
}

.single-image {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Soundtrack section */
.soundtrack-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.soundtrack-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem); /* Reducido un 30% aprox */
  color: #831c19;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 3px;
}

.soundtrack-content {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.soundtrack-poster {
  width: 100%;
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid #222;
  border-bottom: none;
  text-decoration: none;
  transition: all 0.3s;
}

.platform-card:first-child {
  border-radius: 8px 8px 0 0;
}

.platform-card:last-child {
  border-radius: 0 0 8px 8px;
  border-bottom: 1px solid #222;
}

.platform-card:hover {
  background: rgba(40, 40, 40, 0.9);
  transform: translateX(5px);
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.platform-name {
  color: #fff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.platform-btn {
  padding: 8px 20px;
  background: #333;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  transition: all 0.3s;
  flex-shrink: 0;
}

.platform-card:hover .platform-btn {
  background: #831c19;
}

/* Gallery sections */
.gallery-section {
  margin: 80px 0;
  padding: 0 20px;
}

.gallery-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem); /* Reducido un 30% aprox */
  color: #831c19;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #831c19 #000;
}

.carousel::-webkit-scrollbar {
  height: 12px;
}

.carousel::-webkit-scrollbar-track {
  background: #000;
}

.carousel::-webkit-scrollbar-thumb {
  background: #831c19;
  border: 2px solid #000;
}

.carousel img {
  height: 400px;
  width: auto;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid #222;
  transition: all 0.3s;
  flex-shrink: 0;
}

.carousel img:hover {
  border-color: #831c19;
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox img {
  max-width: 80%;
  max-height: 90%;
  border: 4px solid #831c19;
  pointer-events: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(131, 28, 25, 0.8);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10001;
  font-family: Arial, sans-serif;
}

.lightbox-arrow:hover {
  background: rgba(131, 28, 25, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev {
  left: 20px;
}

.lightbox-arrow.next {
  right: 20px;
}

footer {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-links a {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links img {
  height: 40px;
  width: auto;
}

@media (max-width: 1024px) {
  .soundtrack-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .soundtrack-poster {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .carousel img {
    height: 300px;
  }

  .title-img {
    width: 100%;
  }

  .synopsis-section p {
    font-size: 1rem;
  }

  .lightbox-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lightbox-arrow.prev {
    left: 10px;
  }

  .lightbox-arrow.next {
    right: 10px;
  }
}