:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --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;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 16px 40px rgba(17, 24, 39, 0.13);
    --shadow-lg: 0 24px 80px rgba(17, 24, 39, 0.22);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 36%, var(--orange-50) 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(120, 53, 15, 0.11);
}

.nav-wrap {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
    font-size: 15px;
}

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

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

.nav-link {
    border: 0;
    background: transparent;
    padding: 8px 2px;
    color: var(--gray-700);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 8px;
    background: var(--white);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--gray-700);
}

.nav-dropdown-menu a:hover {
    background: var(--amber-50);
    color: var(--amber-600);
}

.header-search {
    display: flex;
    align-items: center;
    width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(217, 119, 6, 0.07);
}

.header-search input,
.mobile-search input,
.quick-search input,
.search-page-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 14px;
    color: var(--gray-800);
}

.header-search button {
    width: 42px;
    border: 0;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 20px;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--gray-800);
    transition: transform 0.2s ease;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(217, 119, 6, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel-inner {
    display: grid;
    gap: 12px;
    padding: 16px 0 22px;
}

.mobile-panel a {
    padding: 8px 0;
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-50);
    border-radius: 999px;
    padding: 4px;
}

.mobile-search button,
.quick-search button,
.filter-panel button {
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
}

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--gray-900);
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54) 45%, rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 760px;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: var(--amber-400);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.hero-summary {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.72;
    margin: 0 0 22px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: var(--amber-600);
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    backdrop-filter: blur(8px);
}

.hero-meta,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-meta {
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.84);
}

.hero-meta span,
.detail-meta span,
.card-meta span {
    position: relative;
}

.hero-meta span + span::before,
.detail-meta span + span::before,
.card-meta span + span::before {
    content: "·";
    margin-right: 12px;
    color: currentColor;
    opacity: 0.6;
}

.hero-actions,
.sub-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button-primary,
.button-ghost,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary,
.section-more {
    color: white;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.button-primary:hover,
.section-more:hover,
.mobile-search button:hover,
.quick-search button:hover,
.filter-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(217, 119, 6, 0.34);
}

.button-primary.small {
    padding: 10px 18px;
}

.button-ghost {
    color: white;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.button-ghost.light {
    color: white;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 34px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: white;
}

.quick-search-band {
    margin-top: -36px;
    position: relative;
    z-index: 4;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.quick-search-inner h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.quick-search-inner p {
    margin: 0;
    color: var(--gray-600);
}

.quick-search,
.search-page-form {
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 999px;
    padding: 5px;
}

.main-sections,
.category-overview-list,
.detail-content {
    padding: 54px 0;
}

.section-block {
    margin-bottom: 58px;
}

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

.section-heading h2,
.category-overview-head h2,
.story-card h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading p,
.category-overview-head p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.movie-card {
    min-width: 0;
}

.card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
}

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

.card-link:hover .card-media img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-link:hover .card-media::after {
    opacity: 1;
}

.card-category,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    left: 12px;
    right: auto;
    width: 44px;
    text-align: center;
    background: rgba(17, 24, 39, 0.78);
    backdrop-filter: blur(8px);
}

.card-play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: auto;
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

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

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.card-link:hover h3 {
    color: var(--amber-600);
}

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

.card-tags {
    margin-bottom: 14px;
}

.card-tags span {
    padding: 4px 8px;
    font-size: 12px;
}

.card-meta {
    color: var(--gray-500);
    font-size: 13px;
}

.featured-card .card-link {
    position: relative;
    border-radius: var(--radius-xl);
}

.featured-card .card-media {
    aspect-ratio: 16 / 10;
}

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-tile a,
.category-overview-card,
.story-card,
.filter-panel,
.detail-panel,
.player-card {
    display: block;
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.category-tile a {
    height: 100%;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.24);
}

.category-tile h3 {
    margin: 18px 0 8px;
    font-size: 22px;
}

.category-tile p {
    margin: 0 0 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.category-samples {
    display: grid;
    gap: 6px;
}

.category-samples a {
    display: block;
    padding: 0;
    box-shadow: none;
    border: 0;
    color: var(--amber-600);
    font-size: 14px;
}

.sub-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    color: white;
    background: radial-gradient(circle at 16% 18%, rgba(251, 191, 36, 0.42), transparent 34%), linear-gradient(135deg, var(--gray-900), #3b2607 55%, #7c2d12);
}

.sub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent);
}

.sub-hero .container {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.sub-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.06em;
}

.sub-hero p:not(.eyebrow) {
    margin: 0;
    max-width: 740px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 18px;
}

.sub-hero-actions {
    margin-top: 26px;
}

.category-overview-card {
    padding: 26px;
    margin-bottom: 26px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 14px;
    align-items: end;
    padding: 20px;
    margin-bottom: 26px;
}

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

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 0 12px;
    background: white;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus,
.header-search:focus-within,
.quick-search:focus-within,
.search-page-form:focus-within {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.empty-message {
    padding: 26px;
    text-align: center;
    color: var(--gray-500);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.detail-hero {
    padding: 42px 0 30px;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 34%), linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.player-card {
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #000000;
}

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

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-shell.is-playing .play-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    font-size: 28px;
    padding-left: 4px;
}

.detail-panel {
    padding: 22px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-bottom: 18px;
}

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

.detail-cover-wrap {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 18px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.08);
}

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

.detail-panel h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.detail-meta {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 16px;
}

.detail-tags span {
    background: rgba(251, 191, 36, 0.18);
    color: var(--amber-100);
}

.detail-content {
    display: grid;
    gap: 26px;
}

.story-card {
    padding: 30px;
}

.story-card p:last-child {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.95;
    font-size: 17px;
}

.related-block {
    margin-bottom: 0;
}

.search-page-form {
    margin-top: 28px;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.98);
}

.site-footer {
    color: white;
    background: linear-gradient(90deg, var(--gray-900), var(--gray-800));
    margin-top: 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr;
    gap: 36px;
    padding: 46px 0;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 14px;
}

.footer-about p,
.site-footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer-about p {
    max-width: 520px;
    line-height: 1.8;
}

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

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

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

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

@media (max-width: 980px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-carousel {
        min-height: 520px;
    }

    .quick-search-inner,
    .detail-grid,
    .footer-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .category-overview-head {
        align-items: start;
        flex-direction: column;
    }

    .detail-hero {
        padding-top: 26px;
    }
}

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

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

    .hero-carousel {
        height: 76vh;
        min-height: 540px;
    }

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

    .hero-summary {
        font-size: 16px;
    }

    .hero-control {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .quick-search,
    .search-page-form {
        border-radius: 18px;
        align-items: stretch;
        flex-direction: column;
    }

    .quick-search button,
    .search-page-form button {
        width: 100%;
    }

    .category-overview-card,
    .story-card,
    .detail-panel {
        padding: 20px;
    }
}
