* {
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --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-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--amber-50), #ffffff 38%, var(--orange-50));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark,
.footer-logo span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

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

.brand-title {
    color: var(--gray-900);
    font-size: 20px;
    font-weight: 800;
}

.brand-subtitle {
    margin-top: 3px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.desktop-nav a,
.nav-dropdown button {
    border: 0;
    color: var(--gray-700);
    background: transparent;
    cursor: pointer;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown button:hover {
    color: var(--amber-600);
}

.nav-dropdown {
    position: relative;
    padding: 20px 0;
}

.dropdown-panel {
    position: absolute;
    top: 58px;
    left: 50%;
    width: 210px;
    transform: translateX(-50%) translateY(8px);
    display: grid;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--amber-100);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
    padding: 10px 12px;
    border-radius: 10px;
}

.dropdown-panel a:hover {
    background: var(--amber-50);
}

.header-search,
.mobile-search,
.wide-search,
.search-page-form,
.page-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-search input,
.wide-search input,
.search-page-form input,
.page-filter input,
.page-filter select {
    border: 1px solid var(--amber-300);
    outline: none;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--gray-800);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input {
    width: 230px;
}

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

.header-search button,
.mobile-search button,
.wide-search button,
.search-page-form button {
    border: 0;
    color: #ffffff;
    background: var(--amber-500);
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 750;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.search-page-form button:hover {
    background: var(--amber-600);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--gray-800);
    font-size: 28px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a,
.mobile-category-links a {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    color: var(--gray-700);
    font-weight: 650;
}

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

.hero-slider {
    position: relative;
    height: min(620px, 82vh);
    min-height: 500px;
    overflow: hidden;
    background: var(--gray-900);
}

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

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.12));
}

.hero-copy {
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    z-index: 2;
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    color: #ffffff;
    background: var(--amber-500);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 750;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-line {
    max-width: 740px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 650;
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

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

.btn-primary,
.btn-secondary,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: #ffffff;
    background: var(--amber-500);
    padding: 13px 26px;
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

.btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 12px 24px;
    backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-secondary:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: var(--amber-600);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.search-band,
.ranking-band,
.content-section,
.toolbar-section,
.search-page-panel,
.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.search-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 24px;
    align-items: center;
    margin-top: -44px;
    position: relative;
    z-index: 5;
    padding: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--amber-100);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.search-band h2,
.ranking-band h2,
.section-head h2,
.page-hero h1,
.detail-title-card h1,
.article-card h2,
.side-card h2 {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.15;
}

.search-band h2 {
    font-size: 26px;
}

.search-band p,
.section-head p,
.page-hero p,
.ranking-band p,
.category-tile p,
.category-overview-card p,
.detail-one-line {
    color: var(--gray-600);
}

.wide-search input,
.search-page-form input {
    flex: 1;
    min-width: 0;
}

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

.content-section.warm-section {
    width: 100%;
    max-width: none;
    padding: 72px max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(90deg, var(--amber-100), var(--orange-100));
}

.content-section.latest-section {
    padding-top: 46px;
}

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

.section-head h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
}

.section-head p {
    margin: 8px 0 0;
}

.section-more {
    color: var(--amber-700, #b45309);
    background: #ffffff;
    border: 1px solid var(--amber-200);
    padding: 10px 18px;
    box-shadow: var(--shadow-sm);
}

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

.scroll-section .movie-grid {
    display: flex;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-snap-type: x proximity;
}

.scroll-section .movie-card {
    min-width: 276px;
    scroll-snap-align: start;
}

.movie-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-900);
}

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

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

.poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.66));
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.88);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
}

.year-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.card-kicker {
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 800;
}

.card-body h3 {
    margin: 7px 0 8px;
    color: var(--gray-900);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 18px;
    line-height: 1.32;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 12px;
}

.card-meta span {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-card-horizontal a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.movie-card-horizontal .poster {
    aspect-ratio: auto;
    min-height: 132px;
}

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

.category-tile,
.category-overview-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon,
.category-overview-main span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-radius: 14px;
    margin-bottom: 12px;
}

.category-tile h3,
.category-overview-card h2 {
    margin: 0 0 8px;
    color: var(--gray-900);
}

.category-tile p,
.category-overview-card p {
    margin: 0;
    font-size: 14px;
}

.category-samples,
.category-overview-links {
    display: grid;
    gap: 7px;
    margin-top: 16px;
}

.category-samples a,
.category-overview-links a {
    color: var(--gray-600);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
}

.category-samples a:hover,
.category-overview-links a:hover {
    color: var(--amber-600);
}

.ranking-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gray-900), #3f2a12 52%, var(--amber-600));
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.ranking-band span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--amber-200);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.ranking-band h2 {
    color: #ffffff;
    font-size: 34px;
}

.ranking-band p {
    max-width: 720px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: 54px;
    background: linear-gradient(135deg, #111827, #5b3512 55%, #f59e0b);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    color: #ffffff;
    overflow: hidden;
}

.page-hero.compact-hero {
    min-height: 220px;
}

.page-hero.ranking-hero {
    background: linear-gradient(135deg, #111827, #3f2a12 48%, #d97706);
}

.page-hero h1 {
    color: #ffffff;
    margin-top: 16px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
}

.page-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.toolbar-section {
    padding-top: 28px;
}

.page-filter {
    justify-content: space-between;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--amber-100);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.page-filter input {
    flex: 1;
}

.page-filter select {
    min-width: 160px;
    border-radius: 14px;
}

.search-page-panel {
    padding: 40px 0 72px;
}

.search-page-form {
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--amber-100);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.search-status {
    margin: 22px 0;
    color: var(--gray-600);
    font-weight: 650;
}

.detail-shell {
    padding: 30px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 14px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.player-card,
.detail-title-card,
.article-card,
.side-card {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.movie-player {
    position: relative;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-play {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.24);
}

.detail-title-card,
.article-card,
.side-card {
    padding: 24px;
}

.detail-title-card {
    margin-top: 22px;
}

.detail-tags-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.detail-tags-top a,
.detail-tags-top span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    background: var(--amber-100);
    color: #92400e;
    font-size: 13px;
    font-weight: 750;
}

.detail-title-card h1 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
}

.detail-one-line {
    margin: 14px 0 16px;
    font-size: 18px;
}

.genre-line {
    color: var(--gray-700);
    font-weight: 750;
}

.article-card {
    margin-top: 22px;
}

.article-card h2,
.side-card h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.article-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-content: start;
    position: sticky;
    top: 90px;
}

.poster-side {
    padding: 0;
    overflow: hidden;
}

.poster-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.side-card dl div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
}

.side-card dt {
    color: var(--gray-500);
}

.side-card dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 700;
}

.side-card dd a:hover {
    color: var(--amber-600);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.related-section {
    padding-top: 52px;
}

[hidden] {
    display: none !important;
}

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

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

    .header-search {
        display: none;
    }

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

    .detail-side {
        position: static;
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-inner {
        height: 64px;
    }

    .hero-slider {
        height: 560px;
    }

    .hero-copy {
        justify-content: flex-end;
        padding-bottom: 90px;
    }

    .hero-control {
        display: none;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

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

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

    .section-head,
    .ranking-band,
    .page-filter,
    .search-page-form {
        align-items: stretch;
        flex-direction: column;
    }

    .ranking-band {
        display: grid;
    }

    .page-hero {
        padding: 34px 24px;
        border-radius: 24px;
    }

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

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

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

    .brand-subtitle {
        display: none;
    }

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

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 36px;
    }

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

    .movie-card-horizontal a {
        grid-template-columns: 128px minmax(0, 1fr);
    }

    .movie-card-horizontal .poster {
        min-height: 150px;
    }

    .content-section,
    .content-section.warm-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .side-card dl div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
