/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #0b0b0d;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Top Bar / Enterprise Name ===== */
.top-bar {
  background: #111;
  padding: 15px 25px;
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
  color: #f5f5f5;
  letter-spacing: 1px;
}

/* ===== Main Heading ===== */
.main-heading {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin: 30px 0;
  color: #fdfdfd;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Hero Slideshow ===== */
.hero-slideshow {
  position: relative;
  margin: 20px auto;
  width: 95%;
  max-width: 1400px;
  overflow: hidden;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  transition: opacity 0.6s ease;
}

.slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* ===== Slide Navigation (Arrows + Dots) ===== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #f5f5f5;
  transform: scale(1.2);
}

/* ===== Movie Info Section ===== */
.movie-info {
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  padding: 20px;
}

.movie-meta {
  font-size: 16px;
  color: #cfcfcf;
  margin: 10px 0 20px;
}

.watch-links {
  margin: 20px 0;
}

.watch-links a {
  display: inline-block;
  margin: 8px 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #2d2d2d, #111);
  color: #f5f5f5;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.watch-links a:hover {
  background: linear-gradient(135deg, #444, #000);
  transform: translateY(-3px);
}

/* ===== Storyline Section ===== */
.storyline {
  margin: 50px auto;
  max-width: 900px;
  padding: 20px;
}

.storyline h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.storyline p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.8;
}

/* ===== Other Links ===== */
.other-links {
  margin: 50px auto;
  max-width: 900px;
  padding: 20px;
}

.other-links h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.other-links ul {
  list-style: none;
}

.other-links li {
  margin: 12px 0;
}

.other-links a {
  color: #1db954;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.other-links a:hover {
  text-decoration: underline;
  color: #00ffcc;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .main-heading {
    font-size: 36px;
  }
  .slide img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }
  .slide img {
    height: 300px;
  }
  .watch-links a {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 16px;
    text-align: center;
  }
  .main-heading {
    font-size: 22px;
  }
  .slide img {
    height: 220px;
  }
  .storyline p {
    font-size: 16px;
  }
}