body {
  margin: 0;
  background: #0b0b14;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background: linear-gradient(90deg,#6a5cff,#9b7bff);
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo img {
  width: 32px;
}

/* LAYOUT */
.container,
.watch-container {
  padding: 24px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* SEARCH */
.search {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 20px;
  font-size: 14px;
}

/* CARD */
.card {
  background: #141423;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.thumb-wrap {
  position: relative;
}

.thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.8);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.card h3 {
  padding: 10px;
  font-size: 14px;
}

/* PAGINATION */
.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination button {
  background: #1f1f35;
  border: none;
  color: #fff;
  padding: 8px 12px;
  margin: 4px;
  border-radius: 6px;
  cursor: pointer;
}

.pagination button.active {
  background: #6a5cff;
}

/* PLAYER */
.player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.player-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* MỜ – KHÔNG ĐEN */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.section-title {
  margin: 30px 0 15px;
}
.video-actions {
  margin: 10px 0 25px;
}

.download-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #1f1f35;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.download-btn:hover {
  background: #6a5cff;
}
