/* CAROUSEL & CARD RESTORATION */
.manual-carousel {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
}
.manual-carousel::-webkit-scrollbar { display: none; }
.manual-carousel > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}
.scale-card {
    position: relative;
    background: #111;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.1s;
    z-index: 1;
    margin: 0;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    width: 160px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.scale-card:hover {
    transform: scale(1.08) translateY(-8px);
    z-index: 10;
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(236, 54, 85, 0.2);
}
.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
}
.channel-card {
    flex: 0 0 auto;
    width: 180px;
    height: 80px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    transition: all 0.3s;
}
.channel-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
    transform: translateY(-5px);
}
.channel-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.channel-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
}
.top10-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 40px;
    position: relative;
}
.top10-number {
    font-size: 8rem;
    font-weight: 900;
    color: #000;
    -webkit-text-stroke: 2px rgba(255,255,255,0.5);
    line-height: 1;
    margin-right: -30px;
    z-index: 1;
    user-select: none;
}
.top10-poster-wrap {
    width: 140px;
    height: 210px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

/* HERO CAROUSEL */
.hero { height: 100vh; overflow: hidden; position: relative; background: #000; }
.hero-slider { width: 100%; height: 100%; display: flex; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 100; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: var(--red); width: 30px; border-radius: 6px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: all 0.3s; }
.hero-arrow:hover { background: var(--red); scale: 1.1; border-color: transparent; }
.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }
@media (max-width: 768px) { .hero-arrow { display: none; } .hero { height: 60vh; } }
