:root {
    --coffee-950: #1f140e;
    --coffee-900: #2a1a12;
    --coffee-800: #3a2417;
    --coffee-700: #56371f;
    --coffee-600: #725034;
    --coffee-500: #9b6a43;
    --cream-50: #fffaf0;
    --cream-100: #f8efd8;
    --cream-200: #efdfbe;
    --cream-300: #e0c79d;
    --gold-400: #d4a64a;
    --gold-500: #bc8634;
    --shadow-soft: 0 24px 80px rgba(31, 20, 14, 0.16);
    --shadow-card: 0 18px 45px rgba(31, 20, 14, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--coffee-900);
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.18), transparent 35rem),
        linear-gradient(180deg, #fff7e9 0%, #f5ead7 44%, #fffaf0 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 240, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(114, 80, 52, 0.12);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--cream-50);
    background: linear-gradient(135deg, var(--coffee-700), var(--gold-500));
    box-shadow: 0 12px 30px rgba(114, 80, 52, 0.32);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.3rem;
}

.brand-copy em {
    margin-top: 4px;
    font-style: normal;
    font-size: 0.75rem;
    color: var(--coffee-600);
}

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

.desktop-nav a {
    font-size: 0.95rem;
    color: var(--coffee-600);
    font-weight: 700;
    padding: 10px 0;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold-500);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.desktop-nav a.active {
    color: var(--coffee-900);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(114, 80, 52, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(31, 20, 14, 0.08);
}

.header-search input,
.quick-search input,
.inline-filter input {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--coffee-900);
}

.header-search input {
    width: 210px;
    padding: 8px 6px 8px 14px;
}

.header-search button,
.quick-search button {
    border: 0;
    color: var(--cream-50);
    background: linear-gradient(135deg, var(--coffee-700), var(--gold-500));
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(114, 80, 52, 0.24);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(86, 55, 31, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--coffee-800);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(114, 80, 52, 0.1);
}

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

.mobile-nav a:hover {
    background: rgba(114, 80, 52, 0.08);
}

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

.hero-carousel {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    color: var(--cream-50);
    background: var(--coffee-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.hero-slide-inner {
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 80px 0;
}

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

.kicker,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gold-400);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 16px 0;
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255, 250, 240, 0.82);
    max-width: 720px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 250, 240, 0.22);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--cream-50);
    background: rgba(255, 250, 240, 0.1);
    backdrop-filter: blur(14px);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    color: var(--coffee-950);
    background: linear-gradient(135deg, #ffe9a7, var(--gold-400));
    box-shadow: 0 18px 35px rgba(212, 166, 74, 0.28);
}

.btn-ghost {
    color: var(--cream-50);
    border: 1px solid rgba(255, 250, 240, 0.24);
    background: rgba(255, 250, 240, 0.08);
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(31, 20, 14, 0.22);
}

.hero-poster,
.detail-poster {
    position: relative;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--coffee-700), var(--gold-500));
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
}

.hero-poster img,
.detail-poster img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-poster:hover img {
    transform: scale(1.04);
}

.hero-poster span,
.detail-poster span,
.poster-shade-title,
.compact-poster span,
.rank-cover em {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 2;
    color: var(--cream-50);
    font-weight: 900;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-poster::after,
.detail-poster::after,
.poster-wrap::after,
.compact-poster::after,
.rank-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(31, 20, 14, 0.78));
}

.poster-shade-title,
.compact-poster span,
.rank-cover em {
    display: none;
}

.poster-shade-active .poster-shade-title,
.poster-shade-active span,
.poster-shade-active em {
    display: block;
}

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

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.36);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--gold-400);
}

.quick-panel {
    margin-top: -42px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(114, 80, 52, 0.12);
}

.quick-search {
    display: grid;
    grid-template-columns: auto minmax(160px, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.quick-search span {
    font-weight: 900;
    color: var(--coffee-700);
}

.quick-search input {
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    background: #ffffff;
    border: 1px solid rgba(114, 80, 52, 0.12);
}

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

.quick-links a,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--coffee-700);
    background: rgba(114, 80, 52, 0.08);
    font-weight: 800;
}

.section-block {
    padding: 76px 0 0;
}

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

.section-head h2 {
    margin: 8px 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--coffee-600);
    line-height: 1.8;
}

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

.category-tile {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: var(--cream-50);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 233, 167, 0.28), transparent 38%),
        linear-gradient(135deg, var(--coffee-800), var(--coffee-600));
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 62px rgba(31, 20, 14, 0.18);
}

.category-tile span {
    font-size: 1.3rem;
    font-weight: 900;
}

.category-tile strong {
    color: rgba(255, 250, 240, 0.76);
    line-height: 1.7;
}

.category-tile em {
    font-style: normal;
    color: var(--gold-400);
    font-weight: 900;
}

.movie-grid,
.wide-grid,
.compact-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.movie-card,
.compact-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 250, 240, 0.88);
    border: 1px solid rgba(114, 80, 52, 0.11);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover,
.compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(31, 20, 14, 0.16);
}

.movie-card-link,
.compact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.poster-wrap,
.compact-poster,
.rank-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 233, 167, 0.24), transparent 32%),
        linear-gradient(135deg, var(--coffee-700), var(--coffee-900));
}

.movie-card-large .poster-wrap {
    aspect-ratio: 16 / 10;
}

.poster-wrap img,
.compact-poster img,
.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card:hover img,
.compact-card:hover img {
    transform: scale(1.06);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    color: var(--coffee-950);
    background: rgba(255, 233, 167, 0.92);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.movie-card-body strong,
.compact-card strong {
    font-size: 1.06rem;
    line-height: 1.35;
}

.movie-card-body em,
.compact-card em {
    font-style: normal;
    color: var(--coffee-600);
    font-size: 0.88rem;
}

.movie-card-desc {
    color: var(--coffee-700);
    line-height: 1.7;
    font-size: 0.92rem;
}

.movie-card .tag-row span {
    color: var(--coffee-700);
    border-color: rgba(114, 80, 52, 0.12);
    background: rgba(114, 80, 52, 0.06);
    backdrop-filter: none;
    font-size: 0.76rem;
    padding: 5px 8px;
}

.highlight-block {
    padding: 76px 0;
}

.ranking-preview {
    padding-bottom: 82px;
}

.ranking-list,
.full-ranking {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

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

.ranking-list a,
.full-ranking a {
    display: grid;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 250, 240, 0.86);
    border: 1px solid rgba(114, 80, 52, 0.1);
    box-shadow: 0 12px 30px rgba(31, 20, 14, 0.08);
}

.ranking-list a {
    grid-template-columns: 52px minmax(0, 1fr);
}

.ranking-list span,
.rank-num {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--coffee-950);
    background: linear-gradient(135deg, #ffe9a7, var(--gold-400));
    font-weight: 900;
}

.ranking-list strong,
.full-ranking strong {
    display: block;
    font-size: 1rem;
}

.ranking-list em,
.full-ranking small {
    display: block;
    margin-top: 3px;
    color: var(--coffee-600);
    font-style: normal;
    line-height: 1.5;
}

.page-hero,
.detail-hero {
    color: var(--cream-50);
    background:
        radial-gradient(circle at top right, rgba(212, 166, 74, 0.28), transparent 34rem),
        linear-gradient(135deg, var(--coffee-950), var(--coffee-700));
}

.compact-hero,
.category-hero {
    padding: 78px 0;
}

.page-hero p {
    margin: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(255, 250, 240, 0.78);
    margin-bottom: 16px;
}

.breadcrumb a:hover {
    color: var(--gold-400);
}

.inline-filter {
    margin-top: 26px;
    width: min(640px, 100%);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.12);
    border: 1px solid rgba(255, 250, 240, 0.18);
    padding: 6px;
}

.inline-filter input {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    color: var(--cream-50);
}

.inline-filter input::placeholder {
    color: rgba(255, 250, 240, 0.64);
}

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

.category-movie-grid {
    padding-bottom: 82px;
}

.full-ranking {
    padding-bottom: 82px;
}

.full-ranking a {
    grid-template-columns: 72px 74px minmax(0, 1fr);
}

.rank-cover {
    width: 64px;
    height: 78px;
    aspect-ratio: auto;
    border-radius: 12px;
}

.rank-cover em {
    inset: auto 6px 6px 6px;
    font-size: 0.72rem;
}

.detail-hero {
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    padding: 64px 0 72px;
}

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

.detail-poster {
    min-height: 460px;
}

.detail-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--coffee-950);
    background: rgba(255, 233, 167, 0.9);
    font-weight: 900;
}

.detail-section {
    padding-top: 54px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: 0 30px 90px rgba(31, 20, 14, 0.28);
    border: 1px solid rgba(255, 250, 240, 0.18);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: var(--cream-50);
    background: radial-gradient(circle, rgba(31, 20, 14, 0.18), rgba(31, 20, 14, 0.72));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9a7, var(--gold-400));
    box-shadow: 0 24px 60px rgba(212, 166, 74, 0.36);
}

.play-overlay span::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid var(--coffee-950);
}

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

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

.content-main,
.content-side {
    border-radius: var(--radius-lg);
    padding: 28px;
    background: rgba(255, 250, 240, 0.88);
    border: 1px solid rgba(114, 80, 52, 0.11);
    box-shadow: var(--shadow-card);
}

.content-main h2,
.content-side h2,
.site-footer h2 {
    margin: 0 0 16px;
    font-size: 1.25rem;
}

.content-main p {
    margin: 0 0 26px;
    color: var(--coffee-700);
    line-height: 2;
}

.content-main p:last-child {
    margin-bottom: 0;
}

.content-side dl {
    margin: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
}

.content-side dt {
    color: var(--coffee-600);
    font-weight: 800;
}

.content-side dd {
    margin: 0;
    color: var(--coffee-900);
    line-height: 1.6;
}

.content-side a {
    color: var(--gold-500);
    font-weight: 900;
}

.compact-card {
    padding-bottom: 14px;
}

.compact-poster {
    aspect-ratio: 16 / 10;
}

.compact-card strong,
.compact-card em {
    padding: 0 14px;
}

.compact-card strong {
    margin-top: 12px;
}

.site-footer {
    margin-top: 88px;
    color: var(--cream-100);
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.18), transparent 28rem),
        linear-gradient(135deg, var(--coffee-950), var(--coffee-800));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 54px 0;
}

.footer-grid p {
    color: rgba(255, 250, 240, 0.7);
    line-height: 1.8;
}

.footer-grid a {
    display: block;
    color: rgba(255, 250, 240, 0.74);
    margin: 8px 0;
}

.footer-grid a:hover {
    color: var(--gold-400);
}

.footer-brand {
    display: inline-block;
    color: var(--cream-50) !important;
    font-size: 1.5rem;
    margin: 0 0 12px !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: rgba(255, 250, 240, 0.62);
    border-top: 1px solid rgba(255, 250, 240, 0.1);
}

[data-card].is-hidden {
    display: none;
}

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

    .hero-slide-inner,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        max-width: 420px;
        min-height: 520px;
    }

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

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

    .brand-copy em {
        display: none;
    }

    .hero-carousel,
    .hero-slide-inner {
        min-height: 720px;
    }

    .hero-slide-inner {
        padding: 48px 0 78px;
        gap: 30px;
    }

    .hero-poster,
    .detail-poster {
        min-height: 420px;
        width: min(100%, 320px);
    }

    .quick-panel,
    .quick-search {
        grid-template-columns: 1fr;
    }

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

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

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

    .full-ranking a {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .rank-cover {
        display: none;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

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

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

    .brand-copy strong {
        font-size: 1.08rem;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.45rem;
    }

    .hero-copy p,
    .page-hero p,
    .detail-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }

    .movie-grid,
    .wide-grid,
    .compact-grid,
    .category-grid,
    .large-category-grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding-top: 52px;
    }

    .detail-hero-inner,
    .compact-hero,
    .category-hero {
        padding: 46px 0;
    }

    .content-main,
    .content-side {
        padding: 22px;
    }

    .play-overlay span {
        width: 66px;
        height: 66px;
    }
}
