:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--blue-600);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

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

.brand-text span {
    font-size: 20px;
    color: var(--gray-900);
}

.brand-text small {
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 22px 0;
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--blue-600);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-600);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    border-top: 1px solid var(--gray-200);
    background: #ffffff;
    padding: 10px 20px 18px;
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
    background: var(--blue-50);
    color: var(--blue-600);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800) 52%, var(--blue-600));
}

.hero-slider {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
}

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay,
.detail-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 22%, rgba(59, 130, 246, 0.5), transparent 28%), linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.74) 48%, rgba(29, 78, 216, 0.38));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    min-height: 620px;
    padding: 80px clamp(24px, 6vw, 92px);
    color: #ffffff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.16);
    padding: 8px 14px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    background: var(--blue-50);
    color: var(--blue-600);
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: clamp(18px, 2vw, 24px);
}

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

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.tag-row span {
    background: var(--blue-50);
    color: var(--blue-700);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-btn,
.ghost-btn,
.text-link,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    background: #ffffff;
    color: var(--blue-600);
    padding: 0 24px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

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

.primary-btn.full {
    width: 100%;
    margin-top: 18px;
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff;
    padding: 0 22px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    bottom: 32px;
    left: clamp(24px, 6vw, 92px);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.active {
    width: 34px;
    background: #ffffff;
}

.hero-panel {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.28);
    padding: 46px 34px;
    color: #ffffff;
    backdrop-filter: blur(20px);
}

.hero-panel h2 {
    margin: 0;
    font-size: 28px;
}

.hero-panel p {
    margin: 0;
    color: #dbeafe;
}

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

.hero-mini-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-mini-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.hero-mini-card img {
    width: 74px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-mini-card span {
    color: #ffffff;
    font-weight: 800;
}

.panel-link {
    background: var(--blue-600);
    color: #ffffff;
    padding: 0 18px;
}

main {
    overflow: hidden;
}

.feature-strip,
.section-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 20px;
}

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

.feature-card {
    border-radius: var(--radius);
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow);
}

.feature-card strong {
    display: block;
    color: var(--gray-900);
    font-size: 20px;
}

.feature-card span {
    display: block;
    margin-top: 8px;
    color: var(--gray-600);
}

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

.section-heading h2,
.page-hero h1,
.ranking-panel h2,
.text-panel h2,
.related-section h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p {
    max-width: 660px;
    margin: 12px 0 0;
    color: var(--gray-600);
    font-size: 18px;
}

.compact-heading {
    margin-bottom: 24px;
}

.compact-heading h2 {
    font-size: 30px;
}

.text-link {
    min-height: auto;
    color: var(--blue-600);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--blue-700);
    box-shadow: var(--shadow);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    transform: scale(1.03);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(29, 78, 216, 0.82), rgba(17, 24, 39, 0.48));
    content: "";
}

.category-card span,
.category-card small {
    position: relative;
    z-index: 2;
    display: block;
    padding-left: 24px;
    color: #ffffff;
}

.category-card span {
    padding-top: 110px;
    font-size: 24px;
    font-weight: 900;
}

.category-card small {
    margin-top: 6px;
    color: #dbeafe;
    font-weight: 700;
}

.category-card:hover img {
    opacity: 0.55;
    transform: scale(1.1);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(209, 213, 219, 0.72);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
}

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

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

.corner-badge,
.rank-badge {
    position: absolute;
    top: 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.corner-badge {
    right: 10px;
    background: var(--blue-600);
    padding: 6px 10px;
}

.rank-badge {
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: rgba(17, 24, 39, 0.82);
}

.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-600);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: all 0.2s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body h3 {
    margin: 0;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card-body h3 a:hover {
    color: var(--blue-600);
}

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

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

.control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.search-box {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    background: #ffffff;
    padding: 0 14px;
}

.search-box span {
    color: var(--gray-500);
    font-size: 22px;
}

.search-box input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    color: var(--gray-800);
}

.select-group {
    display: flex;
    gap: 10px;
}

.select-group select {
    min-width: 130px;
    height: 48px;
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    background: #ffffff;
    color: var(--gray-700);
    padding: 0 12px;
    font-weight: 700;
}

.ranking-panel {
    border-radius: 22px;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow);
}

.ranking-panel h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 34px 62px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    padding: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: var(--blue-50);
    transform: translateX(-2px);
}

.rank-num {
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 950;
    text-align: center;
}

.rank-item img {
    width: 62px;
    height: 84px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-info strong {
    display: block;
    overflow: hidden;
    color: var(--gray-900);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    padding: 78px 20px;
    color: #ffffff;
}

.page-hero::after {
    position: absolute;
    top: -80px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    content: "";
    filter: blur(6px);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.page-hero p {
    color: #dbeafe;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #ffffff;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: center;
    border-radius: 22px;
    background: #ffffff;
    padding: 18px;
    box-shadow: var(--shadow);
}

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

.category-thumb-stack img {
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 0;
    font-size: 26px;
}

.category-overview-card p {
    margin: 10px 0 14px;
    color: var(--gray-600);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: var(--blue-900);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 20px;
    color: #ffffff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-cover {
    width: 290px;
    aspect-ratio: 2 / 3;
    border: 6px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.detail-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 780px;
    margin: 22px 0;
    color: #dbeafe;
    font-size: 21px;
}

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

.detail-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
    color: #ffffff;
    font-weight: 800;
}

.detail-main {
    padding-top: 44px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-600);
    font-size: 34px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

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

.text-panel {
    margin-top: 32px;
    border-radius: 22px;
    background: #ffffff;
    padding: 34px;
    box-shadow: var(--shadow);
}

.text-panel h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 28px;
}

.text-panel h2:not(:first-child) {
    margin-top: 32px;
}

.text-panel p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.9;
}

.related-section {
    margin-top: 48px;
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

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

.site-footer {
    margin-top: 42px;
    background: var(--gray-900);
    color: #d1d5db;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 20px;
}

.brand-footer .brand-text span {
    color: #ffffff;
}

.brand-footer .brand-text small {
    color: #9ca3af;
}

.footer-about p {
    max-width: 560px;
    color: #9ca3af;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 10px;
}

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

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

@media (max-width: 1100px) {
    .hero,
    .split-layout,
    .ranking-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .header-inner {
        height: 64px;
    }

    .hero,
    .hero-slider,
    .hero-content {
        min-height: 560px;
    }

    .hero-content {
        padding: 64px 20px;
    }

    .hero-dots {
        left: 20px;
        bottom: 22px;
    }

    .feature-strip,
    .category-overview-grid,
    .footer-inner,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        padding-top: 34px;
    }

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

    .section-heading,
    .control-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .select-group {
        flex-wrap: wrap;
    }

    .select-group select {
        flex: 1;
        min-width: 150px;
    }

    .detail-cover {
        width: min(280px, 100%);
    }

    .detail-grid {
        align-items: start;
    }

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

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

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

    .hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero p,
    .detail-one-line {
        font-size: 17px;
    }

    .category-grid,
    .featured-grid,
    .movie-grid,
    .full-library {
        grid-template-columns: 1fr;
    }

    .section-wrap,
    .feature-strip {
        padding-right: 16px;
        padding-left: 16px;
    }

    .movie-card {
        border-radius: 16px;
    }

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

    .text-panel {
        padding: 24px;
    }

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