:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.06);
    --shadow-md: 0 10px 25px rgb(15 23 42 / 0.10);
    --shadow-xl: 0 24px 60px rgb(15 23 42 / 0.20);
    --radius-lg: 18px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(255 255 255 / 0.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.nav-container {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-grid;
    place-items: center;
    background: var(--teal-600);
    color: var(--white);
    box-shadow: 0 10px 25px rgb(20 184 166 / 0.32);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 14px);
    width: 190px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.dropdown-panel a:hover {
    background: var(--teal-50);
    color: var(--teal-700);
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.page-search-form input,
.filter-panel input,
.filter-panel select {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: var(--white);
    color: var(--gray-900);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 250px;
    padding: 10px 14px;
}

.nav-search button,
.mobile-search button,
.page-search-form button {
    border: 0;
    border-radius: 14px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--teal-600);
    cursor: pointer;
    font-weight: 700;
}

.nav-search input:focus,
.mobile-search input:focus,
.page-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 4px rgb(20 184 166 / 0.14);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--gray-100);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--gray-900);
}

.mobile-panel {
    display: none;
    padding: 0 24px 18px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

.mobile-link,
.mobile-sub-link {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-link.active,
.mobile-sub-link:hover {
    color: var(--teal-600);
}

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

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

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 13px;
}

.hero-carousel {
    background: var(--gray-900);
}

.hero-stage {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    background: linear-gradient(100deg, var(--gray-900), var(--gray-800));
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(17 24 39 / 0.96) 0%, rgb(17 24 39 / 0.78) 48%, rgb(17 24 39 / 0.38) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 600px;
    margin: 0 auto;
    padding: 72px 24px 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
    color: var(--white);
}

.hero-kicker,
.page-hero span,
.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-100);
    background: rgb(20 184 166 / 0.18);
    border: 1px solid rgb(20 184 166 / 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgb(255 255 255 / 0.82);
    font-size: 19px;
}

.hero-tags,
.genre-tags,
.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags a,
.hero-tags span,
.genre-tags span,
.detail-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgb(255 255 255 / 0.12);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    background: var(--teal-600);
    color: var(--white);
    box-shadow: 0 16px 30px rgb(20 184 166 / 0.28);
}

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

.ghost-button {
    color: var(--white);
    background: rgb(255 255 255 / 0.14);
    border: 1px solid rgb(255 255 255 / 0.24);
}

.ghost-button.light {
    color: var(--gray-900);
    background: var(--white);
    border-color: transparent;
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-600), var(--gray-800));
    box-shadow: var(--shadow-xl);
}

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

.hero-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.48);
    color: var(--white);
    font-size: 34px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-control:hover {
    background: rgb(0 0 0 / 0.72);
}

.hero-control.prev {
    left: 22px;
}

.hero-control.next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.5);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.content-section,
.page-main .content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

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

.section-heading.compact {
    align-items: center;
}

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

.section-heading a {
    color: var(--teal-600);
    font-weight: 800;
}

.section-heading.dark h2,
.section-heading.dark a {
    color: var(--white);
}

.section-heading.dark span {
    color: var(--teal-100);
}

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

.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-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-500), var(--gray-800));
}

.wide-card .poster-frame {
    aspect-ratio: 4 / 3;
}

.movie-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.2s ease;
}

.movie-cover.is-missing,
.compact-movie img.is-missing,
.hero-poster img.is-missing {
    opacity: 0;
}

.movie-card:hover .movie-cover {
    transform: scale(1.08);
}

.cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / 0.55));
}

.region-badge,
.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.region-badge {
    top: 12px;
    left: 12px;
    background: var(--teal-600);
}

.year-badge {
    right: 12px;
    bottom: 12px;
    background: rgb(0 0 0 / 0.68);
}

.rank-badge {
    top: 12px;
    right: 12px;
    background: #f97316;
}

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

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

.movie-card-body h2 a:hover {
    color: var(--teal-700);
}

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

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

.movie-meta span {
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--gray-100);
}

.category-section,
.dark-section,
.channel-hero,
.ranking-hero,
.search-hero {
    border-radius: var(--radius-xl);
}

.category-section {
    background: linear-gradient(135deg, var(--teal-50), #eff6ff);
}

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

.category-tile,
.category-card-large {
    display: block;
    padding: 22px;
    border-radius: 22px;
    background: rgb(255 255 255 / 0.82);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-tile span,
.category-title {
    display: block;
    color: var(--teal-700);
    font-size: 20px;
    font-weight: 900;
}

.category-tile strong,
.category-card-large p {
    display: block;
    margin: 12px 0;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
}

.category-tile em {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

.two-column-section,
.ranking-layout,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
}

.ranking-panel,
.rank-board,
.sidebar-card {
    border-radius: var(--radius-xl);
    padding: 26px;
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.ranking-list,
.rank-board-list,
.sidebar-list,
.category-samples {
    display: grid;
    gap: 14px;
}

.compact-movie,
.rank-row {
    display: grid;
    grid-template-columns: auto 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    color: inherit;
    transition: background 0.2s ease;
}

.compact-movie:hover,
.rank-row:hover {
    background: rgb(255 255 255 / 0.08);
}

.compact-movie img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal-600), var(--gray-700));
}

.compact-rank,
.rank-row span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: var(--teal-600);
    font-size: 12px;
    font-weight: 900;
}

.compact-rank.dot {
    color: var(--teal-600);
    background: transparent;
}

.compact-movie strong,
.rank-row strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.compact-movie em,
.rank-row em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgb(255 255 255 / 0.62);
    font-size: 12px;
    font-style: normal;
}

.dark-section {
    background: var(--gray-900);
}

.dark-section .movie-card {
    background: var(--gray-800);
    color: var(--white);
}

.dark-section .movie-card-body p,
.dark-section .movie-meta {
    color: rgb(255 255 255 / 0.68);
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 24px;
    color: var(--white);
    text-align: center;
    background: radial-gradient(circle at top left, rgb(20 184 166 / 0.36), transparent 34%), linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.page-hero h1 {
    max-width: 860px;
    margin: 18px auto 16px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 780px;
    margin: 0 auto;
    color: rgb(255 255 255 / 0.76);
    font-size: 18px;
}

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

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

.category-card-large {
    background: var(--white);
}

.category-card-large .compact-movie {
    color: var(--gray-900);
    background: var(--gray-50);
}

.category-card-large .compact-movie:hover {
    background: var(--teal-50);
}

.category-card-large .compact-movie em {
    color: var(--gray-500);
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.page-search-form input {
    width: 100%;
    padding: 12px 14px;
}

.empty-state {
    display: none;
    padding: 26px;
    border-radius: 18px;
    color: var(--gray-500);
    background: var(--white);
    text-align: center;
}

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

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

.rank-board {
    position: sticky;
    top: 92px;
    align-self: start;
    background: var(--white);
    color: var(--gray-900);
}

.rank-board h2,
.sidebar-card h2 {
    margin: 0 0 18px;
}

.rank-board .rank-row {
    grid-template-columns: 34px minmax(0, 1fr);
    color: var(--gray-900);
    background: var(--gray-50);
}

.rank-board .rank-row em {
    color: var(--gray-500);
}

.rank-board .rank-row:hover {
    background: var(--teal-50);
}

.rank-board .rank-row span {
    grid-row: span 2;
}

.page-search-form {
    max-width: 720px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
}

.player-section {
    background: #000000;
}

.player-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.video-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
    overflow: hidden;
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--white);
    background: linear-gradient(180deg, rgb(0 0 0 / 0.18), rgb(0 0 0 / 0.55));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--teal-600);
    box-shadow: 0 20px 44px rgb(20 184 166 / 0.38);
    font-size: 28px;
    text-indent: 4px;
}

.player-error {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    display: none;
    border-radius: 14px;
    padding: 10px 14px;
    color: var(--white);
    background: rgb(220 38 38 / 0.92);
}

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

.detail-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 70px;
}

.detail-main-card,
.text-card,
.sidebar-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.detail-main-card {
    padding: 30px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--gray-500);
    font-size: 14px;
}

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

.breadcrumb em {
    font-style: normal;
    color: var(--gray-700);
}

.detail-badges span,
.genre-tags span {
    color: var(--gray-700);
    background: var(--gray-100);
}

.detail-main-card h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
}

.detail-lead {
    color: var(--gray-700);
    font-size: 19px;
}

.genre-tags {
    margin: 22px 0 28px;
}

.text-card {
    margin-top: 22px;
    padding: 24px;
}

.text-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.text-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
}

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

.tag-links a {
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 700;
}

.tag-links a:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.detail-sidebar {
    display: grid;
    align-content: start;
    gap: 22px;
}

.sidebar-card {
    padding: 24px;
}

.sidebar-card .compact-movie {
    color: var(--gray-900);
    background: var(--gray-50);
}

.sidebar-card .compact-movie:hover {
    background: var(--teal-50);
}

.sidebar-card .compact-movie em {
    color: var(--gray-500);
}

.dark-card {
    background: var(--gray-900);
    color: var(--white);
}

.dark-card .compact-movie {
    color: var(--white);
    background: rgb(255 255 255 / 0.06);
}

.dark-card .compact-movie:hover {
    background: rgb(255 255 255 / 0.1);
}

.dark-card .compact-movie em {
    color: rgb(255 255 255 / 0.62);
}

.site-footer {
    background: var(--gray-900);
    color: rgb(255 255 255 / 0.72);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 17px;
}

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

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.08);
    padding: 18px 24px;
    text-align: center;
    color: rgb(255 255 255 / 0.52);
}

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

    .hero-inner,
    .two-column-section,
    .ranking-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

    .rank-board {
        position: static;
    }
}

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

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

    .nav-container {
        gap: 14px;
        padding: 0 16px;
    }

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

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

    .hero-inner {
        padding: 64px 20px 86px;
    }

    .hero-control {
        display: none;
    }

    .content-section,
    .page-main .content-section,
    .detail-layout {
        padding: 42px 18px;
    }

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

    .category-grid,
    .filter-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .ranking-panel,
    .rank-board,
    .sidebar-card,
    .detail-main-card {
        padding: 20px;
    }

    .player-container {
        padding: 0;
    }
}

@media (max-width: 560px) {
    .hero-copy h1,
    .page-hero h1 {
        font-size: 34px;
    }

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

    .feature-grid,
    .movie-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

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

    .page-search-form {
        grid-template-columns: 1fr;
    }

    .movie-card-body p {
        min-height: auto;
    }

    .compact-movie {
        grid-template-columns: auto 52px minmax(0, 1fr);
    }
}
