.video-page {
  padding: 30px 0 50px;
  background: #f8f9fa;
}

/* Video Player */
.video-player-container {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Info */
.video-info {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.video-meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.video-meta i {
  margin-right: 5px;
}

.video-artist-info {
  margin-bottom: 20px;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.artist-link:hover {
  background: var(--primary-color);
  color: white;
}

.artist-link img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.video-description {
  margin-bottom: 20px;
}

.video-description h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.video-description p {
  color: #555;
  line-height: 1.7;
}

/* Share */
.video-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.whatsapp {
  background: #25d366;
}
.share-btn.telegram {
  background: #0088cc;
}
.share-btn.copy-link {
  background: #6c757d;
}

/* Comments Section */
.comments-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comments-section h3 {
  margin-bottom: 25px;
  color: #333;
}

.comment-form-container {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.comment-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.comment-avatar-small {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.reply-info {
  background: #e8f4fd;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-cancel-reply {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 0.85rem;
}

.login-to-comment {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.login-to-comment i {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 6px;
  margin-right: 5px;
}

.login-to-comment span {
  margin: 0 10px;
  color: #999;
}

/* Comments List */
.comments-list {
  margin-top: 25px;
}

.comment {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.comment.reply {
  margin-left: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #eee;
}

.comment-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.reply .comment-avatar img {
  width: 35px;
  height: 35px;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin-bottom: 8px;
}

.comment-author {
  color: #333;
}

.comment-date {
  font-size: 0.8rem;
  color: #999;
}

.comment-text {
  color: #555;
  line-height: 1.6;
}

.btn-reply {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 10px;
  padding: 0;
}

.comment-replies {
  margin-top: 15px;
  padding-left: 20px;
  border-left: 3px solid #e0e0e0;
}

.no-comments {
  text-align: center;
  padding: 40px;
  color: #999;
}

.no-comments i {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Related Videos */
.related-videos {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}

.related-videos h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e53935;
  color: #333;
}

.related-videos-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-video-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.related-video-item:hover {
  background: #f8f9fa;
}

.related-thumbnail {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.related-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.related-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: rgba(229, 57, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.related-video-item:hover .play-icon {
  opacity: 1;
}

.related-info {
  flex: 1;
  min-width: 0;
}

.related-info h4 {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-artist {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 3px;
}

.related-views {
  font-size: 0.7rem;
  color: #999;
}

.no-related {
  color: #999;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .related-videos {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .video-title {
    font-size: 1.2rem;
  }

  .video-meta {
    flex-direction: column;
    gap: 10px;
  }

  .comment {
    flex-direction: column;
    gap: 10px;
  }

  .related-thumbnail {
    width: 120px;
  }
}
