:root {
    color-scheme: light;
    --bg: #f8fbff;
    --panel: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --deep: #0f1f45;
    --line: rgba(148, 163, 184, 0.28);
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.14), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(6, 182, 212, 0.14), transparent 30rem),
        linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.nav-wrap {
    width: min(1240px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1d4ed8;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 1;
}

.site-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 13px;
    color: #334155;
    font-size: 14px;
    transition: 0.22s ease;
}

.site-menu a:hover,
.site-menu a.active {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
}

.nav-cats {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    max-width: 660px;
    padding-bottom: 2px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
}

.page-main {
    min-height: 70vh;
}

.hero-carousel {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    min-height: 620px;
    margin: 28px auto 24px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 42px;
    padding: clamp(28px, 5vw, 76px);
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.8s ease;
    background:
        linear-gradient(115deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 31, 69, 0.82) 48%, rgba(14, 165, 233, 0.32) 100%),
        var(--hero),
        linear-gradient(135deg, #172554, #0891b2);
    background-size: cover;
    background-position: center;
}

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

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #0369a1;
    background: rgba(14, 165, 233, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-slide .eyebrow,
.channel-hero .eyebrow,
.detail-hero .eyebrow,
.search-hero .eyebrow {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-copy h1,
.channel-hero h1,
.detail-copy h1,
.search-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p,
.channel-hero p,
.detail-copy p,
.search-hero p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.hero-tags,
.detail-meta,
.tag-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.hero-tags span,
.detail-meta span,
.detail-meta a,
.tag-line span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #475569;
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span,
.detail-meta span,
.detail-meta a,
.large-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.primary-btn,
.ghost-btn,
.search-pill button,
.search-panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn,
.search-pill button,
.search-panel button {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.primary-btn:hover,
.ghost-btn:hover,
.search-pill button:hover,
.search-panel button:hover {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    width: min(390px, 100%);
    aspect-ratio: 0.72;
    justify-self: center;
    border-radius: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-poster span,
.detail-poster,
.cover,
.compact-cover,
.rank-thumb {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.1), rgba(6, 182, 212, 0.22)),
        var(--cover),
        linear-gradient(135deg, #bfdbfe, #e0f2fe 45%, #eff6ff);
    background-size: cover;
    background-position: center;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: 0.22s ease;
}

.hero-dot.active {
    width: 34px;
    background: #ffffff;
}

.quick-search,
.content-section,
.filter-bar,
.rank-page-list {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto;
}

.quick-search {
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.quick-search label {
    display: block;
    margin-bottom: 10px;
    color: #334155;
    font-weight: 800;
}

.search-pill,
.search-panel {
    display: flex;
    gap: 12px;
}

.search-pill input,
.search-panel input,
.local-filter {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 999px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.search-pill input:focus,
.search-panel input:focus,
.local-filter:focus {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    flex: 0 0 auto;
    color: #2563eb;
    font-weight: 800;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.movie-card .cover {
    position: relative;
    height: 246px;
    border-radius: 0;
}

.large-card .cover {
    height: 300px;
}

.cover-badge,
.cover-year {
    position: absolute;
    top: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(12px);
}

.cover-badge {
    left: 12px;
}

.cover-year {
    right: 12px;
}

.movie-card-body {
    padding: 16px;
}

.movie-card h3 {
    min-height: 48px;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.movie-card h3 a:hover {
    color: #2563eb;
}

.movie-card p {
    min-height: 66px;
    margin: 10px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #475569;
    font-size: 12px;
}

.meta-line span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #94a3b8;
}

.tag-line {
    margin-top: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.category-tile {
    min-height: 150px;
    padding: 20px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.2);
    transition: transform 0.22s ease;
}

.category-tile:nth-child(2n) {
    background: linear-gradient(135deg, #0f172a, #2563eb);
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, #155e75, #06b6d4);
}

.category-tile:hover {
    transform: translateY(-5px);
}

.category-tile span {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
}

.category-tile strong {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.two-column {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    gap: 24px;
}

.two-column .content-section {
    width: auto;
    margin: 0;
}

.two-column .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rank-panel {
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
        "no title"
        "no meta";
    gap: 3px 12px;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    transition: 0.22s ease;
}

.rank-row:hover {
    background: #eff6ff;
    transform: translateX(4px);
}

.rank-no {
    grid-area: no;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-weight: 900;
}

.rank-title {
    grid-area: title;
    font-weight: 800;
}

.rank-meta {
    grid-area: meta;
    color: var(--muted);
    font-size: 13px;
}

.channel-hero,
.search-hero,
.detail-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto;
    border-radius: 34px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow);
    background:
        linear-gradient(118deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.72), rgba(6, 182, 212, 0.42)),
        var(--hero),
        linear-gradient(135deg, #0f172a, #0891b2);
    background-size: cover;
    background-position: center;
}

.channel-hero,
.search-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    padding: clamp(32px, 6vw, 72px);
}

.channel-hero div,
.search-hero {
    max-width: 820px;
}

.filter-bar {
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.rank-page-list {
    display: grid;
    gap: 12px;
}

.rank-card {
    display: grid;
    grid-template-columns: 64px 92px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
    transition: 0.22s ease;
}

.rank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.rank-big {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    font-size: 20px;
    font-weight: 900;
}

.rank-thumb {
    width: 92px;
    height: 120px;
    border-radius: 16px;
}

.rank-info strong,
.rank-info em,
.rank-info small {
    display: block;
}

.rank-info strong {
    font-size: 20px;
    margin-bottom: 7px;
}

.rank-info em {
    color: #2563eb;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 8px;
}

.rank-info small {
    color: var(--muted);
    line-height: 1.7;
}

.search-hero {
    display: block;
}

.search-panel {
    margin-top: 28px;
    width: min(760px, 100%);
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.search-chips button {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    padding: clamp(28px, 5vw, 64px);
}

.detail-poster {
    height: 430px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.detail-copy h1 {
    max-width: 820px;
}

.player-section {
    width: min(1040px, calc(100% - 32px));
    margin: 28px auto;
}

.player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.35), transparent 24rem),
        #020617;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.26);
}

.player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(37, 99, 235, 0.28));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-mark {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 20px 46px rgba(37, 99, 235, 0.36);
    font-size: 34px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
}

.detail-article,
.detail-side,
.static-copy {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h3 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.detail-article h2:not(:first-child) {
    margin-top: 28px;
}

.detail-article p,
.static-copy p {
    color: #334155;
    line-height: 2;
    margin: 0 0 18px;
}

.detail-side dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-side dt {
    color: var(--muted);
    font-size: 13px;
}

.detail-side dd {
    margin: -8px 0 0;
    font-weight: 800;
}

.compact-card {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
}

.compact-cover {
    width: 70px;
    height: 92px;
    border-radius: 14px;
    flex: 0 0 auto;
}

.compact-info strong,
.compact-info em {
    display: block;
}

.compact-info em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
    margin-top: 6px;
}

.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.pager a,
.pager span {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 13px;
    background: #ffffff;
    color: #2563eb;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.pager span.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.site-footer {
    margin-top: 70px;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a, #12306d 55%, #075985);
}

.footer-grid {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-grid p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-grid h3 {
    color: #ffffff;
    margin: 0 0 14px;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: #cbd5e1;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    color: #94a3b8;
    border-top: 1px solid rgba(226, 232, 240, 0.16);
    text-align: center;
}

.hidden-by-search {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .two-column .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-menu {
        position: fixed;
        inset: 68px 16px auto 16px;
        display: none;
        max-height: calc(100vh - 92px);
        overflow: auto;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    }

    body.menu-open .site-menu {
        display: block;
    }

    .site-menu a,
    .nav-cats {
        display: flex;
        width: 100%;
        max-width: none;
    }

    .nav-cats {
        flex-direction: column;
        overflow: visible;
    }

    .hero-carousel {
        min-height: 740px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        align-content: center;
    }

    .hero-poster {
        width: min(250px, 72%);
    }

    .movie-grid,
    .two-column .movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-hero,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(270px, 100%);
        height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .nav-wrap,
    .hero-carousel,
    .quick-search,
    .content-section,
    .filter-bar,
    .rank-page-list,
    .channel-hero,
    .search-hero,
    .detail-hero,
    .player-section,
    .two-column,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1240px);
    }

    .hero-carousel {
        min-height: 690px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 24px;
    }

    .hero-copy h1,
    .channel-hero h1,
    .detail-copy h1,
    .search-hero h1 {
        font-size: 36px;
    }

    .movie-grid,
    .two-column .movie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .movie-card .cover {
        height: 210px;
    }

    .movie-card-body {
        padding: 13px;
    }

    .movie-card h3 {
        font-size: 16px;
    }

    .movie-card p {
        min-height: 78px;
        font-size: 13px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .search-pill,
    .search-panel {
        flex-direction: column;
    }

    .rank-card {
        grid-template-columns: 44px 70px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-thumb {
        width: 70px;
        height: 94px;
    }

    .rank-big {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }

    .rank-info strong {
        font-size: 16px;
    }

    .rank-info small {
        display: none;
    }

    .detail-poster {
        height: 360px;
    }

    .player {
        border-radius: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
