:root {
    --color-red: #dc2626;
    --color-orange: #f97316;
    --color-amber: #f59e0b;
    --color-rose: #fff1f2;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #fff7ed;
    --color-border: rgba(248, 113, 113, 0.18);
    --shadow-card: 0 18px 50px rgba(127, 29, 29, 0.12);
    --shadow-strong: 0 24px 80px rgba(127, 29, 29, 0.24);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 45%, #fff1f2 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;
}

.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.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 30px rgba(127, 29, 29, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange), var(--color-amber));
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.28);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 12px;
}

.brand-dark .brand-text strong {
    color: #ffffff;
    background: none;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.18);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    color: var(--color-red);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    gap: 8px;
}

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

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 26%), linear-gradient(115deg, #b91c1c 0%, #f97316 48%, #f59e0b 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.13), transparent 32%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    right: 6%;
    top: 8%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    filter: blur(18px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    align-items: center;
}

.hero-track {
    position: relative;
    min-height: 490px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 46px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

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

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1,
.hero h2,
.page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.8;
}

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

.hero-tags {
    margin: 24px 0 28px;
}

.hero-tags span,
.detail-meta span,
.tag-row span,
.ranking-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.primary-button,
.secondary-button,
.light-button,
.outline-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--color-red);
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(127, 29, 29, 0.18);
}

.secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.light-button {
    color: var(--color-red);
    background: #ffffff;
}

.outline-button,
.ghost-button {
    color: var(--color-red);
    background: #fff7ed;
    border: 1px solid rgba(248, 113, 113, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.light-button:hover,
.outline-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(127, 29, 29, 0.16);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.18);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    z-index: 2;
    pointer-events: none;
}

.hero-poster img,
.movie-poster img,
.category-card img,
.category-overview-card img,
.ranking-cover img,
.detail-poster img,
.category-hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    z-index: 3;
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.65;
}

.hero-dot.is-active {
    width: 28px;
    opacity: 1;
    background: #ffffff;
}

.quick-channel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.quick-channel a {
    min-height: 76px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.96), rgba(249, 115, 22, 0.96));
    box-shadow: var(--shadow-card);
}

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

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

.section-head h2 {
    margin: 10px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-head p {
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 700px;
}

.section-kicker {
    color: var(--color-red);
    background: #fff7ed;
    border-color: rgba(248, 113, 113, 0.24);
}

.text-link {
    color: var(--color-red);
    font-weight: 900;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 0.18fr)) auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    margin-bottom: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 40px rgba(127, 29, 29, 0.08);
}

.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    min-height: 48px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid var(--color-border);
}

.search-field span {
    color: var(--color-red);
    font-size: 22px;
}

.search-field input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    outline: none;
}

.search-field input {
    border: 0;
    min-height: auto;
}

.filter-panel select {
    padding: 0 12px;
}

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-strong);
}

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

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #fed7aa);
}

.movie-card-compact .movie-poster {
    aspect-ratio: 3 / 4;
}

.movie-poster img {
    transition: transform 0.45s ease;
}

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

.movie-year,
.movie-type,
.rank-num {
    position: absolute;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
}

.movie-year {
    top: 12px;
    right: 12px;
}

.movie-type {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
}

.rank-num {
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 12px;
}

.movie-content {
    padding: 18px;
}

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

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

.movie-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    margin: 10px 0 14px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.58;
}

.movie-meta {
    justify-content: space-between;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
}

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

.tag-row span,
.ranking-tags span,
.detail-meta span {
    color: #b91c1c;
    background: #fff1f2;
}

.wide-gradient {
    padding: 64px 0;
    color: #ffffff;
    background: linear-gradient(100deg, var(--color-red), var(--color-orange), var(--color-amber));
}

.wide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.wide-inner h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.05em;
}

.wide-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

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

.category-card,
.category-overview-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 22px;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card img,
.category-overview-card img {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    mix-blend-mode: multiply;
}

.category-card::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32));
}

.category-card span,
.category-card p,
.category-overview-card div {
    position: relative;
    z-index: 2;
}

.category-card span {
    display: block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.category-card p,
.category-overview-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.gradient-1 {
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.gradient-2 {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.gradient-3 {
    background: linear-gradient(135deg, #be123c, #f97316);
}

.gradient-4 {
    background: linear-gradient(135deg, #ea580c, #fbbf24);
}

.gradient-5 {
    background: linear-gradient(135deg, #991b1b, #fb923c);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 82px;
    color: #ffffff;
    background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.18), transparent 28%), linear-gradient(115deg, #b91c1c, #f97316, #f59e0b);
}

.small-hero {
    padding: 86px 0 76px;
}

.category-hero-inner,
.detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 46px;
    align-items: center;
}

.category-hero-poster,
.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.2);
}

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

.category-overview-card {
    min-height: 260px;
    display: flex;
    align-items: end;
}

.category-overview-card span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 800;
}

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

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 86px 44px minmax(0, 1fr) 68px;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(127, 29, 29, 0.08);
}

.ranking-cover {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
}

.ranking-index {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
}

.ranking-info a {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.ranking-info p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 13px;
}

.ranking-score {
    display: grid;
    place-items: center;
    color: var(--color-red);
}

.ranking-score strong {
    font-size: 24px;
    line-height: 1;
}

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

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

.breadcrumb a {
    color: var(--color-red);
    font-weight: 800;
}

.detail-hero {
    padding: 56px 0;
    color: #ffffff;
    background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18), transparent 30%), linear-gradient(135deg, #991b1b, #ea580c, #f59e0b);
}

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-one-line {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 18px;
}

.detail-meta {
    margin: 22px 0 14px;
}

.detail-meta span,
.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.player-section {
    padding: 72px 0 34px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

.player-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(153, 27, 27, 0.45));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-circle {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--color-red);
    background: #ffffff;
    font-size: 32px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.player-cover strong {
    max-width: 80%;
    text-align: center;
    font-size: clamp(20px, 3vw, 34px);
}

.detail-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 38px 0;
}

.detail-body article {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.detail-body h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.detail-body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
}

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

.site-footer {
    margin-top: 40px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 38px;
    padding: 58px 0 40px;
}

.footer-brand p,
.site-footer a,
.site-footer span {
    display: block;
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer a:hover {
    color: #fb923c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
    text-align: center;
}

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

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

    .menu-button {
        display: flex;
    }

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

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

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

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

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

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

    .hero,
    .hero-inner {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-poster {
        max-width: 270px;
        margin: 0 auto;
    }

    .quick-channel,
    .category-grid,
    .category-overview-grid,
    .detail-body,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .detail-poster,
    .category-hero-poster {
        max-width: 300px;
        margin: 0 auto;
    }

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

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

    .ranking-index {
        display: none;
    }
}

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

    .brand-text small {
        display: none;
    }

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

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

    .movie-grid,
    .search-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

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