:root {
    --color-page: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-line: #e5e7eb;
    --color-amber: #d97706;
    --color-amber-dark: #92400e;
    --color-orange: #ea580c;
    --color-dark: #111827;
    --color-dark-soft: #1f2937;
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-page);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.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);
    border-bottom: 1px solid rgba(229, 231, 235, 0.80);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.30);
}

.logo-text {
    font-size: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

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

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

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

.header-search-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #374151;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.header-search-link:hover {
    color: var(--color-amber);
    border-color: rgba(217, 119, 6, 0.35);
    background: #fff7ed;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 14px;
}

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

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-nav a {
    padding: 12px 14px;
    font-weight: 700;
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.hero-slide {
    position: relative;
    display: none;
    min-height: 680px;
}

.hero-slide.is-active {
    display: block;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827, #78350f);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(1.08) brightness(0.62);
}

.hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.32), transparent 26%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.88));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 48px;
    min-height: 680px;
    padding: 72px 0 92px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 800;
    color: #fef3c7;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(16px);
}

.hero-title {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.hero-desc {
    max-width: 700px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.meta-pill,
.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    color: #fef3c7;
    background: rgba(217, 119, 6, 0.26);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    font-weight: 800;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 32px rgba(217, 119, 6, 0.36);
}

.btn-primary:hover {
    box-shadow: 0 18px 42px rgba(217, 119, 6, 0.44);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px);
}

.hero-panel a {
    display: block;
}

.hero-panel img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-panel:hover img {
    transform: scale(1.045);
}

.hero-panel-text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.hero-panel-text strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.hero-panel-text span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-arrow,
.hero-dot {
    border: 0;
}

.hero-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-dot {
    width: 28px;
    height: 7px;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 42px;
    background: #f59e0b;
}

.section {
    padding: 64px 0;
}

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

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

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color-amber);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-desc {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-amber);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 158px;
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%),
        linear-gradient(135deg, #92400e, #ea580c);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(3n + 2) {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #7c2d12, #d97706);
}

.category-card:nth-child(3n + 3) {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%),
        linear-gradient(135deg, #111827, #d97706);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.20);
}

.category-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.2;
}

.category-card span {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 190px 190px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: #111827;
    background: #f9fafb;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-bar input:focus,
.filter-bar select:focus {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.50);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
    gap: 24px;
}

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(217, 119, 6, 0.26);
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #92400e);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

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

.image-missing {
    opacity: 0;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.20);
}

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

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

.movie-card h3 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 9px;
    color: #6b7280;
    font-size: 13px;
}

.card-summary {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 78px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

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

.rank-cover {
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #92400e);
    border-radius: 14px;
}

.rank-cover img {
    width: 78px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.rank-title {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 900;
}

.rank-meta {
    color: #6b7280;
    font-size: 14px;
}

.page-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 12%, rgba(251, 191, 36, 0.30), transparent 28%),
        linear-gradient(135deg, #92400e, #ea580c);
    padding: 68px 0;
}

.page-hero h1 {
    max-width: 920px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05em;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

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

.detail-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.30), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937 55%, #78350f);
    padding: 52px 0 62px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 40px;
}

.detail-cover {
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #92400e);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

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

.detail-content h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.detail-content p {
    max-width: 800px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.player-section {
    padding: 52px 0;
    background: #0f172a;
}

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

.player-box {
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.player-stage {
    position: relative;
    background: #000000;
}

.player-stage video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.26);
    border: 0;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
    background: rgba(0, 0, 0, 0.36);
}

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

.play-circle {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    border-radius: 999px;
    box-shadow: 0 18px 46px rgba(217, 119, 6, 0.42);
}

.player-caption {
    padding: 22px;
    color: #ffffff;
}

.player-caption h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
}

.player-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.player-error {
    display: none;
    margin-top: 12px;
    color: #fecaca;
    font-weight: 700;
}

.player-error.is-active {
    display: block;
}

.side-panel {
    padding: 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
}

.side-panel h2,
.side-panel h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 900;
}

.side-panel p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.76);
}

.article-section {
    padding: 54px 0;
}

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

.prose-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.prose-card + .prose-card {
    margin-top: 20px;
}

.prose-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.prose-card p {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

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

.tag-cloud .tag-pill {
    color: #92400e;
    background: #fff7ed;
    border-color: #fed7aa;
}

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

.related-link {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-link:hover {
    border-color: rgba(217, 119, 6, 0.35);
    transform: translateY(-2px);
}

.related-link img {
    width: 58px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #111827, #92400e);
    border-radius: 12px;
}

.related-title {
    display: block;
    overflow: hidden;
    color: #111827;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.related-meta {
    display: block;
    margin-top: 3px;
    color: #6b7280;
    font-size: 13px;
}

.empty-state {
    display: none;
    padding: 28px;
    color: #6b7280;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 20px;
}

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

.site-footer {
    color: #d1d5db;
    background: #111827;
    padding: 54px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.footer-text {
    max-width: 420px;
    margin: 0;
    color: #9ca3af;
}

.footer-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .main-nav,
    .header-search-link {
        display: none;
    }

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

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

    .hero-panel,
    .detail-cover {
        max-width: 360px;
    }

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

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

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

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

    .header-inner {
        height: 62px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-slide,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        gap: 28px;
        padding: 48px 0 82px;
    }

    .hero-desc,
    .page-hero p,
    .detail-content p {
        font-size: 16px;
    }

    .hero-controls {
        bottom: 18px;
    }

    .section {
        padding: 46px 0;
    }

    .section-head {
        display: block;
    }

    .section-head .text-link {
        margin-top: 12px;
    }

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

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

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

    .rank-item {
        grid-template-columns: 42px 62px minmax(0, 1fr);
    }

    .rank-item .btn {
        grid-column: 1 / -1;
    }

    .rank-cover img {
        width: 62px;
    }

    .page-hero,
    .detail-hero {
        padding: 44px 0;
    }

    .detail-cover {
        max-width: 260px;
    }

    .player-section,
    .article-section {
        padding: 36px 0;
    }

    .prose-card {
        padding: 22px;
    }
}
