:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --amber-soft: #fef3c7;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.25);
}

.main-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #ffffff;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber), #fbbf24);
    color: #111827;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

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

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    color: #cbd5e1;
    font-size: 12px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1 1 auto;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(390px, 100%);
}

.nav-search input,
.filter-search input,
.search-box-large input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: rgba(51, 65, 85, 0.95);
    color: #ffffff;
    padding: 11px 16px;
}

.nav-search input::placeholder,
.filter-search input::placeholder,
.search-box-large input::placeholder {
    color: #94a3b8;
}

.nav-search button,
.search-box-large button,
.filter-actions button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--amber);
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-search button:hover,
.search-box-large button:hover,
.filter-actions button:hover {
    background: #fbbf24;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(51, 65, 85, 0.9);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--slate-950), var(--slate-800));
}

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

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

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

.hero-image,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    transform: scale(1.02);
}

.hero-shade,
.detail-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(245, 158, 11, 0.18), transparent 24%), linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.7) 46%, rgba(15, 23, 42, 0.22)), linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 48%);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--amber);
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.hero h1,
.hero h2 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero h2 {
    font-size: clamp(30px, 5vw, 50px);
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 28px;
    color: #e2e8f0;
    font-size: 18px;
}

.hero-actions,
.detail-title-block .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--amber);
    color: #111827;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.btn-primary:hover {
    background: #fbbf24;
}

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

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

.hero-tags span,
.detail-meta span,
.tag-row span,
.detail-tags a {
    border-radius: 999px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.13);
    color: #e2e8f0;
    font-size: 13px;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.56);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(2, 6, 23, 0.78);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: max(18px, calc((100vw - 1180px) / 2));
}

.hero-next {
    right: max(18px, calc((100vw - 1180px) / 2));
}

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

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

.hero-dot.is-active {
    width: 28px;
    background: var(--amber);
}

.hero-thumbs {
    position: absolute;
    z-index: 3;
    right: max(18px, calc((100vw - 1180px) / 2));
    bottom: 74px;
    display: grid;
    grid-template-columns: repeat(5, 92px);
    gap: 10px;
}

.hero-thumb {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.hero-thumb img {
    width: 100%;
    height: 68px;
    object-fit: cover;
}

.hero-thumb span {
    display: block;
    padding: 7px 8px;
    color: #ffffff;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 12px;
}

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.section-heading span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--amber-soft);
    color: var(--amber-dark);
    font-weight: 900;
}

.section-heading h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
}

.section-heading a {
    margin-left: auto;
    color: var(--amber-dark);
    font-weight: 800;
}

.section-heading.is-dark h2,
.section-heading.is-dark a {
    color: #ffffff;
}

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

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

.movie-card,
.article-card,
.category-tile,
.rank-card,
.top-rank-card,
.wide-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.movie-card,
.category-tile,
.rank-card,
.wide-card,
.top-rank-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.category-tile:hover,
.rank-card:hover,
.wide-card:hover,
.top-rank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-poster {
    position: relative;
    margin: 0;
    height: 210px;
    overflow: hidden;
    background: #cbd5e1;
}

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

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

.movie-poster figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 8px;
    padding: 4px 8px;
    background: rgba(2, 6, 23, 0.78);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card-body h3 {
    min-height: 52px;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.42;
    transition: color 0.2s ease;
}

.movie-card:hover h3,
.wide-card:hover h3,
.rank-card:hover h3 {
    color: var(--amber-dark);
}

.movie-card-body p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.movie-meta-row {
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

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

.tag-row span {
    background: var(--amber-soft);
    color: #92400e;
}

.dark-band {
    margin-left: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
    margin-right: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
    padding: 36px max(16px, calc((100vw - 1180px) / 2));
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
    border-radius: 0;
}

.horizontal-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.wide-card {
    width: 320px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.wide-card a {
    display: block;
}

.wide-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.wide-card div {
    padding: 16px;
}

.wide-card h3,
.wide-card p {
    margin: 0 0 8px;
}

.wide-card p,
.wide-card span {
    color: #cbd5e1;
    font-size: 14px;
}

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

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

.category-tile {
    padding: 24px;
    border: 1px solid transparent;
}

.category-tile:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: #fffbeb;
}

.category-tile span {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
}

.category-tile strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.category-tile small {
    color: var(--muted);
    font-size: 14px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 26px;
}

.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ranking-list li + li {
    border-top: 1px solid var(--line);
}

.ranking-list a {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
}

.ranking-list span {
    color: var(--amber-dark);
    font-weight: 900;
}

.ranking-list em {
    color: var(--muted);
    font-style: normal;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.tag-cloud a {
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--surface-soft);
    color: var(--slate-700);
    transition: background 0.2s ease, color 0.2s ease;
}

.tag-cloud a:hover {
    background: var(--amber);
    color: #111827;
}

.masonry-grid {
    columns: 3 260px;
    column-gap: 22px;
}

.masonry-grid .movie-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
}

.list-grid {
    display: grid;
    gap: 18px;
}

.movie-card-list .movie-card-link {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

.movie-poster-list {
    height: 100%;
    min-height: 170px;
}

.page-hero {
    background: radial-gradient(circle at 78% 20%, rgba(245, 158, 11, 0.2), transparent 25%), linear-gradient(90deg, var(--slate-950), var(--slate-800));
    color: #ffffff;
    padding: 74px 0;
}

.page-hero > div {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
}

.filter-panel,
.search-box-large {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.filter-search {
    flex: 1 1 auto;
}

.filter-search input,
.search-box-large input {
    background: var(--surface-soft);
    color: var(--text);
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.search-box-large form {
    display: flex;
    width: 100%;
    gap: 12px;
}

.empty-state {
    padding: 54px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    border-radius: var(--radius);
}

.ranking-hero {
    background: radial-gradient(circle at 82% 30%, rgba(245, 158, 11, 0.28), transparent 28%), linear-gradient(90deg, #111827, #0f172a);
}

.top-rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 42px;
}

.top-rank-card a {
    display: grid;
    grid-template-rows: auto;
    color: #ffffff;
    background: linear-gradient(180deg, var(--slate-800), var(--slate-950));
    min-height: 100%;
}

.top-rank-card span {
    position: absolute;
    z-index: 2;
    margin: 14px;
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--amber);
    color: #111827;
    font-weight: 900;
}

.top-rank-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.78;
}

.top-rank-card div {
    padding: 18px;
}

.top-rank-card h2,
.top-rank-card p {
    margin: 0 0 10px;
}

.top-rank-card p,
.top-rank-card em {
    color: #cbd5e1;
    font-style: normal;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 54px 86px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
}

.rank-number {
    color: var(--amber-dark);
    font-size: 22px;
    font-weight: 900;
}

.rank-link img {
    width: 86px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-link h3,
.rank-link p {
    margin: 0 0 8px;
}

.rank-link p {
    color: var(--muted);
    font-size: 14px;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--slate-950);
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 560px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    color: #ffffff;
    padding: 54px 0;
}

.detail-poster {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.42);
}

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

.detail-title-block h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-title-block > p:not(.eyebrow) {
    max-width: 760px;
    margin: 0 0 18px;
    color: #e2e8f0;
    font-size: 18px;
}

.detail-meta {
    margin-bottom: 18px;
}

.detail-tags {
    margin-bottom: 24px;
}

.detail-tags a {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
}

.detail-shell {
    padding-top: 36px;
}

.player-section {
    margin-bottom: 34px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.68));
    color: #ffffff;
    cursor: pointer;
}

.player-start span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--amber);
    color: #111827;
    font-size: 32px;
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.28);
}

.player-start strong {
    font-size: 20px;
}

.video-player.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.player-state {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(2, 6, 23, 0.68);
    color: #ffffff;
    font-size: 13px;
    pointer-events: none;
}

.player-state:empty {
    display: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-bottom: 54px;
}

.article-card {
    padding: 28px;
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.article-card p {
    margin: 0 0 22px;
    color: #334155;
    font-size: 16px;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px 16px;
    margin: 0;
}

.detail-side dt {
    color: var(--muted);
    font-weight: 700;
}

.detail-side dd {
    margin: 0;
}

.site-footer {
    margin-top: 64px;
    padding: 46px 0 24px;
    background: linear-gradient(180deg, var(--slate-900), #000000);
    color: #cbd5e1;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 17px;
}

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

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

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #64748b;
    font-size: 14px;
}

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

    .hero-thumbs {
        display: none;
    }

    .category-grid,
    .category-grid.large,
    .top-rank-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    .main-nav {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-panel {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 14px 0 8px;
    }

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

    .nav-search {
        width: 100%;
        margin-left: 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding: 88px 0 104px;
    }

    .hero-arrow {
        top: auto;
        bottom: 36px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: scale(1.04);
    }

    .hero-prev {
        left: 16px;
    }

    .hero-next {
        right: 16px;
    }

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

    .movie-card-list .movie-card-link {
        grid-template-columns: 150px 1fr;
    }

    .filter-panel,
    .search-box-large form {
        flex-direction: column;
        align-items: stretch;
    }

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

    .detail-poster {
        max-width: 260px;
    }
}

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

    .hero h1,
    .hero h2,
    .page-hero h1,
    .detail-title-block h1 {
        font-size: 34px;
    }

    .hero-actions,
    .filter-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn,
    .filter-actions button,
    .search-box-large button {
        width: 100%;
    }

    .movie-grid,
    .category-grid,
    .category-grid.large,
    .top-rank-grid,
    .rank-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-list .movie-card-link,
    .rank-link {
        grid-template-columns: 1fr;
    }

    .movie-poster-list {
        height: 230px;
    }

    .rank-link img {
        width: 100%;
        height: 210px;
    }

    .article-card {
        padding: 22px;
    }

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