:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #111827;
    --muted: #6b7280;
    --line: #fde68a;
    --brand: #f59e0b;
    --brand-dark: #d97706;
    --brand-soft: rgba(245, 158, 11, 0.14);
    --shadow: 0 24px 60px rgba(120, 53, 15, 0.13);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 14px 22px;
}

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

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.brand-text {
    white-space: nowrap;
    font-size: 20px;
}

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

.nav-link {
    padding: 10px 13px;
    color: #374151;
    border-radius: 999px;
    font-size: 15px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand-dark);
    background: var(--brand-soft);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    min-width: 260px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.34);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(120, 53, 15, 0.08);
}

.header-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: #111827;
    background: transparent;
}

.header-search input {
    padding: 10px 14px;
}

.header-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    white-space: nowrap;
}

.header-search button {
    padding: 0 17px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: #92400e;
}

.hero {
    position: relative;
    height: 600px;
    min-height: 520px;
    overflow: hidden;
    background: #111827;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.88) 0%, rgba(17, 24, 39, 0.62) 42%, rgba(17, 24, 39, 0.1) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 22px 86px;
    color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
    max-width: 820px;
    margin: 14px 0 12px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hero-badge,
.detail-badge,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hero-badge,
.detail-badge {
    padding: 7px 12px;
}

.hero-movie-title {
    margin: -4px 0 12px;
    color: #fbbf24;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
}

.hero-lead {
    max-width: 760px;
    margin: 0 0 10px;
    color: #fef3c7;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.55;
}

.hero-summary {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

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

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

.primary-button {
    padding: 13px 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.32);
}

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

.ghost-button {
    padding: 12px 22px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-size: 34px;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 30px;
    background: #f59e0b;
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 7;
    display: flex;
    width: min(720px, calc(100% - 42px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.hero-search input {
    padding: 17px 22px;
}

.hero-search button {
    padding: 0 30px;
}

.section {
    max-width: 1220px;
    margin: 0 auto;
    padding: 72px 22px;
}

.soft-section {
    max-width: none;
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.74), rgba(255, 255, 255, 0.95));
}

.soft-section > .section-heading,
.soft-section > .movie-grid,
.soft-section > .category-grid {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-kicker {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-link,
.text-link {
    color: var(--brand-dark);
    background: #fff7ed;
}

.section-link {
    padding: 11px 18px;
    border: 1px solid var(--line);
    white-space: nowrap;
}

.text-link {
    margin-top: 16px;
    font-size: 15px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 16px 38px rgba(120, 53, 15, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.78));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-badge {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: auto;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: scale(1);
}

.type-badge,
.year-badge {
    position: absolute;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.type-badge {
    top: 12px;
    left: 12px;
    color: #92400e;
    background: rgba(255, 255, 255, 0.9);
}

.year-badge {
    right: 12px;
    bottom: 12px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--brand-dark);
}

.card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 13px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.card-meta span,
.card-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff7ed;
    color: #92400e;
    font-size: 12px;
}

.card-meta span,
.card-tags span {
    padding: 4px 8px;
}

.detail-tags span {
    padding: 7px 10px;
    font-size: 13px;
}

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

.category-card {
    min-height: 156px;
    padding: 22px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #ffffff, #fffbeb);
    box-shadow: 0 12px 34px rgba(120, 53, 15, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-size: 13px;
    font-weight: 700;
}

.category-card strong {
    display: block;
    color: #374151;
    line-height: 1.7;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 48px 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(245, 158, 11, 0.17);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.ranking-item:hover {
    border-color: rgba(245, 158, 11, 0.45);
    transform: translateX(4px);
}

.ranking-index {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    border-radius: 15px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-weight: 900;
}

.ranking-item img {
    width: 72px;
    height: 96px;
    border-radius: 15px;
    object-fit: cover;
}

.ranking-copy {
    min-width: 0;
}

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

.ranking-copy strong {
    margin-bottom: 8px;
    font-size: 17px;
}

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

.ranking-score {
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 22px 80px;
    color: #ffffff;
    text-align: center;
    background: radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.55), transparent 30%), linear-gradient(135deg, #111827, #78350f 55%, #ea580c);
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 auto 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(120, 53, 15, 0.08);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-thumbs img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 4px 0 10px;
    font-size: 24px;
}

.category-overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(120, 53, 15, 0.07);
}

.filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #92400e;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #fde68a;
    border-radius: 14px;
    background: #fffbeb;
}

.empty-state {
    display: none;
    padding: 42px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed #fcd34d;
    border-radius: var(--radius-md);
    background: #fffbeb;
}

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

.detail-main {
    max-width: 1220px;
    margin: 0 auto;
    padding: 26px 22px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #92400e;
    font-weight: 700;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.85fr);
    gap: 26px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background-position: center;
    background-size: cover;
}

.player-poster::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3), rgba(0, 0, 0, 0.75));
}

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

.big-play {
    position: relative;
    z-index: 1;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    padding-left: 5px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
    font-size: 34px;
}

.detail-panel {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(120, 53, 15, 0.09);
}

.detail-cover {
    width: 150px;
    border-radius: 20px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 13px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.detail-lead {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.75;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
}

.detail-meta div {
    padding: 10px;
    border-radius: 14px;
    background: #fffbeb;
}

.detail-meta dt {
    color: var(--muted);
    font-size: 12px;
}

.detail-meta dd {
    margin: 5px 0 0;
    color: #111827;
    font-weight: 800;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.copy-card {
    padding: 26px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(120, 53, 15, 0.07);
}

.copy-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.copy-card p {
    margin: 0 0 12px;
    color: #374151;
    line-height: 1.9;
}

.copy-card p:last-child {
    margin-bottom: 0;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 22px;
    color: #fef3c7;
    background: linear-gradient(135deg, #111827, #78350f);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1220px;
    margin: 0 auto;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    max-width: 560px;
    margin: 12px 0 0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    max-width: 460px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.movie-card.is-hidden {
    display: none;
}

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

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

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

    .header-search {
        min-width: 220px;
    }
}

@media (max-width: 860px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .site-nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 8px;
        border-radius: 18px;
        background: #fff7ed;
    }

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

    .nav-link {
        width: 100%;
    }

    .header-search {
        order: 4;
        width: 100%;
        min-width: 0;
    }

    .hero {
        height: 680px;
    }

    .hero-content {
        padding-top: 34px;
        padding-bottom: 140px;
    }

    .hero-control {
        display: none;
    }

    .hero-dots {
        bottom: 116px;
    }

    .section-heading,
    .footer-inner {
        display: block;
    }

    .section-link {
        margin-top: 18px;
    }

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

    .footer-links {
        justify-content: flex-start;
        margin-top: 24px;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 52px 16px;
    }

    .hero-search {
        display: grid;
        overflow: visible;
        border-radius: 22px;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }

    .hero-search input,
    .hero-search button {
        min-height: 50px;
        border-radius: 999px;
    }

    .hero-search input {
        background: #ffffff;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body h3 {
        font-size: 16px;
    }

    .ranking-item {
        grid-template-columns: 38px 58px minmax(0, 1fr);
    }

    .ranking-item img {
        width: 58px;
        height: 78px;
    }

    .ranking-score {
        grid-column: 3;
        font-size: 16px;
    }

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

    .detail-cover {
        width: 100%;
        max-width: 220px;
    }

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

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

    .hero-content h1,
    .hero-content h2 {
        font-size: 34px;
    }

    .page-hero {
        padding-top: 70px;
        padding-bottom: 62px;
    }
}
