:root {
    --bg: #fff7ed;
    --paper: #ffffff;
    --ink: #1f2937;
    --muted: #6b7280;
    --soft: #fff1f2;
    --line: #fed7aa;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --pink: #ec4899;
    --yellow: #facc15;
    --shadow: 0 18px 48px rgba(249, 115, 22, 0.14);
    --shadow-card: 0 12px 28px rgba(31, 41, 55, 0.12);
    --radius: 24px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.12), transparent 28rem),
        radial-gradient(circle at 90% 12%, rgba(236, 72, 153, 0.13), transparent 24rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
    min-height: 100vh;
}

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

img,
video {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(254, 215, 170, 0.88);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.11);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.28);
}

.brand-title {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-subtitle {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
    color: #374151;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--orange);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form {
    position: relative;
    width: min(280px, 28vw);
}

.search-form input,
.filter-input {
    width: 100%;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 12px 48px 12px 18px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    color: var(--ink);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.search-form input:focus,
.filter-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.search-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.mobile-panel {
    display: none;
    padding: 0 0 18px;
}

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

.mobile-panel nav {
    display: grid;
    gap: 10px;
}

.mobile-panel a {
    padding: 12px 0;
    border-bottom: 1px solid #ffedd5;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #111827;
}

.hero-stage,
.hero-slide,
.hero-slide::before,
.hero-slide img {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08);
    transform: scale(1.02);
}

.hero-slide::before {
    content: "";
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.94), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 590px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-copy {
    max-width: 720px;
    padding: 64px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #fdba74;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero p {
    margin: 0 0 26px;
    max-width: 680px;
    font-size: clamp(17px, 2.6vw, 23px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.hero-meta,
.detail-meta,
.card-meta,
.inline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 16px 35px rgba(236, 72, 153, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 42px rgba(236, 72, 153, 0.32);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 22px;
    transform: translateY(-50%);
}

.hero-next {
    right: 22px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.52);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.section {
    padding: 58px 0;
}

.section-tight {
    padding: 34px 0;
}

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

.section-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.045em;
}

.section-desc {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(249, 115, 22, 0.22);
}

.movie-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #3b0764);
}

.poster-wide {
    aspect-ratio: 16 / 9;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster img,
.related-item:hover img,
.rank-card:hover img {
    transform: scale(1.08);
}

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

.badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.year-badge {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.play-float {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-float,
.related-item:hover .play-float,
.rank-card:hover .play-float {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.card-title {
    margin: 0 0 10px;
    min-height: 2.7em;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.025em;
    transition: color 0.25s ease;
}

.movie-card:hover .card-title {
    color: var(--orange);
}

.card-text {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    margin-top: auto;
    color: var(--muted);
    font-size: 13px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border-radius: var(--radius);
    padding: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: auto -18% -40% 34%;
    height: 140px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.18), rgba(236, 72, 153, 0.18));
    transform: rotate(-10deg);
}

.category-card:hover {
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(236, 72, 153, 0.26);
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.category-card h3 {
    position: relative;
    margin: 0 0 8px;
    font-size: 24px;
}

.category-card p {
    position: relative;
    margin: 0;
    line-height: 1.65;
    color: currentColor;
    opacity: 0.8;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 78px 150px 1fr auto;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(249, 115, 22, 0.18);
}

.rank-num {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.rank-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    background: #111827;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rank-info h2,
.rank-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 68px 0 54px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.24), transparent 18rem),
        linear-gradient(135deg, var(--orange), var(--pink));
}

.page-hero h1 {
    margin: 0 0 14px;
    max-width: 900px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.filter-bar {
    margin: 28px 0 30px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 14px;
    align-items: center;
}

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

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    color: #374151;
    background: #fff7ed;
    font-weight: 800;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: #ffffff;
    transform: translateY(-1px);
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.empty-state {
    display: none;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.1);
    transform: scale(1.04);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.86)),
        linear-gradient(0deg, rgba(17, 24, 39, 1), transparent 42%);
}

.detail-inner {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 38px;
    align-items: center;
    padding: 54px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #fdba74;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.detail-copy p {
    max-width: 820px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.watch-panel {
    margin-top: -56px;
    position: relative;
    z-index: 5;
}

.player-card {
    overflow: hidden;
    border-radius: 30px;
    background: #030712;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.35);
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
}

.player-cover.is-hidden {
    display: none;
}

.player-cover span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.94);
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.player-cover b {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.content-card,
.related-card {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.content-card {
    padding: 34px;
}

.content-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -0.035em;
}

.content-card p {
    margin: 0 0 26px;
    color: #4b5563;
    line-height: 1.9;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 28px;
}

.tag-cloud a,
.tag-cloud span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #ffedd5;
    font-size: 14px;
    font-weight: 800;
}

.review-box {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.related-card {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    padding: 22px;
}

.related-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

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

.related-item {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.25s ease;
}

.related-item:hover {
    background: #fff7ed;
}

.related-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: #111827;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.related-info h3 {
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.35;
}

.related-info p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    margin-top: 60px;
    padding: 38px 0;
    color: #ffffff;
    background: #111827;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(90deg, #fdba74, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
    color: #fdba74;
}

[hidden] {
    display: none !important;
}

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

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

    .detail-layout,
    .detail-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    :root {
        --header-height: 66px;
    }

    .main-nav,
    .header-actions .search-form {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero,
    .hero-content {
        min-height: 560px;
    }

    .hero-control {
        display: none;
    }

    .grid-cards,
    .grid-three,
    .grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

    .rank-card {
        grid-template-columns: 48px 96px 1fr;
    }

    .rank-card .btn {
        grid-column: 2 / -1;
        width: fit-content;
    }

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

    .detail-inner {
        gap: 24px;
    }

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

    .content-card {
        padding: 24px;
    }

    .related-card {
        position: static;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 520px;
    }

    .hero-copy {
        padding: 48px 0;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .grid-cards,
    .grid-three,
    .grid-two,
    .category-strip {
        grid-template-columns: 1fr;
    }

    .rank-card {
        grid-template-columns: 44px 86px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .rank-info p {
        display: none;
    }

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

    .watch-panel {
        margin-top: -30px;
    }
}
