/* Reset dan tema dasar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #f1f1f1;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: #1e1e1e;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-img {
  height: 40px;
}
.header-title {
  font-size: 16px;
  font-weight: 600;
  color: #f1f1f1;
}

/* Konten utama */
.content-wrapper.watch-wrapper {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 1rem;
}

/* Pemutar Video */
.player-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  background: #000;
}
.player-wrapper video {
  width: 100%;
  height: 100%;
}

/* Judul dan metadata */
.watch-title {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.watch-meta {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}

/* Aksi video */
.watch-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.watch-actions button {
  padding: 0.4rem 0.8rem;
  font-size: 0.95rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #272727;
  color: #f1f1f1;
}
.btn-like.liked {
  background: #0d6efd;
  color: white;
}

/* Deskripsi video */
.watch-desc {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #333;
  margin-bottom: 2rem;
  color: #ddd;
}

/* Komentar */
.comment-section {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #333;
}
.comment-section h3 {
  margin-top: 0;
  color: #fff;
}
.comment-section textarea {
  width: 100%;
  resize: vertical;
  font-family: inherit;
  background: #0f0f0f;
  color: #f1f1f1;
  padding: 0.5rem;
  border: 1px solid #444;
  border-radius: 4px;
}
.comment-section button {
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: #0d6efd;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.comment-list {
  list-style: none;
  padding: 0;
}
.comment-list li {
  border-bottom: 1px solid #333;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem;
  background: #1e1e1e;
  color: #999;
  margin-top: 2rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .watch-title {
    font-size: 1.2rem;
  }
  .header-title {
    display: none;
  }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #333;
  background-color: #121212;
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
}

.video-now-playing {
  font-size: 1rem;
  font-weight: 500;
  color: #f1f1f1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80vw;
}

