:root {
    color-scheme: light;
    --teal-900: #0f766e;
    --teal-800: #115e59;
    --teal-700: #0f766e;
    --teal-500: #14b8a6;
    --cyan-500: #06b6d4;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --rose-500: #f43f5e;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.11);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--slate-900);
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 34rem),
        linear-gradient(180deg, #ecfeff 0%, #f8fafc 22rem, #ffffff 100%);
}

body.is-nav-open {
    overflow: hidden;
}

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

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

img.is-missing {
    opacity: 0;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: var(--white);
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.96), rgba(8, 145, 178, 0.96));
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.26);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #1f2937;
    background: linear-gradient(135deg, var(--amber-400), var(--white));
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.03em;
}

.brand-copy small {
    color: #ccfbf1;
    font-size: 12px;
}

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

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: color 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover {
    color: var(--amber-400);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.header-search input,
.page-search input,
.hero-search-card input {
    width: 240px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px 0 0 999px;
    padding: 10px 15px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input::placeholder,
.page-search input::placeholder,
.hero-search-card input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.header-search input:focus,
.page-search input:focus,
.hero-search-card input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.header-search button,
.page-search button,
.hero-search-card button {
    border: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), #f97316);
    border-radius: 0 999px 999px 0;
    padding: 10px 17px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.header-search button:hover,
.page-search button:hover,
.hero-search-card button:hover,
.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding: 108px max(24px, calc((100vw - 1320px) / 2)) 210px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.85s ease, transform 1s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(120deg, #0f172a, #0f766e 50%, #0891b2),
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.45), transparent 28rem);
}

.hero-backdrop::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 43%, rgba(2, 6, 23, 0.28) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.92));
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.15) contrast(1.05) blur(1px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-label,
.detail-kicker,
.section-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--amber-400);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-info p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.85;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(20, 184, 166, 0.26);
    border: 1px solid rgba(153, 246, 228, 0.24);
    font-size: 12px;
    font-weight: 700;
}

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

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

.primary-button {
    color: #1f2937;
    background: linear-gradient(135deg, var(--amber-400), #ffffff);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.28);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.ghost-button.light {
    color: var(--teal-800);
    background: rgba(255, 255, 255, 0.78);
}

.hero-panel {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px;
    width: min(1320px, calc(100% - 32px));
    transform: translateX(-50%);
}

.hero-search-card,
.hero-thumbs {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.56);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.hero-search-card {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 22px;
}

.hero-search-card span {
    color: #ccfbf1;
    font-weight: 900;
}

.hero-search-card form {
    display: flex;
}

.hero-search-card input {
    width: 100%;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}

.hero-thumb {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.08);
    padding: 9px;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
    color: var(--white);
    background: rgba(20, 184, 166, 0.42);
    transform: translateY(-2px);
}

.hero-thumb img {
    width: 56px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(245, 158, 11, 0.35));
}

.hero-thumb span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tinted-section {
    width: min(1320px, calc(100% - 32px));
    margin-top: 72px;
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.95), rgba(240, 253, 250, 0.95));
    box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.14);
}

.tinted-section.content-section {
    padding-top: 40px;
}

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

.section-heading h2 {
    margin: 8px 0 0;
    color: var(--slate-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-link {
    display: inline-flex;
    align-items: center;
    color: var(--teal-800);
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 156px;
    border-radius: 26px;
    padding: 22px;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.65), transparent 4rem),
        linear-gradient(135deg, var(--teal-800), var(--cyan-500));
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    filter: saturate(1.08);
}

.category-tile span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.86);
    font-size: 24px;
    font-weight: 900;
}

.category-tile strong {
    display: block;
    margin-top: 18px;
    font-size: 20px;
}

.category-tile em {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 15%, rgba(251, 191, 36, 0.42), transparent 5rem),
        linear-gradient(135deg, #0f766e, #1e293b 58%, #0f172a);
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.25s ease;
}

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

.quality-badge,
.type-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.quality-badge {
    right: 10px;
    top: 10px;
    background: rgba(245, 158, 11, 0.92);
}

.type-badge {
    left: 10px;
    bottom: 10px;
    background: rgba(15, 118, 110, 0.9);
}

.rank-badge {
    left: 10px;
    top: 10px;
    background: rgba(244, 63, 94, 0.92);
}

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

.movie-meta {
    display: flex;
    gap: 8px;
    color: var(--slate-600);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.5em;
    margin: 9px 0 8px;
    color: var(--slate-900);
    font-size: 17px;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card h3 a:hover {
    color: var(--teal-700);
}

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

.movie-card-compact {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 158px;
}

.movie-card-compact .poster-frame {
    aspect-ratio: auto;
    min-height: 158px;
}

.movie-card-compact .movie-card-body {
    align-self: center;
}

.movie-card-compact h3 {
    min-height: auto;
}

.movie-card-compact p {
    min-height: auto;
    -webkit-line-clamp: 2;
}

.page-hero,
.detail-hero {
    width: min(1320px, calc(100% - 32px));
    margin: 34px auto 0;
    border-radius: 36px;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.55), transparent 18rem),
        linear-gradient(135deg, var(--slate-950), var(--teal-800) 54%, var(--cyan-500));
    box-shadow: var(--shadow-soft);
}

.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 54px;
}

.soft-hero {
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 18rem),
        linear-gradient(135deg, #0f172a, #0f766e);
}

.ranking-hero {
    background:
        radial-gradient(circle at top right, rgba(244, 63, 94, 0.45), transparent 18rem),
        linear-gradient(135deg, #0f172a, #7f1d1d 50%, #0f766e);
}

.search-hero {
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.45), transparent 18rem),
        linear-gradient(135deg, #020617, #164e63 60%, #0f766e);
}

.page-search {
    display: flex;
    flex: 0 0 420px;
}

.page-search input {
    width: 100%;
}

.empty-state {
    display: none;
    margin-bottom: 24px;
    border-radius: 18px;
    padding: 22px;
    color: var(--slate-700);
    background: #fef3c7;
    font-weight: 800;
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 40px;
    padding: 42px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 15%, rgba(251, 191, 36, 0.45), transparent 6rem),
        linear-gradient(135deg, #0f766e, #0f172a);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info {
    align-self: center;
}

.detail-info h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.detail-info .primary-button {
    margin-top: 24px;
}

.player-section {
    width: min(1320px, calc(100% - 32px));
    margin: 34px auto 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 16 / 9;
    background: #000000;
    box-shadow: var(--shadow-soft);
}

.player-video {
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-400), var(--white));
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.3);
}

.play-icon::after {
    position: absolute;
    left: 34px;
    top: 25px;
    width: 0;
    height: 0;
    content: "";
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 27px solid #0f172a;
}

.player-start strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    width: min(1320px, calc(100% - 32px));
    margin: 34px auto 0;
}

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

.detail-article {
    padding: 34px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    color: var(--slate-900);
    font-size: 25px;
}

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

.detail-article p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
    line-height: 2;
}

.detail-side {
    padding: 28px;
    align-self: start;
}

.detail-side dl,
.detail-side dd {
    margin: 0;
}

.detail-side div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-side div:last-child {
    border-bottom: 0;
}

.detail-side dt {
    color: var(--slate-500);
    font-weight: 800;
}

.detail-side dd {
    color: var(--slate-900);
    font-weight: 700;
}

.related-section {
    padding-bottom: 80px;
}

.site-footer {
    margin-top: 80px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #1e293b, #020617);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
}

.footer-brand {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.footer-inner p {
    max-width: 680px;
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-content: start;
}

.footer-links a:hover {
    color: var(--amber-400);
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 16px;
    }

    .main-nav {
        gap: 14px;
    }

    .header-search input {
        width: 190px;
    }

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

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

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

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

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

@media (max-width: 860px) {
    .header-inner {
        min-height: 66px;
    }

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

    .main-nav,
    .header-search {
        position: fixed;
        left: 16px;
        right: 16px;
        z-index: 90;
        display: none;
        background: rgba(15, 23, 42, 0.96);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(20px);
    }

    .main-nav {
        top: 76px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 22px 22px 0 0;
        padding: 12px;
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 12px;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .header-search {
        top: 398px;
        border-radius: 0 0 22px 22px;
        padding: 14px;
    }

    .header-search input {
        width: 100%;
    }

    body.is-nav-open .main-nav,
    body.is-nav-open .header-search {
        display: flex;
    }

    .hero {
        min-height: 820px;
    }

    .hero-slide {
        align-items: start;
        padding: 86px 20px 330px;
    }

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

    .hero-panel {
        bottom: 18px;
    }

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

    .hero-thumb {
        grid-template-columns: 48px 1fr;
    }

    .hero-thumb img {
        width: 48px;
        height: 60px;
    }

    .content-section,
    .tinted-section,
    .page-hero,
    .detail-hero,
    .detail-layout,
    .player-section {
        width: min(100% - 24px, 1320px);
    }

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

    .page-hero,
    .detail-hero,
    .tinted-section {
        padding: 28px;
        border-radius: 28px;
    }

    .page-search {
        flex: 1 1 auto;
        width: 100%;
    }

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

    .detail-cover {
        max-width: 320px;
    }

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

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

@media (max-width: 560px) {
    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 860px;
    }

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 34px;
    }

    .hero-thumbs,
    .movie-grid,
    .catalog-grid,
    .featured-grid,
    .latest-grid,
    .ranking-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-compact {
        grid-template-columns: 104px 1fr;
    }

    .movie-card-compact .poster-frame {
        min-height: 148px;
    }

    .detail-side div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .player-shell {
        border-radius: 18px;
    }
}
