:root {
    --forest-50: #f5f7f5;
    --forest-100: #e8ede7;
    --forest-400: #84a380;
    --forest-600: #4a6644;
    --forest-700: #3c5238;
    --forest-800: #32432f;
    --deer-500: #a88558;
    --earth-200: #ddd8ca;
    --earth-300: #c5bcaa;
    --earth-400: #aa9b85;
    --earth-800: #4e443a;
    --earth-900: #423a32;
    --text-900: #111827;
    --text-700: #374151;
    --text-600: #4b5563;
    --text-500: #6b7280;
    --line: #e5e7eb;
    --soft-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--forest-50), #ffffff 420px);
    color: var(--text-900);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

.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.8);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--forest-800);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--forest-600);
    color: #ffffff;
    font-size: 16px;
    transition: background 0.2s ease;
}

.site-logo:hover .logo-mark {
    background: var(--forest-700);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--text-700);
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--forest-600);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--forest-50);
    color: var(--forest-800);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 8px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text-700);
    font-weight: 600;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--forest-50);
    color: var(--forest-600);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--forest-800), var(--forest-600) 56%, var(--deer-500));
    color: #ffffff;
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    padding: 72px 0 48px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.24;
    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    left: -140px;
    top: 60px;
    background: #ffffff;
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -80px;
    background: #ddc99d;
}

.hero-slides {
    position: relative;
    min-height: 390px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 56px;
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.hero-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: var(--forest-100);
    font-size: 14px;
    backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
    max-width: 720px;
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero h2 {
    font-size: clamp(34px, 5vw, 60px);
}

.hero-text {
    max-width: 640px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.primary-button {
    min-height: 46px;
    padding: 0 22px;
    background: #ffffff;
    color: var(--forest-700);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.ghost-button {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.hero-poster img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.hero-strip {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.hero-strip-link,
.hero-mini-card {
    min-height: 88px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.hero-strip-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.hero-mini-card {
    position: relative;
}

.hero-mini-card img {
    height: 100%;
    min-height: 88px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-mini-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.hero-mini-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

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

.home-space {
    display: grid;
    gap: 72px;
}

.content-section {
    display: block;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--text-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.15;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--forest-600), var(--deer-500));
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--text-600);
    font-size: 15px;
}

.section-link,
.text-button {
    color: var(--forest-600);
    font-size: 15px;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--forest-100);
}

.poster-link img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.movie-card:hover .poster-link::after {
    background: rgba(0, 0, 0, 0.38);
}

.type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 8px;
    background: var(--forest-600);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest-700);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body h3 {
    min-height: 42px;
    margin: 0 0 8px;
    color: var(--text-900);
    font-size: 15px;
    line-height: 1.35;
}

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

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

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

.movie-meta span,
.movie-meta a {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--forest-50);
}

.movie-meta a {
    color: var(--forest-600);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-list span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f8faf8;
    color: var(--forest-700);
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--earth-900);
    color: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-tile img {
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    opacity: 0.58;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile span,
.category-tile em {
    position: absolute;
    left: 18px;
    right: 18px;
}

.category-tile span {
    bottom: 58px;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
}

.category-tile em {
    bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-tile:hover img {
    transform: scale(1.06);
    opacity: 0.76;
}

.rank-mini-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rank-mini {
    display: grid;
    grid-template-columns: 46px 68px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.rank-mini span {
    color: var(--deer-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 800;
}

.rank-mini img {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.rank-mini strong,
.rank-mini em {
    display: block;
}

.rank-mini strong {
    margin-bottom: 6px;
    color: var(--text-900);
}

.rank-mini em {
    color: var(--text-500);
    font-size: 13px;
    font-style: normal;
}

.page-hero {
    margin-bottom: 38px;
    padding: 56px;
    border-radius: 28px;
    background: linear-gradient(120deg, var(--forest-700), var(--forest-600), var(--deer-500));
    color: #ffffff;
    box-shadow: var(--soft-shadow);
}

.page-hero p {
    margin: 0 0 12px;
    color: var(--forest-100);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
}

.page-hero span {
    max-width: 760px;
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

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

.category-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-card-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--forest-100);
}

.category-card-images img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card-body p {
    min-height: 48px;
    margin: 0 0 16px;
    color: var(--text-600);
    line-height: 1.6;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    margin-bottom: 26px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--forest-50);
}

.search-box span {
    color: var(--forest-600);
    font-size: 20px;
}

.search-box input,
.filter-selects select {
    width: 100%;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--text-700);
    font: inherit;
    outline: none;
}

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

.filter-selects select {
    min-width: 130px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 90px 82px minmax(0, 1fr) 96px;
    gap: 20px;
    align-items: center;
    padding: 14px;
}

.rank-cover img {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
}

.rank-number {
    color: var(--deer-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 800;
}

.rank-content h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-content h2 a:hover {
    color: var(--forest-600);
}

.rank-content p {
    margin: 0 0 12px;
    color: var(--text-600);
    line-height: 1.6;
}

.rank-watch {
    min-height: 42px;
    background: var(--forest-600);
    color: #ffffff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 22px;
    color: var(--text-500);
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 330px;
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--hover-shadow);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
    object-fit: contain;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52));
    cursor: pointer;
}

.player-start span {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--forest-700);
    font-size: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease;
}

.player-start:hover span {
    transform: scale(1.08);
}

.player-start.is-hidden {
    display: none;
}

.detail-card,
.side-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.detail-card {
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.16;
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--forest-50);
    color: var(--text-700);
    font-size: 14px;
    font-weight: 600;
}

.detail-tags {
    margin-bottom: 24px;
}

.detail-copy {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.detail-copy + .detail-copy {
    margin-top: 24px;
}

.detail-copy h2 {
    margin: 0 0 12px;
    font-size: 21px;
}

.detail-copy p {
    margin: 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.9;
}

.lead-text {
    margin-bottom: 12px !important;
    color: var(--forest-700) !important;
    font-weight: 700;
}

.detail-side {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 18px;
}

.poster-card {
    overflow: hidden;
}

.poster-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.side-card:not(.poster-card) {
    padding: 22px;
}

.side-card h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 12px;
    margin: 0;
    font-size: 14px;
}

.side-card dt {
    color: var(--text-500);
}

.side-card dd {
    margin: 0;
    color: var(--text-900);
}

.related-section {
    margin-top: 54px;
}

.site-footer {
    margin-top: 88px;
    background: var(--earth-900);
    color: var(--earth-200);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
    gap: 42px;
}

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--earth-300);
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 17px;
}

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

.footer-links a {
    color: var(--earth-300);
    font-size: 14px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid var(--earth-800);
    color: var(--earth-400);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

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

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-inner {
        min-height: auto;
        padding: 46px 0 34px;
    }

    .hero-slides {
        min-height: 620px;
    }

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

    .hero-poster {
        max-width: 280px;
    }

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

    .section-heading,
    .filter-panel,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .filter-selects {
        flex-wrap: wrap;
    }

    .filter-selects select {
        min-width: calc(50% - 5px);
    }

    .detail-side {
        position: static;
    }

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

    .rank-watch {
        grid-column: 3;
        width: 96px;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .page-container,
    .hero-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-slides {
        min-height: 590px;
    }

    .hero h1,
    .hero h2 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-strip {
        display: none;
    }

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

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

    .category-grid,
    .category-card-grid,
    .rank-mini-list {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 34px 24px;
        border-radius: 22px;
    }

    .filter-selects select {
        min-width: 100%;
    }

    .rank-row {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-number {
        grid-column: 1;
        grid-row: 2;
        font-size: 24px;
    }

    .rank-content {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .rank-watch {
        grid-column: 2;
        width: 92px;
    }

    .detail-card {
        padding: 22px;
    }

    .player-start span {
        width: 68px;
        height: 68px;
    }
}
