/* Modern Streaming Service Hero Slider Styles */
.chs-wrap { 
    padding: 0 0 40px; 
    position: relative; 
    overflow: hidden; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chs-main { 
    width: 100%; 
    height: 70vh; 
    min-height: 500px; 
    max-height: 800px;
    position: relative; 
    overflow: hidden;
}

.chs-slide { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    cursor: pointer;
}

.chs-hero-media, .chs-hero-media img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.3s ease;
}

.chs-slide:hover .chs-hero-media img {
    transform: scale(1.02);
}

.chs-gradient { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(
        135deg, 
        rgba(10,14,26,0.9) 0%, 
        rgba(10,14,26,0.6) 30%, 
        rgba(10,14,26,0.2) 60%, 
        rgba(10,14,26,0) 100%
    ); 
    z-index: 1;
}

.chs-overlay { 
    position: absolute; 
    left: 8%; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #fff; 
    max-width: 45%; 
    z-index: 2;
}

.chs-kicker { 
    font-size: 14px; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    opacity: 0.9; 
    margin-bottom: 16px; 
    font-weight: 600;
    color: #a0a9c0;
}

.chs-title { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    line-height: 1.1; 
    margin: 0 0 24px; 
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.chs-btn { 
    display: inline-flex;
    align-items: center;
    padding: 16px 32px; 
    border-radius: 12px; 
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    color: #fff; 
    text-decoration: none; 
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border: none;
    cursor: pointer;
}

.chs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #9f67ff 0%, #8b5cf6 50%, #7c3aed 100%);
}

.chs-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.1); 
    border: 2px solid rgba(255,255,255,0.2); 
    z-index: 10; 
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chs-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.chs-prev { left: 20px; } 
.chs-next { right: 20px; }

.chs-nav:after { 
    content: ''; 
    display: block; 
    width: 0; 
    height: 0; 
    border: 10px solid transparent; 
}

.chs-prev:after { 
    border-right-color: #fff; 
    margin-left: 2px; 
} 

.chs-next:after { 
    border-left-color: #fff; 
    margin-right: 2px; 
}

.swiper-pagination { 
    bottom: 20px !important; 
}

.swiper-pagination-bullet { 
    background: rgba(255,255,255,0.5); 
    opacity: 0.7; 
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
} 

.swiper-pagination-bullet-active { 
    opacity: 1; 
    background: #8b5cf6;
    transform: scale(1.2);
}

.chs-thumbs { 
    /* margin-top: 30px; 
    padding: 0 20px; 
    position: relative;
    max-width: 100%;
    overflow: hidden; */
    max-width: 1300px;
    margin: 0 auto;
    margin-top: -94px;
    padding-top: 10px;
}

.chs-thumb { 
    width: 280px; 
    height: 160px; 
    /* opacity: 0.6;  */
    border-radius: 12px; 
    overflow: hidden; 
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3748 100%);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.chs-thumb:hover {
    opacity: 0.8;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.chs-thumb img { 
    width: 100%; 
    height: 100% !important; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.3s ease;
}

.chs-thumb:hover img {
    transform: scale(1.05);
}

.chs-thumbs .swiper-slide-thumb-active .chs-thumb { 
    opacity: 1; 
    border: 3px solid #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-4px);
}

.chs-thumbs .swiper-slide-thumb-active .chs-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 1;
}

.chs-thumb-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.chs-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.chs-thumb:hover .chs-thumb-overlay {
    opacity: 1;
}

.chs-thumb-kicker {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a0a9c0;
    margin-bottom: 4px;
    font-weight: 600;
}

.chs-thumb-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.chs-thumb-btn {
    font-size: 11px;
    font-weight: 600;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid rgba(139, 92, 246, 0.3);
}



/* Responsive Design */
@media (max-width: 1200px) {
    .chs-main { height: 60vh; min-height: 450px; }
    .chs-overlay { max-width: 50%; }
    .chs-thumb { width: 240px; height: 140px; }
}

@media (max-width: 1024px) {
    .chs-main { height: 50vh; min-height: 400px; }
    .chs-overlay { max-width: 60%; left: 6%; }
    .chs-title { font-size: clamp(2rem, 4vw, 3.5rem); }
    .chs-thumb { width: 200px; height: 120px; }
}

@media (max-width: 768px) {
    .chs-main { height: 45vh; min-height: 350px; }
    .chs-overlay { left: 4%; max-width: 80%; }
    .chs-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    .chs-btn { padding: 12px 24px; font-size: 14px; }
    .chs-nav { width: 40px; height: 40px; }
    .chs-prev { left: 12px; }
    .chs-next { right: 12px; }
    .chs-thumb { width: 160px; height: 100px; }
    .chs-thumbs { padding: 0 12px; }
    .chs-thumb-overlay { padding: 8px; }
    .chs-thumb-title { font-size: 12px; }
    .chs-thumb-kicker { font-size: 9px; }
    .chs-thumb-btn { font-size: 10px; padding: 3px 6px; }
}

@media (max-width: 480px) {
    .chs-main { height: 40vh; min-height: 300px; }
    .chs-overlay { left: 3%; max-width: 90%; }
    .chs-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
    .chs-btn { padding: 10px 20px; font-size: 13px; }
    .chs-thumb { width: 140px; height: 90px; }
    .chs-thumb-overlay { padding: 6px; }
    .chs-thumb-title { font-size: 11px; }
    .chs-thumb-kicker { font-size: 8px; }
    .chs-thumb-btn { font-size: 9px; padding: 2px 5px; }
}

.echs-empty {
    color: #fff; 
    padding: 20px; 
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3748 100%);
    text-align: center;
    border-radius: 12px;
    margin: 20px;
}
