:root {
    --ash-50: #f8f7f6;
    --ash-100: #f1efed;
    --ash-200: #e6e0dc;
    --ash-400: #a9958a;
    --ash-500: #8b7a72;
    --ash-600: #83766d;
    --ash-700: #655b55;
    --ash-800: #3f3935;
    --ash-900: #2f2926;
    --fire-50: #fff8f0;
    --fire-100: #ffedda;
    --fire-300: #ffb26d;
    --fire-500: #ff7a14;
    --fire-600: #f05d00;
    --fire-700: #c74400;
    --ember-50: #fff1ee;
    --ember-100: #fce7e4;
    --ember-500: #ea6755;
    --ember-600: #cf4332;
    --forest-50: #f2f6f2;
    --forest-500: #6e8f6b;
    --forest-600: #597456;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 8px 20px rgba(47, 41, 38, 0.08);
    --shadow-md: 0 16px 36px rgba(47, 41, 38, 0.12);
    --shadow-lg: 0 28px 70px rgba(47, 41, 38, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ash-900);
    background: linear-gradient(180deg, var(--ash-50), #ffffff 36%, var(--fire-50));
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
    box-shadow: 0 12px 24px rgba(240, 93, 0, 0.28);
    font-size: 16px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--ash-900);
    letter-spacing: -0.03em;
}

.brand-text em {
    margin-top: 3px;
    font-size: 12px;
    color: var(--ash-600);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ash-700);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--fire-700);
    background: var(--fire-50);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--ash-900);
    background: var(--ash-100);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(255, 122, 20, 0.2), transparent 28%), linear-gradient(135deg, var(--fire-50), var(--ember-50) 52%, var(--ash-100));
}

.hero::before {
    content: "";
    position: absolute;
    inset: -80px auto auto 55%;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: rgba(207, 67, 50, 0.12);
    filter: blur(18px);
}

.hero-slider {
    position: relative;
    padding: 62px 0 56px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 44px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeIn 0.45s ease both;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--fire-700);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 800;
}

.hero h1 {
    margin: 0 0 18px;
    max-width: 780px;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: var(--ash-900);
}

.hero p {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--ash-700);
    font-size: 18px;
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--ash-700);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(230, 224, 220, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
    box-shadow: 0 16px 34px rgba(240, 93, 0, 0.26);
}

.btn-secondary {
    color: var(--fire-700);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-art {
    position: relative;
    z-index: 1;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
    background: var(--ash-100);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.05);
}

.hero-card::after,
.featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18), transparent 70%);
}

.hero-art-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: var(--white);
}

.hero-art-caption strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.hero-art-caption span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(101, 91, 85, 0.34);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 32px;
    background: var(--fire-600);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 620px;
    margin-top: 26px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-sm);
}

.hero-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--ash-200);
    outline: none;
    border-radius: 999px;
    background: var(--white);
    color: var(--ash-900);
    font: inherit;
}

.hero-search input {
    min-height: 48px;
    padding: 0 18px;
    border-color: transparent;
    background: transparent;
}

.page-hero {
    padding: 56px 0 34px;
    background: linear-gradient(135deg, var(--fire-50), var(--ember-50), var(--ash-100));
}

.page-hero h1,
.detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--ash-700);
    font-size: 18px;
}

.section {
    padding: 56px 0;
}

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

.section-soft {
    background: var(--ash-50);
}

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

.section-heading h2 {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: var(--ash-900);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--fire-600), var(--ember-600));
}

.section-heading p {
    margin: 8px 0 0 18px;
    color: var(--ash-600);
}

.section-more {
    color: var(--fire-700);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(230, 224, 220, 0.86);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 93, 0, 0.34);
    box-shadow: var(--shadow-md);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--ash-100);
}

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

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--ash-900);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-title:hover {
    color: var(--fire-700);
}

.movie-line {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 12px;
    overflow: hidden;
    color: var(--ash-600);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ash-500);
    font-size: 12px;
    font-weight: 700;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--ash-50);
}

.featured-card {
    position: relative;
    min-height: 300px;
}

.featured-card .movie-cover {
    aspect-ratio: 16 / 11;
}

.featured-card .movie-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: var(--white);
}

.featured-card .movie-title,
.featured-card .movie-line,
.featured-card .movie-meta {
    color: var(--white);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--white), var(--fire-50));
    border: 1px solid rgba(230, 224, 220, 0.86);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -44px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(255, 122, 20, 0.13);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card h2,
.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--ash-600);
    font-size: 14px;
}

.category-card span {
    position: relative;
    z-index: 1;
    color: var(--fire-700);
    font-weight: 800;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 120px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--ash-200);
    box-shadow: var(--shadow-sm);
}

.rank-num {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
    font-weight: 900;
}

.rank-item img {
    width: 120px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--ash-100);
}

.rank-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.rank-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--ash-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    color: var(--ash-500);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 16px;
    margin: 28px 0 24px;
    padding: 16px;
    border: 1px solid rgba(230, 224, 220, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: var(--ash-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    padding: 0 14px;
}

.filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.empty-state {
    display: none;
    padding: 28px;
    border-radius: 20px;
    color: var(--ash-600);
    background: var(--ash-50);
    text-align: center;
    font-weight: 700;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background: linear-gradient(135deg, var(--ash-900), #4a2b22 52%, var(--fire-700));
    color: var(--white);
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 18%, rgba(255, 122, 20, 0.22), transparent 34%);
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
    background: var(--ash-800);
}

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

.detail-info p {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.detail-info .eyebrow {
    color: var(--fire-100);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
}

.player-section {
    padding: 44px 0 20px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: var(--black);
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    padding: 0;
    color: var(--white);
    background: var(--black);
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22));
}

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

.play-orb,
.player-title {
    position: relative;
    z-index: 2;
}

.play-orb {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--fire-600), var(--ember-600));
    box-shadow: 0 22px 46px rgba(240, 93, 0, 0.36);
    font-size: 30px;
}

.player-title {
    max-width: min(720px, 88%);
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    padding: 34px 0 58px;
}

.content-card,
.side-card {
    border: 1px solid var(--ash-200);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.content-card {
    padding: 30px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.content-card p {
    margin: 0 0 18px;
    color: var(--ash-700);
    font-size: 17px;
}

.side-card {
    padding: 18px;
}

.compact-list {
    display: grid;
    gap: 12px;
}

.compact-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.compact-card:hover {
    background: var(--fire-50);
}

.compact-card img {
    width: 96px;
    height: 62px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--ash-100);
}

.compact-card span {
    display: -webkit-box;
    overflow: hidden;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.breadcrumb {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 700;
}

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

.site-footer {
    padding: 48px 0 0;
    color: var(--ash-100);
    background: var(--ash-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900;
}

.site-footer p {
    max-width: 560px;
    margin: 0;
    color: var(--ash-400);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: var(--ash-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--fire-300);
}

.footer-bottom {
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--ash-400);
    text-align: center;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

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

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

    .detail-poster {
        max-width: 520px;
    }

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

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

    .site-nav {
        min-height: 66px;
    }

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

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text em {
        font-size: 11px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 66px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }

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

    .nav-link {
        padding: 12px 14px;
    }

    .hero-slider {
        padding: 38px 0 54px;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .hero-art {
        margin-top: 28px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .hero-search input {
        background: var(--white);
        border-color: var(--ash-200);
    }

    .section {
        padding: 38px 0;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin: 12px 0 0 18px;
    }

    .movie-grid,
    .movie-grid.featured-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-title {
        min-height: 42px;
        font-size: 16px;
    }

    .movie-line {
        min-height: 40px;
        font-size: 13px;
    }

    .rank-item {
        grid-template-columns: 44px 86px 1fr;
        gap: 10px;
    }

    .rank-item img {
        width: 86px;
        height: 58px;
    }

    .rank-meta {
        display: none;
    }

    .filter-selects {
        display: grid;
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding: 36px 0;
    }

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

    .content-card {
        padding: 22px;
    }

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

@media (max-width: 480px) {
    .movie-grid,
    .movie-grid.featured-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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