
/* Video List Enhancements */
.video-list-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #0d6efd rgba(0, 0, 0, 0.1);
}

.video-list-container::-webkit-scrollbar {
    width: 6px;
}

.video-list-container::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 10px;
}

#video li {
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

#video li:hover {
    background: rgba(13, 110, 253, 0.2);
}

#video li.active {
    background: rgba(13, 110, 253, 0.4);
    border-left: 3px solid #0d6efd;
}

#video li a {
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
}

.dwn-btn {
    font-size: 0.8rem;
    color: #adb5bd;
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid #495057;
    border-radius: 4px;
    margin-top: 4px;
}

.dwn-btn:hover {
    color: #fff;
    background: #495057;
}

/* Header Style "nine" */
.nine h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
}

.nine h1:after, .nine h1:before {
    content: " ";
    display: block;
    border-bottom: 2px solid #0d6efd;
    background-color: #f8f8f8;
}

.nine h1 span {
    font-weight: normal;
    text-transform: uppercase;
    color: #adb5bd;
    font-size: 14px;
    display: block;
}

/* Hero Section Enhancements */
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}

/* Hover effects for cards and images */
.hover-elevate {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hover-elevate:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.opacity-0 {
    opacity: 0;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Custom scrollbar for episode list */
#episodesList::-webkit-scrollbar {
    width: 6px;
}

#episodesList::-webkit-scrollbar-track {
    background: #1a1a2e;
}

#episodesList::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}
