/* ==========================================
   WATCH PAGE
========================================== */

.watch-page {
  max-width: 1700px;
  margin: 25px auto;
  padding: 0 20px;
}

/* ==========================================
   MAIN LAYOUT
========================================== */

.watch-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 320px;

  gap: 24px;
}

.watch-content {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.watch-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================
   PLAYER
========================================== */

.watch-player {
  position: relative;

  aspect-ratio: 16 / 9;

  width: 100%;

  overflow: hidden;

  border-radius: 12px;

  background: #000;
}

.watch-player iframe {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  border: 0;
}

/* ==========================================
   ADS
========================================== */

.watch-banner {
  width: 100%;
  height: 120px;
  margin: 20px 0;
  border-radius: 12px;
  background: #16293b;
  border: 1px solid #22384d;
}

.watch-banner-bottom {
  width: 100%;
  height: 100px;
  margin: 40px 0;
  border-radius: 12px;
  background: #16293b;
  border: 1px solid #22384d;
}

.ad-box {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  background: #16293b;
  border: 1px solid #22384d;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .watch-sidebar {
    display: none;
  }
}

/* ==========================================
   WATCH INFO
========================================== */

.watch-info {
  display: flex;

  flex-direction: column;

  gap: 20px;

  margin-top: 20px;
}

.watch-title {
  margin: 0;

  font-size: 30px;

  font-weight: 700;

  color: #fff;
}

.watch-meta {
  display: flex;

  gap: 20px;

  margin-top: 10px;

  color: #9eb3bf;

  font-size: 14px;
}

.watch-header {
  padding-bottom: 15px;

  border-bottom: 1px solid #22384d;
}

.watch-actions {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;
}

.watch-extra-actions {
  display: flex;

  gap: 20px;

  align-items: center;
}

.watch-extra-actions a {
  color: #acdde7;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  cursor: pointer;

  transition: 0.2s;
}

.watch-extra-actions a:hover {
  color: #2fbbf4;
}

.watch-extra-actions svg {
  width: 18px;

  height: 18px;

  fill: currentColor;
}

.watch-description {
  display: flex;

  flex-direction: column;

  gap: 18px;

  padding: 20px;

  background: #142c42;

  border: 1px solid #22384d;

  border-radius: 12px;
}

.watch-models {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.watch-categories {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.watch-text {
  color: #d8e5ec;

  line-height: 1.8;

  font-size: 15px;
}

.watch-report {
  display: none;
}

.watch-report.active {
  display: block;
}
