/* Video Detail Page Styles */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.breadcrumb {
    background: transparent;
    padding: 10px 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0056b3;
}

.breadcrumb-item.active {
    color: #0056b3;
}

.page-title {
    padding: 30px 0;
}

.page-title h1 {
    color: #ff8c00;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
}

.video-description-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.video-description-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.video-player-wrapper {
    padding-bottom: 60px;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 1.8rem;
    }

    .video-description-section {
        padding: 20px;
    }

    .video-description-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}
