:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --pink: #ec4899;
    --rose: #f43f5e;
    --amber: #f59e0b;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --purple: #7c3aed;
    --slate: #0f172a;
    --slate-soft: #1e293b;
    --gray: #64748b;
    --line: #e5e7eb;
    --page: #fff7ed;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #1f2937;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fdf2f8 100%);
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #f97316 0%, #ec4899 100%);
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.25);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--orange);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 4px;
}

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

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

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #ffffff;
    background: var(--slate);
}

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

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

.hero-bg,
.hero-bg img,
.hero-mask {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05);
}

.hero-mask {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.15) 100%),
        radial-gradient(circle at 25% 30%, rgba(249, 115, 22, 0.45), transparent 32%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 340px;
    align-items: center;
    gap: 56px;
    min-height: 650px;
    padding: 72px 0 96px;
}

.hero-copy {
    max-width: 720px;
}

.hero-badges,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-badges span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-badges span {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
}

.tag-row span {
    color: var(--orange-dark);
    background: #ffedd5;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

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

.hero p {
    max-width: 660px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.9;
}

.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.white-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange) 0%, var(--pink) 100%);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35);
}

.primary-btn:hover,
.white-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.15;
    object-fit: cover;
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
}

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

.hero-dot {
    width: 42px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 66px;
    background: var(--orange);
}

.hero-quick {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.hero-quick a {
    padding: 18px 24px;
    text-align: center;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.12);
}

.section {
    padding: 76px 0;
}

.soft-section {
    background: linear-gradient(90deg, #ffedd5 0%, #fce7f3 100%);
}

.rank-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
}

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

.section-head h2,
.content-block h2,
.side-panel h2 {
    margin: 8px 0 10px;
    color: #1f2937;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-head p,
.page-hero p,
.content-block p {
    max-width: 760px;
    margin: 0;
    color: #64748b;
    line-height: 1.85;
}

.section-kicker {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.text-link {
    min-height: 40px;
    color: var(--orange-dark);
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

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

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.category-card > a {
    display: block;
    min-height: 190px;
    padding: 26px;
}

.category-card strong {
    display: block;
    margin: 10px 0;
    font-size: 24px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

.category-icon {
    font-size: 34px;
}

.category-icon.large {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 52px;
}

.category-samples {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.category-samples a {
    padding: 11px 18px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.11);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.color-orange-pink {
    background: linear-gradient(135deg, #f97316, #ec4899);
}

.color-red-orange {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.color-blue-cyan {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.color-pink-rose {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.color-amber-red {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.color-yellow-orange {
    background: linear-gradient(135deg, #eab308, #f97316);
}

.color-purple-indigo {
    background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

.color-green-teal {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.color-slate-blue {
    background: linear-gradient(135deg, #334155, #2563eb);
}

.color-violet-pink {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: #fdba74;
    box-shadow: 0 24px 48px rgba(249, 115, 22, 0.16);
}

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

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

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-weight: 900;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rank-badge {
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

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

.movie-title {
    display: block;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-title:hover {
    color: var(--orange-dark);
}

.movie-meta,
.movie-line {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.movie-line {
    display: -webkit-box;
    min-height: 43px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-card.wide {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
}

.movie-card.wide .poster-link img {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
}

.ranking-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.compact-link {
    display: grid;
    grid-template-columns: 42px 70px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.compact-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #ec4899);
}

.compact-link img {
    width: 70px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
}

.compact-link strong,
.compact-link em {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-link strong {
    color: #111827;
    font-size: 15px;
}

.compact-link em {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

.cta-section,
.page-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(90deg, #f97316 0%, #ec4899 100%);
}

.cta-inner {
    padding: 76px 0;
    text-align: center;
}

.cta-inner h2,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.08;
}

.cta-inner p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.85;
}

.white-btn {
    color: var(--orange-dark);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 30px;
    padding: 54px 0 38px;
}

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

.footer-grid p {
    margin: 12px 0 0;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-grid a:not(.footer-logo) {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
}

.footer-grid a:hover {
    color: #fb923c;
}

.footer-logo {
    color: #ffffff;
    font-size: 20px;
}

.footer-bottom {
    padding: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
}

.page-hero {
    padding: 82px 0;
}

.small-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(120deg, #f97316 0%, #ec4899 70%, #8b5cf6 100%);
}

.rank-hero {
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.2), transparent 26%),
        linear-gradient(120deg, #f59e0b 0%, #ef4444 45%, #ec4899 100%);
}

.category-hero {
    padding: 72px 0;
}

.utility-panel,
.utility-bar {
    margin-bottom: 26px;
    padding: 20px;
    border: 1px solid #fed7aa;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.utility-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.search-box {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.search-box input {
    width: min(620px, 100%);
    min-height: 48px;
    padding: 0 18px;
    border: 2px solid #fed7aa;
    border-radius: 999px;
    outline: 0;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.large-search input {
    width: min(820px, 100%);
}

.search-box input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-btn {
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #ffffff;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    transform: translateY(-1px);
}

.card-hidden {
    display: none !important;
}

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

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

.side-panel {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.side-panel h2 {
    margin-top: 0;
    font-size: 24px;
}

.side-panel .compact-link {
    grid-template-columns: 32px 58px minmax(0, 1fr);
    margin-top: 12px;
    padding: 10px;
    box-shadow: none;
    background: #fff7ed;
}

.side-panel .compact-link img {
    width: 58px;
    height: 76px;
}

.local-head {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    padding: 22px 0;
    color: #64748b;
    font-size: 14px;
}

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

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

.detail-main {
    min-width: 0;
}

.player-card,
.detail-info,
.content-block {
    margin-bottom: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
    background: #0f172a;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

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

.movie-video {
    z-index: 1;
    background: #020617;
}

.player-cover {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: #0f172a;
    cursor: pointer;
}

.player-cover img {
    object-fit: cover;
    opacity: 0.62;
    filter: saturate(1.05);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.25)),
        radial-gradient(circle at center, rgba(249, 115, 22, 0.3), transparent 34%);
}

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

.play-circle {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    padding-left: 5px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.4);
}

.detail-info,
.content-block {
    padding: 28px;
}

.detail-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.detail-heading h1 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.14;
}

.detail-one-line {
    margin: 20px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.9;
}

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

.info-grid span {
    padding: 14px;
    border-radius: 16px;
    color: #334155;
    background: #fff7ed;
}

.info-grid strong {
    display: block;
    margin-bottom: 5px;
    color: #f97316;
    font-size: 12px;
}

.detail-tags span {
    background: #fce7f3;
    color: #be185d;
}

.content-block h2 {
    position: relative;
    padding-left: 18px;
    font-size: 28px;
}

.content-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 26px;
    border-radius: 999px;
    background: var(--orange);
}

.content-block p {
    max-width: none;
    color: #374151;
    font-size: 17px;
}

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

.inline-links a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #ffedd5;
    font-weight: 800;
}

.related-section {
    padding: 36px 0 0;
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

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

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

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

    .detail-layout,
    .rank-layout {
        grid-template-columns: 1fr;
    }

    .detail-side {
        display: none;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 44px;
    }

    .hero-poster {
        width: min(260px, 74vw);
        transform: none;
    }

    .hero h1 {
        font-size: clamp(36px, 12vw, 54px);
    }

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

    .section-head,
    .utility-bar,
    .detail-heading {
        display: block;
    }

    .text-link,
    .detail-heading .primary-btn {
        margin-top: 16px;
    }

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

    .movie-card.wide {
        display: block;
    }

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

    .ranking-panel {
        grid-template-columns: 1fr;
    }

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

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

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

    .header-inner {
        min-height: 62px;
    }

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

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .hero-quick {
        width: calc(100% - 24px);
    }

    .hero-quick a {
        padding: 14px 8px;
        font-size: 13px;
    }

    .section,
    .page-hero {
        padding: 54px 0;
    }

    .movie-grid,
    .wide-grid,
    .ranking-grid,
    .related-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-info,
    .content-block {
        padding: 20px;
    }

    .play-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
