:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --red: #dc2626;
    --yellow: #f59e0b;
    --teal: #0d9488;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.75rem;
    --shadow-soft: 0 14px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: var(--slate-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

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

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 72px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.35);
}

.brand-text {
    font-size: 1.45rem;
    background: linear-gradient(90deg, #fb923c, #ef4444);
    -webkit-background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-link {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fb923c;
}

.header-search {
    position: relative;
    width: 260px;
}

.header-search input,
.mobile-search input,
.search-hero-form input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--white);
    background: rgba(51, 65, 85, 0.92);
    border-radius: 999px;
    padding: 11px 45px 11px 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-search input:focus,
.mobile-search input:focus,
.search-hero-form input:focus {
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.35);
}

.header-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

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

.mobile-nav {
    display: grid;
    gap: 12px;
    padding: 16px 0;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.mobile-search {
    display: flex;
    gap: 10px;
}

.mobile-search button,
.search-hero-form button {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 0 20px;
    cursor: pointer;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.2)), linear-gradient(0deg, rgba(15, 23, 42, 1), transparent 55%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 760px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 12px;
    color: #fed7aa;
    background: rgba(234, 88, 12, 0.16);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

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

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

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 13px 26px;
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.28);
}

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

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    padding: 12px 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--orange);
}

.section {
    padding: 64px 0;
}

.section-blue {
    background: linear-gradient(180deg, #eff6ff, var(--white));
}

.section-soft {
    background: linear-gradient(135deg, #fff7ed, #ecfeff);
}

.section-dark {
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.section-heading h2 {
    margin: 0 0 6px;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--slate-600);
}

.heading-light p,
.heading-light a {
    color: rgba(255, 255, 255, 0.74);
}

.section-heading a,
.text-link {
    color: var(--orange);
    font-weight: 800;
}

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

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

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

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

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    color: var(--slate-900);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--slate-800);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 2 / 3;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 60%);
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.poster-region,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
}

.poster-region {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: var(--orange);
}

.rank-badge {
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.movie-card strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.movie-card em {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 0.84rem;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-card span:last-child {
    display: -webkit-box;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.movie-list-card {
    display: flex;
    overflow: hidden;
    gap: 16px;
    min-width: 0;
    padding: 12px;
    border-radius: var(--radius-xl);
    color: inherit;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-dark .movie-list-card {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.movie-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.list-cover {
    position: relative;
    flex: 0 0 116px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--slate-800);
    aspect-ratio: 4 / 3;
}

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

.list-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.list-content strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-content em {
    color: var(--slate-500);
    font-size: 0.86rem;
    font-style: normal;
}

.section-dark .list-content em,
.section-dark .list-content span {
    color: rgba(255, 255, 255, 0.72);
}

.list-content span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-pill {
    display: block;
    min-height: 156px;
    padding: 24px;
    border-radius: var(--radius-2xl);
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.45), transparent 35%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.category-pill strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.category-pill span {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.ranking-panel,
.side-card,
.prose-card,
.support-grid article {
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.ranking-panel h2 {
    margin: 0 0 20px;
}

.ranking-list,
.ranking-page-list {
    display: grid;
    gap: 14px;
}

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

.page-hero {
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.35), transparent 30%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.small-hero {
    padding: 70px 0;
}

.rank-hero {
    padding: 92px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.breadcrumb a:hover {
    color: #fed7aa;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-thumb-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    overflow: hidden;
    border-radius: 18px;
}

.category-thumb-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 0 0 10px;
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--slate-600);
}

.category-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.category-filter-row a {
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--slate-700);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    font-weight: 800;
}

.category-filter-row a:hover,
.category-filter-row a.is-current {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.search-hero-form {
    display: flex;
    gap: 12px;
    max-width: 680px;
}

.search-hero-form input {
    color: var(--slate-900);
    background: var(--white);
    padding-right: 18px;
}

.search-status {
    margin-bottom: 24px;
    color: var(--slate-600);
    font-weight: 800;
}

.search-card-hidden {
    display: none;
}

.player-section {
    padding: 34px 0 46px;
    background: var(--slate-950);
}

.dark-breadcrumb {
    margin-bottom: 20px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: #000;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    padding: 0;
    background: #000;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.cover-dark {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.2), rgba(2, 6, 23, 0.72));
}

.play-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-size: 2rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 18px rgba(234, 88, 12, 0.2), 0 24px 55px rgba(0, 0, 0, 0.4);
}

.player-toolbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
}

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

.toolbar-left strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.player-toolbar button {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    cursor: pointer;
}

.player-toolbar button:hover {
    background: var(--orange);
}

.detail-section {
    background: var(--slate-50);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.detail-article,
.side-card {
    padding: 28px;
}

.detail-article {
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-article h1 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.lead {
    color: var(--slate-700);
    font-size: 1.15rem;
    font-weight: 700;
}

.content-block {
    margin-top: 30px;
}

.content-block h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.content-block p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1.02rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--orange-dark);
    background: #ffedd5;
    font-weight: 800;
}

.next-prev {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.next-prev a {
    overflow: hidden;
    border-radius: 16px;
    padding: 14px;
    color: var(--slate-700);
    background: var(--slate-100);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.next-prev a:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.detail-sidebar {
    position: sticky;
    top: 96px;
}

.cover-card img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.cover-card h2 {
    margin: 18px 0 14px;
}

.cover-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.cover-card li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--slate-100);
    padding-bottom: 10px;
}

.cover-card li span {
    color: var(--slate-600);
    text-align: right;
}

.full-button {
    width: 100%;
}

.prose-card {
    padding: 34px;
}

.prose-card h2 {
    margin: 0 0 10px;
}

.prose-card p {
    margin: 0 0 24px;
    color: var(--slate-700);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.support-grid article {
    padding: 28px;
}

.support-grid h2 {
    margin-top: 0;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.2rem;
}

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

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

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

.site-footer a:hover {
    color: #fb923c;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 20px 16px;
    text-align: center;
}

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

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

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

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

    .ranking-panel,
    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        width: min(100% - 32px, 760px);
        padding-top: 40px;
    }

    .section-heading,
    .search-hero-form {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .spotlight-grid,
    .category-overview-grid,
    .top-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .brand-text {
        font-size: 1.18rem;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.3rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions,
    .mobile-search {
        flex-direction: column;
        width: 100%;
    }

    .primary-button,
    .ghost-button,
    .mobile-search button,
    .search-hero-form button {
        width: 100%;
        min-height: 44px;
    }

    .section {
        padding: 44px 0;
    }

    .movie-grid,
    .large-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

    .movie-list-card {
        gap: 12px;
    }

    .list-cover {
        flex-basis: 96px;
    }

    .player-toolbar {
        padding: 12px;
    }

    .toolbar-left strong,
    .player-toolbar button[data-player-action="mute"] {
        display: none;
    }

    .play-pulse {
        width: 66px;
        height: 66px;
        font-size: 1.5rem;
    }

    .detail-article,
    .side-card,
    .prose-card {
        padding: 20px;
    }

    .next-prev {
        grid-template-columns: 1fr;
    }
}
