:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --ink: #101827;
    --muted: #667085;
    --soft: #eef2f7;
    --line: rgba(15, 23, 42, 0.08);
    --pink: #ec4899;
    --pink-deep: #be185d;
    --yellow: #f5b841;
    --green: #54d18a;
    --blue: #2563eb;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% -8%, rgba(250, 204, 21, 0.22), transparent 34%),
        radial-gradient(circle at 92% 4%, rgba(236, 72, 153, 0.18), transparent 30%),
        linear-gradient(180deg, #fff7fb 0%, var(--bg) 44%, #ffffff 100%);
}

body.nav-open {
    overflow: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(22px);
}

.header-inner {
    max-width: 1320px;
    height: 72px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow), #ff6aa9 48%, var(--green));
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.28);
    transform: translateZ(0);
}

.brand:hover .brand-mark {
    transform: scale(1.06);
}

.brand-name {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #b7791f, var(--pink), #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    padding: 10px 15px;
    border-radius: 999px;
    color: #475467;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-deep);
    background: rgba(236, 72, 153, 0.10);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 800;
}

main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px;
}

.hero-section {
    position: relative;
    min-height: 620px;
    padding: 38px;
    overflow: hidden;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 228, 181, 0.92), rgba(255, 231, 240, 0.92) 45%, rgba(219, 255, 235, 0.9)),
        #fffaf2;
    box-shadow: var(--shadow);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 76%);
}

.hero-bg {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -140px;
    top: -130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.30), rgba(84, 209, 138, 0.20), transparent 68%);
    filter: blur(6px);
}

.hero-track {
    position: relative;
    min-height: 470px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
    align-items: center;
    gap: 42px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--pink-deep);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(236, 72, 153, 0.16);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    max-width: 780px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.hero-copy p {
    max-width: 720px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.82;
}

.hero-tags,
.tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 18px;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: #475467;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 800;
}

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

.primary-action,
.secondary-action,
.small-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), #f97316);
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.28);
}

.secondary-action {
    min-height: 48px;
    padding: 0 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.92);
}

.primary-action:hover,
.secondary-action:hover,
.small-action:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    aspect-ratio: 3 / 4.3;
    box-shadow: 0 30px 70px rgba(120, 53, 15, 0.24);
    transform: rotate(2deg);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(84, 209, 138, 0.18));
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.28));
}

.hero-poster img,
.poster-link img,
.detail-poster img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.hero-dot {
    width: 34px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.16);
    cursor: pointer;
}

.hero-dot.active {
    width: 52px;
    background: linear-gradient(90deg, var(--yellow), var(--pink), var(--green));
}

.hero-search-box {
    position: relative;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(18px);
}

.hero-search-box h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.hero-search-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.hero-search-line input,
.search-wrap input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    outline: none;
    border-radius: 18px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.hero-search-line input:focus,
.search-wrap input:focus {
    border-color: rgba(236, 72, 153, 0.48);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10);
}

.hero-search-line a {
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 18px;
    color: #ffffff;
    background: #111827;
    font-weight: 900;
}

.section-block {
    margin-top: 34px;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

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

.section-head h2,
.page-hero h1,
.detail-copy h1 {
    margin: 10px 0 0;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.section-head.small h2 {
    font-size: 24px;
}

.section-link {
    color: var(--pink-deep);
    font-weight: 900;
}

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

.category-tile,
.category-overview-card {
    display: block;
    min-height: 132px;
    padding: 20px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 251, 0.92)),
        #ffffff;
    border: 1px solid rgba(236, 72, 153, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(236, 72, 153, 0.12);
}

.category-tile span,
.category-card-title {
    display: inline-flex;
    font-size: 18px;
    font-weight: 950;
}

.category-tile p,
.category-overview-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.split-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    gap: 24px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.split-main,
.rank-panel {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.11);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.18;
    overflow: hidden;
    background: #f3f4f6;
}

.poster-link img {
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.05);
}

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), #f97316);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.32);
}

.card-body {
    padding: 16px;
}

.card-meta,
.rank-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.card-meta span,
.rank-meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--soft);
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 950;
}

.movie-card h3 a:hover,
.rank-copy h2 a:hover {
    color: var(--pink-deep);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

.compact-card .card-body {
    padding: 14px;
}

.compact-card p {
    min-height: 0;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 46px 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, #111827, #374151);
}

.rank-thumb {
    display: block;
    height: 96px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
}

.rank-copy h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.rank-copy p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.small-action {
    min-height: 38px;
    padding: 0 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), #f97316);
    font-size: 14px;
}

.mini-rank .rank-row {
    grid-template-columns: 38px 58px minmax(0, 1fr);
}

.mini-rank .rank-row .small-action,
.mini-rank .tag-list,
.mini-rank .rank-meta span:nth-child(n+3) {
    display: none;
}

.mini-rank .rank-thumb {
    height: 78px;
}

.page-hero {
    padding: 48px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255, 250, 235, 0.94), rgba(255, 241, 248, 0.92), rgba(240, 253, 244, 0.92));
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.search-panel {
    margin-bottom: 24px;
    display: grid;
    gap: 14px;
}

.search-label {
    font-weight: 950;
}

.search-wrap {
    position: relative;
}

.search-wrap span {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 22px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    background: #ffffff;
    color: #475467;
    font-weight: 900;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--pink), #f97316);
}

.empty-state {
    display: none;
    padding: 34px;
    border-radius: 24px;
    background: #fff7fb;
    color: var(--pink-deep);
    text-align: center;
    font-weight: 900;
}

.empty-state.show {
    display: block;
}

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

.category-overview-card {
    min-height: 190px;
}

.category-samples {
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-samples a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.08);
    color: var(--pink-deep);
    font-weight: 800;
    font-size: 13px;
}

.detail-main {
    max-width: 1180px;
}

.breadcrumb {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--pink-deep);
}

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 92% 10%, rgba(236, 72, 153, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.94));
    box-shadow: var(--shadow);
}

.detail-poster {
    display: block;
    overflow: hidden;
    border-radius: 30px;
    aspect-ratio: 3 / 4.2;
    background: #f3f4f6;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.detail-copy .lead-text {
    margin: 18px 0;
    color: #475467;
    font-size: 18px;
    line-height: 1.85;
}

.detail-meta {
    margin: 18px 0;
}

.large-tags span {
    font-size: 13px;
}

.detail-copy .primary-action {
    margin-top: 24px;
}

.player-panel {
    margin-top: 34px;
    padding: 30px;
    border-radius: 34px;
    background: #0b1020;
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.player-panel .section-kicker {
    color: #fff7fb;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.52));
    cursor: pointer;
    z-index: 2;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), #f97316);
    box-shadow: 0 20px 44px rgba(236, 72, 153, 0.34);
    font-size: 30px;
    padding-left: 4px;
}

.play-overlay span:last-child {
    font-weight: 950;
    letter-spacing: 0.04em;
}

.detail-text {
    color: #344054;
    line-height: 1.9;
    font-size: 17px;
}

.detail-text h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 26px;
    letter-spacing: -0.03em;
}

.detail-text h2 + p {
    margin: 0 0 24px;
}

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

.site-footer {
    margin-top: 46px;
    padding: 42px 28px 28px;
    background: #101827;
    color: #ffffff;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.site-footer p {
    max-width: 620px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: start;
    gap: 10px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(236, 72, 153, 0.55);
}

.copyright {
    max-width: 1320px;
    margin: 28px auto 0 !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

    .split-block {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        order: -1;
    }
}

@media (max-width: 860px) {
    .header-inner {
        height: 66px;
        padding: 0 18px;
    }

    .brand-name {
        font-size: 16px;
        max-width: 58vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 76px 14px auto 14px;
        display: none;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .nav-link {
        text-align: center;
    }

    main {
        padding: 18px;
    }

    .hero-section {
        min-height: auto;
        padding: 24px;
        border-radius: 30px;
    }

    .hero-track {
        min-height: 760px;
    }

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

    .hero-copy h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-poster {
        max-width: 340px;
        transform: rotate(0);
    }

    .hero-search-line {
        grid-template-columns: 1fr;
    }

    .hero-search-line a {
        min-height: 48px;
        justify-content: center;
    }

    .section-block,
    .split-main,
    .rank-panel,
    .page-hero {
        padding: 22px;
        border-radius: 26px;
    }

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

    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 28px;
    }

    .detail-poster {
        max-width: 330px;
    }

    .rank-row {
        grid-template-columns: 40px 68px minmax(0, 1fr);
    }

    .rank-row .small-action {
        grid-column: 2 / -1;
        width: max-content;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .hero-track {
        min-height: 690px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .movie-card p {
        min-height: auto;
    }

    .rank-row {
        grid-template-columns: 38px 62px minmax(0, 1fr);
        align-items: start;
    }

    .rank-copy p,
    .rank-meta,
    .rank-copy .tag-list {
        display: none;
    }

    .video-shell {
        border-radius: 18px;
    }

    .play-circle {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
