/* =========================
   Base
========================= */
body {
  margin: 0;
  background: #0f0f0f;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   Header
========================= */
.header {
  width: 100%;
  padding: 16px 24px;
  background: #0b0b0b;
  border-bottom: 1px solid #1f1f1f;
}

.logo {
  height: 56px;
}

@media (max-width: 600px) {
  .logo {
    height: 44px;
  }
}

/* =========================
   Layout
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* =========================
   Movie Info
========================= */
.movie-info {
  margin-bottom: 24px;
}

.movie-title {
  font-size: 32px;
  margin: 0 0 6px 0;
}

.movie-meta {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 12px;
}

.movie-synopsis {
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
}

/* =========================
   Player
========================= */
.player-section {
  margin-top: 10px;
}

video {
  width: 100%;
  max-height: 520px;
  background: #000;
  border-radius: 10px;
  touch-action: manipulation;
}

.player-controls {
  margin-top: 10px;
}

select {
  background: #1f1f1f;
  color: #fff;
  border: 1px solid #333;
  padding: 6px 10px;
  border-radius: 4px;
}

/* =========================
   Ads
========================= */
.ad-slot {
  margin-top: 30px;
  padding: 20px;
  background: #181818;
  border-radius: 8px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* =========================
   📱 Mobile
========================= */
@media (max-width: 768px) {
  .container {
    padding: 12px;
  }

  .movie-title {
    font-size: 24px;
  }

  .movie-synopsis {
    font-size: 15px;
  }

  video {
    max-height: none;
    border-radius: 6px;
  }

  .player-controls {
    margin-top: 8px;
  }

  select {
    font-size: 14px;
    padding: 6px;
  }

  .ad-slot {
    font-size: 13px;
    padding: 14px;
  }
}

.ad-native {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 4 / 1;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Ads (Top & Bottom)
========================= */
.ad-slot {
  margin: 24px 0;
  padding: 16px;
  background: #181818;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.ad-native {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 4 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Player Centering
========================= */
.player-section {
  margin: 24px 0;
}

video {
  width: 100%;
  max-width: 100%;
  max-height: 520px;
  background: #000;
  border-radius: 10px;
}

/* =========================
   ADS
========================= */
.ad-slot {
  margin: 20px 0;
  padding: 14px;
  background: #181818;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

/* Native ads only for bottom */
.ad-bottom .ad-native {
  width: 100%;
  max-width: 900px;
}

/* Ensure top banner never stacks */
.ad-top {
  overflow: hidden;
}

