/* Video Player Styles */
.video-container { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.video-player { position: relative; width: 100%; background: #000; border-radius: 8px; overflow: hidden; }
.video-player video { width: 100%; display: block; }
.video-info { margin-top: 20px; }
.video-title { font-size: 24px; margin-bottom: 10px; color: #333; }
.video-meta { color: #666; font-size: 14px; margin-bottom: 15px; }
.video-actions { display: flex; gap: 15px; margin: 20px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.like-btn, .dislike-btn { padding: 10px 20px; border: 1px solid #ddd; background: white; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.like-btn.active { background: #3498db; color: white; border-color: #3498db; }
.dislike-btn.active { background: #e74c3c; color: white; border-color: #e74c3c; }
.comments-section { margin-top: 30px; }
.comments-section h2 { margin-bottom: 20px; color: #333; }
.comment-form { margin-bottom: 30px; }
.comment-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; min-height: 100px; resize: vertical; }
.comment-form button { margin-top: 10px; padding: 10px 24px; background: #3498db; color: white; border: none; border-radius: 4px; cursor: pointer; }
.comment { background: #f9f9f9; padding: 15px; border-radius: 8px; margin-bottom: 15px; }
.comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.comment-author { font-weight: bold; color: #333; }
.comment-date { color: #999; font-size: 12px; }
.comment-content { line-height: 1.6; color: #555; }
.comment-actions { margin-top: 10px; display: flex; gap: 15px; }
.comment-actions button { background: none; border: none; color: #3498db; cursor: pointer; font-size: 13px; }
.comment-reply { margin-left: 30px; background: #fff; border-left: 3px solid #3498db; }
.related-videos { margin-top: 40px; }
.related-videos h2 { margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.video-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.video-card img { width: 100%; height: 120px; object-fit: cover; }
.video-card-info { padding: 12px; }
.video-card-title { font-weight: 600; margin-bottom: 5px; color: #333; }
.video-card-meta { font-size: 12px; color: #666; }
.video-card a { text-decoration: none; color: inherit; }
.video-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
