:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --red-500: #ef4444;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 30px 80px rgba(2, 6, 23, 0.36);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 32rem),
        linear-gradient(180deg, #fff7ed 0%, var(--slate-50) 18rem, #ffffff 100%);
    min-width: 320px;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.32);
}

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: #cbd5e1;
    font-size: 0.74rem;
    margin-top: 4px;
}

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

.nav-links a {
    position: relative;
    padding: 24px 0;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--amber-400);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--amber-400);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-panel {
    display: none;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 640px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-track,
.hero-slide,
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 42px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    padding: 80px 0 96px;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) saturate(1.2) brightness(0.52);
    transform: scale(1.08);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 24%, rgba(251, 191, 36, 0.32), transparent 26rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.38) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 46%);
}

.hero-content {
    color: var(--white);
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-400);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.lead-text {
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.8;
}

.hero-tags,
.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.mini-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 12px;
    font-size: 0.86rem;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-btn,
.ghost-btn,
.section-more,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--red-500));
    padding: 13px 24px;
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.34);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 12px 20px;
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    align-self: stretch;
    display: block;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(16px);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: max(18px, calc((100vw - 1220px) / 2));
}

.hero-next {
    right: max(18px, calc((100vw - 1220px) / 2));
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 28px;
    background: var(--amber-400);
}

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

.section-wrap {
    padding: 70px 0 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 28px;
}

.section-heading.compact {
    margin-bottom: 22px;
}

.section-kicker {
    display: inline-block;
    color: var(--amber-600);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading h2,
.player-section h2,
.detail-content h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--slate-600);
    line-height: 1.8;
    font-size: 1.04rem;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.86);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease, filter 0.42s ease;
}

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.58), transparent 58%);
}

.year-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
}

.year-badge {
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(245, 158, 11, 0.94);
    font-size: 0.82rem;
}

.play-badge {
    left: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.movie-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--slate-900);
}

.movie-card h3 a:hover {
    color: var(--amber-600);
}

.movie-meta {
    margin: 8px 0 0;
    color: var(--slate-500);
    font-size: 0.88rem;
    font-weight: 700;
}

.movie-desc {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 0.94rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-tags {
    margin-top: 14px;
    gap: 8px;
}

.mini-tags span {
    color: var(--slate-700);
    background: var(--slate-100);
    border: 1px solid #e2e8f0;
    padding: 5px 9px;
    font-size: 0.78rem;
}

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

.category-card {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 22px;
    color: var(--white);
    background: var(--slate-900);
    box-shadow: var(--shadow-soft);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.58;
    transition: transform 0.4s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.14));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 1.35rem;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 0;
    color: #e2e8f0;
    line-height: 1.6;
}

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

.ranking-panel {
    position: relative;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-list li a:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.54);
}

.rank-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    font-weight: 900;
}

.rank-title {
    color: var(--slate-900);
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--slate-500);
    font-size: 0.88rem;
    font-weight: 700;
}

.section-more,
.text-link {
    color: var(--amber-700, #b45309);
    margin-top: 22px;
}

.filter-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.search-box {
    display: grid;
    gap: 8px;
    color: var(--slate-700);
    font-weight: 900;
}

.search-box input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--slate-900);
    background: var(--white);
    outline: none;
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

.filter-chips button {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--white);
    padding: 8px 14px;
    font-weight: 800;
}

.filter-chips button.is-active,
.filter-chips button:hover {
    color: var(--white);
    background: var(--slate-900);
    border-color: var(--slate-900);
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 24px;
    text-align: center;
    color: var(--slate-500);
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
}

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

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    min-height: 320px;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at right top, rgba(251, 191, 36, 0.38), transparent 28rem),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
    box-shadow: var(--shadow-strong);
}

.small-hero,
.category-hero,
.ranking-hero {
    min-height: 270px;
}

.page-hero p {
    max-width: 720px;
}

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

.overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
}

.overview-cover {
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 190px;
    background: var(--slate-900);
}

.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-card h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--slate-900);
}

.overview-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

.overview-card ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    color: var(--slate-700);
    font-weight: 700;
}

.overview-card li a:hover {
    color: var(--amber-600);
}

.detail-layout {
    padding-top: 36px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--slate-500);
    font-weight: 800;
    margin-bottom: 18px;
}

.breadcrumb a:hover {
    color: var(--amber-600);
}

.detail-head {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 36px;
    padding: 30px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at right top, rgba(245, 158, 11, 0.35), transparent 28rem),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
    box-shadow: var(--shadow-strong);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    min-height: 430px;
    background: var(--slate-900);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info h1 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.detail-info .lead-text {
    color: #e2e8f0;
}

.detail-tags span {
    background: rgba(255, 255, 255, 0.12);
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.detail-meta-grid span {
    display: grid;
    gap: 5px;
    border-radius: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-meta-grid strong {
    color: var(--amber-400);
    font-size: 0.84rem;
}

.player-section,
.detail-content {
    margin-top: 34px;
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
}

.player-section h2,
.detail-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.player-shell {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 24px;
    background: #000000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24);
}

.movie-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: var(--white);
    background:
        linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.22)),
        rgba(2, 6, 23, 0.18);
    cursor: pointer;
}

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

.play-circle {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.42);
    font-size: 1.8rem;
}

.detail-content {
    color: var(--slate-700);
    line-height: 1.95;
    font-size: 1.05rem;
}

.detail-content h2 + p {
    margin-top: 10px;
}

.detail-content p + h2 {
    margin-top: 26px;
}

.related-wrap {
    width: 100%;
}

.site-footer {
    margin-top: 80px;
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-900), #000000);
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1.15rem;
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
}

@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }

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

    .mobile-panel.is-open {
        position: fixed;
        inset: 74px 0 auto 0;
        display: grid;
        gap: 2px;
        padding: 18px 24px 26px;
        color: var(--white);
        background: rgba(15, 23, 42, 0.98);
        box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
    }

    .mobile-panel a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-weight: 800;
    }

    .hero-slide {
        grid-template-columns: 1fr 280px;
    }

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

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

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

@media (max-width: 760px) {
    .hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 22px;
        padding: 46px 0 86px;
    }

    .hero-poster {
        min-height: 280px;
        order: -1;
    }

    .hero-arrow {
        top: auto;
        bottom: 22px;
        width: 42px;
        height: 42px;
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .hero-dots {
        bottom: 36px;
    }

    .section-wrap {
        padding-top: 48px;
    }

    .all-movie-grid,
    .featured-grid,
    .category-grid,
    .ranking-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ranking-list li a {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 2;
    }

    .page-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .overview-card,
    .detail-head {
        grid-template-columns: 1fr;
    }

    .overview-cover {
        min-height: 240px;
    }

    .detail-poster {
        min-height: 320px;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .player-section,
    .detail-content {
        padding: 20px;
    }
}

@media (max-width: 460px) {
    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: 1.1rem;
    }

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        letter-spacing: -0.04em;
    }

    .hero-actions {
        display: grid;
    }
}
