:root {
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --emerald-400: #34d399;
    --emerald-100: #d1fae5;
    --emerald-50: #ecfdf5;
    --gray-950: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 35px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 26px 60px rgba(5, 95, 70, 0.26);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 42%, #f8fafc 100%);
    line-height: 1.65;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--green-700), var(--green-500), #0ea56f);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.28);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 0 6px rgba(16, 185, 129, 0.12);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 3px;
    color: rgba(236, 253, 245, 0.88);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-left: auto;
    white-space: nowrap;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
    transform: translateY(-1px);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.nav-search input {
    width: 160px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    padding: 8px 2px 8px 12px;
}

.nav-search input::placeholder {
    color: rgba(236, 253, 245, 0.82);
}

.nav-search button {
    border: 0;
    color: var(--green-700);
    background: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

.home-hero,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 20% 18%, rgba(209, 250, 229, 0.36), transparent 26%), linear-gradient(135deg, var(--green-900), var(--green-600) 45%, #08a876);
}

.home-hero {
    min-height: 640px;
    padding: 72px 0 96px;
}

.hero-slider {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    min-height: 470px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 50px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 14px;
    color: #c7f9dc;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.12;
}

.hero-copy p,
.page-hero p,
.detail-copy .lead-text {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(236, 253, 245, 0.9);
    font-size: 18px;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.tag-row span {
    color: var(--green-700);
    background: var(--emerald-50);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn.primary {
    color: var(--green-700);
    background: var(--white);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.2);
}

.btn.ghost {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42));
}

.hero-controls {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 26px auto 0;
}

.hero-controls button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 26px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots .hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots .hero-dot.is-active {
    width: 32px;
    background: var(--white);
}

.hero-wave {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -1px;
    height: 90px;
    background: #f0fdf4;
    clip-path: ellipse(60% 70% at 50% 100%);
}

.section-block {
    padding: 72px 0;
}

.soft-bg {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #e6fffa 100%);
}

.white-bg {
    background: var(--white);
}

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

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

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

.section-more,
.text-link {
    color: var(--green-700);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.92), rgba(16, 185, 129, 0.82));
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.24;
    transform: scale(1.08);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card:hover img {
    opacity: 0.34;
    transform: scale(1.15);
}

.category-card strong,
.category-card em,
.category-card .category-icon {
    position: relative;
    z-index: 2;
}

.category-card strong {
    display: block;
    margin-top: 36px;
    font-size: 22px;
}

.category-card em {
    display: block;
    margin-top: 8px;
    color: rgba(236, 253, 245, 0.86);
    font-style: normal;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.92);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-100), #ffffff);
}

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

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

.movie-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-500);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card-body h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body h3 a:hover,
.rank-info h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--green-700);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-meta-row span {
    display: inline-flex;
    align-items: center;
}

.movie-meta-row span + span::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.75fr);
    gap: 28px;
}

.movie-card.featured {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) 1fr;
    height: 100%;
}

.movie-card.featured .poster-link {
    aspect-ratio: auto;
}

.movie-card.featured .movie-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.movie-card.featured h3 {
    font-size: 30px;
}

.movie-card.featured p {
    min-height: auto;
    font-size: 16px;
    -webkit-line-clamp: 4;
}

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

.rank-card {
    display: grid;
    grid-template-columns: auto 96px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-600), var(--emerald-400));
    font-weight: 900;
}

.rank-poster {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background: var(--emerald-50);
}

.rank-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rank-info p {
    margin: 0 0 10px;
    color: var(--gray-600);
    font-size: 14px;
}

.compact .rank-card {
    grid-template-columns: 76px minmax(0, 1fr);
}

.compact .rank-number {
    display: none;
}

.compact .rank-poster {
    grid-column: 1;
}

.compact .rank-info {
    grid-column: 2;
}

.cta-panel {
    border-radius: 32px;
    padding: clamp(32px, 7vw, 72px);
    color: var(--white);
    text-align: center;
    background: radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.26), transparent 24%), linear-gradient(135deg, var(--green-700), var(--green-500));
    box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
}

.cta-panel p {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(236, 253, 245, 0.9);
    font-size: 18px;
}

.cta-actions {
    justify-content: center;
}

.cta-actions a {
    border-radius: 999px;
    padding: 11px 20px;
    color: var(--green-700);
    background: var(--white);
    font-weight: 800;
}

.page-hero {
    padding: 92px 0 78px;
}

.compact-hero {
    min-height: 280px;
}

.rank-hero {
    min-height: 340px;
}

.page-hero h1 {
    max-width: 760px;
}

.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;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.category-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: var(--emerald-50);
}

.category-overview-card h2 {
    margin: 4px 0 10px;
    font-size: 24px;
}

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

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.sample-links a {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green-700);
    background: var(--emerald-50);
    font-size: 13px;
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.wide-filter {
    grid-template-columns: minmax(240px, 1fr) 180px 160px 160px;
}

.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    color: var(--gray-800);
    background: #fbfffd;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.empty-state {
    display: none;
    margin-top: 24px;
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--gray-600);
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.big-rank .rank-card {
    grid-template-columns: 52px 120px minmax(0, 1fr);
    padding: 14px;
}

.detail-hero {
    padding: 46px 0 72px;
}

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

.breadcrumb {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(236, 253, 245, 0.86);
    font-size: 14px;
}

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

.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 30px;
    background: var(--emerald-50);
    box-shadow: var(--shadow-lg);
}

.detail-copy h1 {
    max-width: 820px;
}

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

.info-list li {
    display: grid;
    gap: 4px;
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.info-list strong {
    color: rgba(236, 253, 245, 0.86);
    font-size: 12px;
}

.info-list span {
    color: var(--white);
    font-weight: 800;
}

.player-section {
    padding-bottom: 32px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.95);
    font-size: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.player-cover strong {
    font-size: 22px;
}

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

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

.content-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.content-card p {
    margin: 0;
    color: var(--gray-700);
}

.info-list.vertical {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
}

.info-list.vertical li {
    background: var(--emerald-50);
}

.info-list.vertical strong {
    color: var(--green-700);
}

.info-list.vertical span {
    color: var(--gray-800);
}

.site-footer {
    margin-top: 40px;
    padding: 42px 0 28px;
    color: rgba(236, 253, 245, 0.86);
    background: var(--green-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.site-footer p {
    max-width: 620px;
    margin: 12px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 12px;
    }

    .nav-search input {
        width: 120px;
    }

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

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

    .side-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {
    .nav-wrap {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .site-nav {
        order: 5;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-left: 0;
        padding: 12px 0 4px;
    }

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

    .site-nav a {
        padding: 10px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-search {
        order: 4;
        width: 100%;
    }

    .nav-search input {
        width: 100%;
    }

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

    .home-hero {
        min-height: 880px;
        padding-top: 48px;
    }

    .hero-slider {
        min-height: 720px;
    }

    .hero-poster {
        width: min(320px, 78vw);
        margin: 0 auto;
    }

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

    .feature-layout,
    .detail-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(340px, 86vw);
    }

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

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

    .brand-text strong {
        font-size: 19px;
    }

    .home-hero {
        min-height: 820px;
        padding-bottom: 70px;
    }

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 36px;
    }

    .hero-copy h2 {
        font-size: 28px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-copy .lead-text {
        font-size: 16px;
    }

    .section-block {
        padding: 48px 0;
    }

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

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

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

    .movie-card-body h3 {
        font-size: 16px;
    }

    .movie-card-body p {
        font-size: 13px;
    }

    .movie-card.featured {
        grid-template-columns: 1fr;
    }

    .movie-card.featured .poster-link {
        aspect-ratio: 3 / 4;
    }

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

    .movie-card.featured h3 {
        font-size: 22px;
    }

    .rank-card,
    .big-rank .rank-card {
        grid-template-columns: 42px 82px minmax(0, 1fr);
        gap: 10px;
    }

    .compact .rank-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .rank-info h3 {
        font-size: 16px;
    }

    .rank-info p {
        display: none;
    }

    .category-overview-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 14px;
    }

    .category-overview-card h2 {
        font-size: 20px;
    }

    .sample-links {
        display: none;
    }

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

    .detail-hero {
        padding-top: 30px;
    }

    .info-list,
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .player-cover span {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }

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

@media (max-width: 420px) {
    .category-grid,
    .movie-grid,
    .large-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

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

    .category-cover {
        max-height: 260px;
    }
}
