@import url("https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;500;600;700;900&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
    --amber-950: #371b05;
    --amber-900: #5f2d08;
    --amber-800: #7c3f0a;
    --amber-700: #a85a12;
    --amber-600: #d47b19;
    --amber-500: #f2a735;
    --amber-300: #fbd38d;
    --amber-100: #fff1cf;
    --paper: #fff9ed;
    --paper-deep: #f6ead3;
    --ink: #2e1806;
    --muted: #7d5b32;
    --line: rgba(126, 72, 15, 0.18);
    --shadow: 0 24px 60px rgba(72, 34, 6, 0.18);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(242, 167, 53, 0.28), transparent 30rem),
        linear-gradient(180deg, #fff8ea 0%, #fffaf2 44%, #f7ead3 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    color: #fff7dc;
    background: linear-gradient(90deg, rgba(61, 27, 3, 0.96), rgba(126, 63, 10, 0.95), rgba(71, 34, 4, 0.96));
    border-bottom: 1px solid rgba(251, 211, 141, 0.32);
    box-shadow: 0 16px 40px rgba(55, 27, 5, 0.24);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1220px, calc(100% - 32px));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #5a2705;
    font-family: "Ma Shan Zheng", cursive;
    font-size: 26px;
    background: linear-gradient(135deg, #ffe6a3, #d7831c);
    box-shadow: 0 0 0 6px rgba(251, 211, 141, 0.12), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-name {
    font-family: "Ma Shan Zheng", "Noto Serif SC", serif;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    letter-spacing: 0.04em;
}

.brand-line {
    color: var(--amber-300);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 14px;
    color: #fff1cf;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(251, 211, 141, 0.16);
    transform: translateY(-1px);
}

.header-search,
.mobile-search,
.big-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-bar input {
    width: 220px;
    border: 1px solid rgba(251, 211, 141, 0.36);
    border-radius: 14px;
    padding: 11px 13px;
    color: #fff6d7;
    background: rgba(76, 36, 5, 0.42);
    outline: none;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.big-search input::placeholder,
.filter-bar input::placeholder {
    color: rgba(255, 241, 207, 0.72);
}

.header-search button,
.mobile-search button,
.big-search button {
    border: 0;
    border-radius: 14px;
    padding: 11px 16px;
    color: #552704;
    font-weight: 700;
    background: linear-gradient(135deg, #ffe3a3, #df8c1e);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(251, 211, 141, 0.38);
    border-radius: 14px;
    color: #fff3d2;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-panel {
    display: none;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-slider {
    position: relative;
    min-height: clamp(620px, 78vh, 820px);
    overflow: hidden;
    background: var(--amber-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.5fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.03);
    z-index: -2;
}

.hero-shade {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(42, 18, 2, 0.94), rgba(83, 37, 6, 0.72), rgba(42, 18, 2, 0.50)),
        radial-gradient(circle at 20% 20%, rgba(244, 167, 53, 0.42), transparent 38rem);
    z-index: -1;
}

.hero-content {
    max-width: 760px;
    color: #fff7df;
    padding-top: 80px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff8dc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(212, 123, 25, 0.88);
    box-shadow: 0 12px 28px rgba(62, 28, 3, 0.24);
}

.hero-content h1 {
    margin: 24px 0 20px;
    font-family: "Noto Serif SC", serif;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 26px;
    color: #ffeec6;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

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

.hero-tags span,
.tag-row span {
    border: 1px solid rgba(251, 211, 141, 0.28);
    border-radius: 999px;
    padding: 7px 12px;
    color: #fff1cf;
    font-size: 13px;
    background: rgba(80, 37, 5, 0.42);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 13px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #502405;
    background: linear-gradient(135deg, #ffe5a8, #de861b);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.ghost-button {
    color: #fff5d5;
    border: 1px solid rgba(255, 241, 207, 0.34);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.hero-cover {
    align-self: center;
    justify-self: end;
    width: min(360px, 100%);
    border-radius: 34px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 228, 171, 0.86), rgba(126, 63, 10, 0.42));
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-panel {
    width: min(1120px, calc(100% - 32px));
    margin: -34px auto 42px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.quick-panel a {
    padding: 20px;
    border: 1px solid rgba(126, 72, 15, 0.18);
    border-radius: 22px;
    color: var(--amber-900);
    font-weight: 800;
    text-align: center;
    background: rgba(255, 249, 237, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.content-section {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
}

.warm-section,
.dark-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 68px max(16px, calc((100% - 1220px) / 2));
}

.warm-section {
    background: linear-gradient(135deg, rgba(255, 241, 207, 0.78), rgba(255, 255, 255, 0.64));
}

.dark-section {
    color: #fff8dc;
    background: linear-gradient(135deg, var(--amber-950), var(--amber-800));
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
    color: #fff1cf;
}

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

.section-heading h2 {
    margin: 14px 0 8px;
    color: var(--amber-950);
    font-family: "Noto Serif SC", serif;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.movie-grid,
.poster-mosaic,
.ranking-grid,
.category-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 252, 245, 0.92);
    box-shadow: 0 18px 38px rgba(72, 34, 6, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 123, 25, 0.34);
    box-shadow: 0 28px 70px rgba(72, 34, 6, 0.20);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #5f2d08;
}

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

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

.play-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 46px;
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(55, 27, 5, 0.62));
    transition: opacity 0.25s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
}

.year-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff7dc;
    font-size: 12px;
    font-weight: 800;
    background: rgba(212, 123, 25, 0.92);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.rank-badge {
    left: 12px;
    right: auto;
    background: rgba(95, 45, 8, 0.92);
}

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

.movie-card-body h2 {
    margin: 0 0 10px;
    color: var(--amber-950);
    font-size: 18px;
    line-height: 1.35;
}

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

.movie-meta,
.movie-line {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

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

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

.tag-row span {
    color: var(--amber-800);
    border-color: rgba(168, 90, 18, 0.16);
    background: rgba(255, 241, 207, 0.75);
}

.category-tile,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 22px;
    background: rgba(255, 252, 245, 0.88);
    box-shadow: var(--shadow);
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--amber-950);
    font-size: 24px;
    font-weight: 900;
}

.category-title small {
    color: var(--amber-700);
    font-size: 13px;
}

.category-tile p,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.8;
}

.mini-card-row,
.mini-stack {
    display: grid;
    gap: 12px;
}

.mini-card-row {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
}

.mini-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 120px;
    background: #5f2d08;
}

.mini-card img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 30px 10px 10px;
    color: #fff7dc;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.3;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

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

.page-hero {
    color: #fff8dc;
    background:
        radial-gradient(circle at 25% 20%, rgba(242, 167, 53, 0.34), transparent 28rem),
        linear-gradient(135deg, var(--amber-950), var(--amber-700));
}

.compact-hero {
    padding: 92px max(16px, calc((100% - 1220px) / 2));
}

.compact-hero h1 {
    margin: 18px 0 14px;
    font-family: "Noto Serif SC", serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.compact-hero p {
    max-width: 780px;
    margin: 0;
    color: #ffefc7;
    line-height: 1.8;
    font-size: 18px;
}

.breadcrumb {
    width: min(1220px, calc(100% - 32px));
    margin: 22px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.filter-bar,
.big-search {
    margin-bottom: 28px;
}

.filter-bar input,
.big-search input {
    width: min(520px, 100%);
    color: var(--ink);
    border-color: rgba(126, 72, 15, 0.24);
    background: rgba(255, 252, 245, 0.92);
}

.big-search {
    gap: 12px;
}

.detail-hero {
    width: min(1220px, calc(100% - 32px));
    margin: 24px auto 34px;
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: clamp(22px, 4vw, 44px);
    color: #fff8dc;
    background:
        radial-gradient(circle at 22% 16%, rgba(242, 167, 53, 0.35), transparent 24rem),
        linear-gradient(135deg, var(--amber-950), var(--amber-800));
    box-shadow: var(--shadow);
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    padding: 10px;
    background: rgba(255, 241, 207, 0.18);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
}

.detail-copy h1 {
    margin: 20px 0 16px;
    font-family: "Noto Serif SC", serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.detail-line {
    color: #ffefc7;
    font-size: 18px;
    line-height: 1.85;
}

.player-section,
.detail-layout {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 36px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #120804;
    box-shadow: 0 30px 80px rgba(55, 27, 5, 0.28);
}

.video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #120804;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #fff7dc;
    text-align: center;
    background: linear-gradient(180deg, rgba(18, 8, 4, 0.12), rgba(18, 8, 4, 0.78));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-orb {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: #5a2705;
    font-size: 34px;
    background: linear-gradient(135deg, #fff0bd, #df8c1e);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.player-cover strong {
    max-width: 86%;
    font-size: clamp(20px, 3vw, 34px);
    font-family: "Noto Serif SC", serif;
}

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

.detail-text,
.side-panel {
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 252, 245, 0.92);
    box-shadow: 0 18px 42px rgba(72, 34, 6, 0.10);
}

.detail-text h2,
.side-panel h2 {
    margin: 0 0 14px;
    color: var(--amber-950);
    font-family: "Noto Serif SC", serif;
    font-size: 28px;
}

.detail-text h2:not(:first-child) {
    margin-top: 34px;
}

.detail-text p {
    color: #5d3b18;
    font-size: 17px;
    line-height: 2;
}

.related-section {
    padding-top: 22px;
}

.category-overview-list {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 24px;
    align-items: center;
}

.category-copy h2 {
    margin: 16px 0 8px;
    color: var(--amber-950);
    font-size: 30px;
    font-family: "Noto Serif SC", serif;
}

.text-link {
    margin-top: 12px;
    padding: 0;
    color: var(--amber-700);
    background: transparent;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    background: rgba(255, 252, 245, 0.92);
    box-shadow: 0 16px 32px rgba(72, 34, 6, 0.08);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    color: #fff8dc;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-900), var(--amber-600));
}

.ranking-thumb {
    overflow: hidden;
    border-radius: 16px;
}

.ranking-thumb img {
    width: 96px;
    height: 128px;
    object-fit: cover;
}

.ranking-copy h2 {
    margin: 0 0 8px;
    color: var(--amber-950);
    font-size: 22px;
}

.ranking-copy p {
    margin: 0 0 8px;
    color: #5d3b18;
    line-height: 1.7;
}

.ranking-copy span {
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    margin-top: 60px;
    color: #fff1cf;
    background: linear-gradient(180deg, var(--amber-900), var(--amber-950));
}

.footer-inner {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand strong {
    display: block;
    font-size: 24px;
    font-family: "Ma Shan Zheng", cursive;
}

.footer-brand p,
.copyright {
    margin: 4px 0 0;
    color: var(--amber-300);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(251, 211, 141, 0.18);
    border-bottom: 1px solid rgba(251, 211, 141, 0.18);
}

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

.hidden-by-filter {
    display: none !important;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 80px 0 110px;
    }

    .hero-cover {
        display: none;
    }

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

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

@media (max-width: 820px) {
    .header-inner {
        height: 68px;
    }

    .brand-line {
        display: none;
    }

    .quick-panel,
    .category-grid,
    .category-overview-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .quick-panel {
        margin-top: 16px;
    }

    .movie-grid,
    .large-grid,
    .poster-mosaic,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-row {
        grid-template-columns: 48px 80px minmax(0, 1fr);
    }

    .ranking-row .text-link {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }

    .ranking-thumb img {
        width: 80px;
        height: 108px;
    }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 22px;
    }

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

    .hero-content {
        padding-top: 64px;
    }

    .movie-grid,
    .large-grid,
    .poster-mosaic,
    .ranking-grid,
    .mini-card-row {
        grid-template-columns: 1fr;
    }

    .detail-hero,
    .detail-text,
    .side-panel {
        border-radius: 22px;
    }

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