body {
    color: #111827;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

.site-main {
    flex: 1;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-dot.is-active {
    width: 2rem;
    background: #f59e0b;
}

.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 300ms ease, background 300ms ease;
}

.category-tile {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #111827, #334155);
    color: #fff;
    min-height: 11rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.category-tile:after {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.28);
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

.movie-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

.movie-card img {
    transition: transform 500ms ease;
}

.movie-card:hover img {
    transform: scale(1.08);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    line-height: 1rem;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #020617;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.30);
}

.player-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    transition: opacity 260ms ease, visibility 260ms ease;
}

.play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button-core {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f59e0b;
    color: #fff;
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.45);
    transition: transform 220ms ease, background 220ms ease;
}

.play-button-core:hover {
    transform: scale(1.08);
    background: #d97706;
}

.search-card.is-filtered,
.filter-card.is-filtered {
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: block;
}

.content-prose p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.85;
}

.rank-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .play-button-core {
        width: 4.25rem;
        height: 4.25rem;
    }
}
