* {
    box-sizing: border-box;
}

:root {
    --lava-50: #fff7ed;
    --lava-100: #ffedd5;
    --lava-500: #f97316;
    --lava-600: #ea580c;
    --lava-700: #c2410c;
    --ember-500: #f59e0b;
    --volcanic-50: #fafafa;
    --volcanic-100: #f4f4f5;
    --volcanic-200: #e4e4e7;
    --volcanic-300: #d4d4d8;
    --volcanic-500: #71717a;
    --volcanic-600: #52525b;
    --volcanic-700: #3f3f46;
    --volcanic-800: #27272a;
    --volcanic-900: #18181b;
    --black: #09090b;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(24, 24, 27, 0.12);
    --shadow-card: 0 12px 30px rgba(24, 24, 27, 0.12);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    color: var(--volcanic-900);
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

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

.bg-soft {
    background: linear-gradient(180deg, var(--volcanic-50), var(--white));
}

.text-gradient-lava {
    margin: 0;
    font-family: Poppins, Inter, system-ui, sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--lava-600), var(--lava-500), var(--ember-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(228, 228, 231, 0.85);
}

.nav-bar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--volcanic-900);
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
    box-shadow: 0 10px 26px rgba(234, 88, 12, 0.28);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--volcanic-600);
    font-weight: 700;
    transition: all 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--lava-700);
    background: var(--lava-50);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--volcanic-100);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--volcanic-800);
}

.hero-slider {
    position: relative;
    height: min(90vh, 820px);
    min-height: 620px;
    overflow: hidden;
    background: var(--black);
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 16%, rgba(249, 115, 22, 0.28), transparent 32%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(70px, 11vh, 128px);
}

.hero-copy {
    max-width: 780px;
    color: var(--white);
    animation: fadeInUp 0.7s ease both;
}

.hero-eyebrow,
.page-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--lava-100);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(46px, 8vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.tag-row,
.tag-cloud,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.movie-meta span,
.tag-cloud a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    padding: 7px 11px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

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

.btn-primary,
.btn-secondary,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 22px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--lava-600), var(--lava-500));
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.38);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
}

.detail-copy .btn-secondary,
.category-feature .btn-secondary {
    color: var(--volcanic-800);
    background: var(--volcanic-100);
    border-color: var(--volcanic-200);
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 0, 0, 0.36);
    font-size: 34px;
    line-height: 1;
    transition: all 0.25s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.58);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: all 0.25s ease;
}

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

.quick-search-section {
    position: relative;
    z-index: 3;
    margin-top: -46px;
}

.quick-search-box {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 430px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.quick-search-box h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.quick-search-box p,
.section-head p,
.page-hero p,
.category-card p,
.category-panel p,
.movie-card p,
.detail-content p,
.category-feature p,
.rank-row p,
.site-footer p {
    color: var(--volcanic-600);
    line-height: 1.75;
}

.search-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--volcanic-200);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(24, 24, 27, 0.06);
}

.search-shell span {
    color: var(--lava-600);
    font-size: 22px;
    font-weight: 800;
}

.search-shell input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--volcanic-900);
    background: transparent;
}

.page-search {
    max-width: 560px;
    margin-top: 28px;
}

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

.section-head p {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 17px;
}

.section-link {
    color: var(--lava-700);
    background: var(--lava-50);
}

.section-link:hover {
    transform: translateY(-2px);
    background: var(--lava-100);
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(24, 24, 27, 0.18);
}

.movie-thumb {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: var(--volcanic-100);
}

.movie-card-large .movie-thumb {
    height: 340px;
}

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

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

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.72));
    opacity: 0.9;
}

.play-badge {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 36px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.25s ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: scale(1);
}

.thumb-meta,
.heat-pill {
    position: absolute;
    z-index: 3;
    left: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.56);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.heat-pill {
    left: auto;
    right: 14px;
    background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
}

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

.movie-card h3,
.movie-card h2,
.rank-row h2,
.category-feature h2 {
    margin: 0;
    font-family: Poppins, Inter, system-ui, sans-serif;
}

.movie-card h3 {
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-row h2 a:hover,
.category-feature h2 a:hover {
    color: var(--lava-600);
}

.movie-card p {
    margin: 10px 0 0;
    font-size: 14px;
}

.tag-row {
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    color: var(--volcanic-700);
    background: var(--volcanic-100);
}

.movie-meta {
    margin-top: 14px;
}

.movie-meta span {
    color: var(--volcanic-600);
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 210px;
}

.movie-card-horizontal .movie-thumb {
    height: 100%;
}

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

.rail-head {
    align-items: center;
}

.rail-actions {
    display: flex;
    gap: 10px;
}

.rail-actions button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--volcanic-900);
    background: var(--white);
    box-shadow: var(--shadow-card);
    font-size: 26px;
}

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 300px);
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 0 20px;
}

.rail-item {
    scroll-snap-align: start;
}

.rail-item .movie-card {
    height: 100%;
}

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

.category-card,
.category-panel {
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.category-card > a,
.category-panel-main {
    display: block;
    padding: 24px;
    background: linear-gradient(135deg, var(--volcanic-900), var(--volcanic-700));
    color: var(--white);
}

.category-card span,
.category-panel h2 {
    display: block;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 900;
}

.category-card p,
.category-panel-main p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.category-panel-main span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--lava-100);
    font-weight: 800;
}

.mini-links,
.category-panel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 18px;
}

.mini-links a,
.category-panel-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--volcanic-700);
    background: var(--volcanic-100);
    font-size: 13px;
    font-weight: 700;
}

.category-panel-links a span {
    margin-left: 8px;
    color: var(--lava-600);
}

.page-hero {
    position: relative;
    padding: 96px 0 86px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.32), transparent 28%),
        linear-gradient(135deg, var(--volcanic-900), var(--black));
    overflow: hidden;
}

.page-hero h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.05em;
}

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

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-bar button {
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    color: var(--volcanic-700);
    background: var(--volcanic-100);
    font-weight: 800;
}

.filter-bar button.is-active {
    color: var(--white);
    background: var(--lava-600);
}

.empty-state {
    margin-top: 28px;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--volcanic-600);
    background: var(--volcanic-100);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

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

.category-feature {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--volcanic-900), var(--volcanic-700));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-feature img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.category-feature span {
    color: var(--lava-100);
    font-weight: 800;
}

.category-feature h2 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 50px);
}

.category-feature p {
    color: rgba(255, 255, 255, 0.82);
}

.detail-hero {
    position: relative;
    padding: 64px 0 74px;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 22%, rgba(249, 115, 22, 0.28), transparent 28%),
        linear-gradient(135deg, var(--volcanic-900), var(--black));
}

.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-copy p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.75;
}

.detail-meta span {
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.player-section {
    padding: 52px 0;
    background: var(--black);
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.movie-video,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    object-fit: contain;
    z-index: 1;
}

.player-cover {
    z-index: 2;
    border: 0;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: #000000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

.player-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.42);
    font-size: 34px;
    pointer-events: none;
}

.player-title {
    position: absolute;
    left: 32px;
    bottom: 30px;
    max-width: calc(100% - 64px);
    font-size: clamp(24px, 4vw, 46px);
    font-weight: 900;
    text-align: left;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

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

.detail-content h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 34px);
}

.detail-content p {
    margin: 0;
    font-size: 17px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 22px;
}

.info-list div {
    padding: 16px;
    border-radius: 14px;
    background: var(--volcanic-100);
}

.info-list dt {
    color: var(--volcanic-500);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 7px 0 0;
    color: var(--volcanic-900);
    font-weight: 800;
}

.tag-cloud a {
    padding: 8px 12px;
    color: var(--lava-700);
    background: var(--lava-50);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 96px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.rank-num {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
    font-weight: 900;
}

.rank-cover img {
    width: 96px;
    height: 128px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-row h2 {
    font-size: 24px;
}

.rank-row p {
    margin: 8px 0 0;
}

.rank-heat {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--lava-700);
    background: var(--lava-50);
    font-weight: 900;
}

.site-footer {
    padding: 54px 0 0;
    background: var(--volcanic-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 18px;
}

.site-footer h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 9px 0;
    color: var(--volcanic-300);
}

.site-footer a:hover {
    color: var(--lava-100);
}

.site-footer p {
    max-width: 520px;
    color: var(--volcanic-300);
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px 0;
    text-align: center;
    color: var(--volcanic-300);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .detail-layout {
        grid-template-columns: 260px 1fr;
    }
}

@media (max-width: 860px) {
    .section-spacing {
        padding: 54px 0;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
    }

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

    .hero-slider {
        min-height: 560px;
        height: 78vh;
    }

    .hero-control {
        display: none;
    }

    .quick-search-box,
    .category-feature,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-grid-featured,
    .movie-grid-compact,
    .ranking-strip,
    .category-grid,
    .category-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-poster img {
        height: 360px;
    }

    .rank-row {
        grid-template-columns: 54px 80px 1fr;
    }

    .rank-heat {
        grid-column: 3;
        justify-self: start;
    }
}

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

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

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

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

    .quick-search-section {
        margin-top: 0;
    }

    .quick-search-box {
        border-radius: 0;
        width: 100%;
    }

    .section-head {
        display: block;
    }

    .section-link {
        margin-top: 18px;
    }

    .movie-grid-featured,
    .movie-grid-compact,
    .ranking-strip,
    .category-grid,
    .category-panel-grid,
    .info-list {
        grid-template-columns: 1fr;
    }

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

    .movie-card-horizontal .movie-thumb {
        height: 260px;
    }

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

    .rank-row {
        grid-template-columns: 44px 76px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .rank-num {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .rank-cover img {
        width: 76px;
        height: 104px;
    }

    .rank-row h2 {
        font-size: 18px;
    }

    .rank-row p {
        display: none;
    }

    .player-title {
        left: 20px;
        bottom: 18px;
    }

    .play-button {
        width: 68px;
        height: 68px;
    }
}
