
/* Video Player Section */
.video-player-section {
    background-color: var(--dark);
    padding: 30px 0;
}

.video-player-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    background-color: #000;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-controls {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
}

.progress {
    width: 35%;
    height: 100%;
    background-color: var(--accent);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}

.control-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-controls, .right-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.control-btn:hover {
    color: var(--accent);
}

.control-btn.play-pause {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn.play-pause:hover {
    background-color: var(--secondary);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 80px;
}

/* Video Info Section */
.video-info-section {
    padding: 30px 0;
}

.video-info-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.video-details {
    margin-bottom: 30px;
}

.video-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.video-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: var(--dark);
    border: 1px solid #ddd;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: var(--light-bg);
}

.action-btn.primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.action-btn.primary:hover {
    background-color: var(--secondary);
}

.video-description {
    background-color: white;
    padding: 20px;
    margin-bottom: 30px;
}

.description-text {
    color: #555;
    line-height: 1.7;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    background-color: white;
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Comments Section */
.comments-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.comment-form {
    background-color: white;
    padding: 20px;
    margin-bottom: 25px;
}

.comment-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    resize: vertical;
    min-height: 100px;
}

.comment-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.comment-submit:hover {
    background-color: var(--secondary);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background-color: white;
    padding: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: var(--dark);
}

.comment-time {
    color: #666;
    font-size: 0.9rem;
}

.comment-text {
    color: #555;
    line-height: 1.6;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.comment-action {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
}

.comment-action:hover {
    color: var(--primary);
}

/* Sidebar */
.sidebar {
    background-color: var(--light-bg);
    padding: 20px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light);
}

.artist-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.artist-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.artist-details h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.artist-details p {
    color: #666;
    font-size: 0.9rem;
}

.related-videos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-video {
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px;
    transition: transform 0.3s;
}

.related-video:hover {
    transform: translateY(-3px);
}

.related-thumbnail {
    width: 120px;
    height: 70px;
    object-fit: cover;
}

.related-info {
    flex: 1;
}

.related-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 0.9rem;
}

.related-artist {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
}

/* More Videos Section */
.more-videos {
    padding: 40px 0;
    background-color: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    font-size: 0.8rem;
}

.video-card-info {
    padding: 15px;
}

.video-card-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.video-card-artist {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.video-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}
 
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
}
 
/* Responsive Design */
@media (max-width: 992px) {
    .video-info-container {
        grid-template-columns: 1fr;
    }
    
    .video-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
 
    .control-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .left-controls, .right-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .video-actions {
        flex-wrap: wrap;
    }
    
    .video-stats {
        grid-template-columns: 1fr;
    }
 
    .videos-grid {
        grid-template-columns: 1fr;
    }
}