:root {
    --color-bg: #f8fafc;
    --color-panel: #ffffff;
    --color-ink: #1e293b;
    --color-muted: #64748b;
    --color-line: rgba(148, 163, 184, 0.28);
    --color-dark: #0f172a;
    --color-dark-soft: #1f2937;
    --color-amber: #f59e0b;
    --color-orange: #ea580c;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f5f5f4 100%);
    color: var(--color-ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
}

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(245, 158, 11, 0.20);
    backdrop-filter: blur(18px);
}

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

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

.site-logo-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}

.site-logo-text strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-logo-text small {
    display: block;
    margin-top: 3px;
    color: #cbd5e1;
    font-size: 12px;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(340px, 30vw);
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.header-search input {
    width: 100%;
    min-width: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 8px 12px;
}

.header-search input::placeholder {
    color: #94a3b8;
}

.header-search button,
.primary-button,
.secondary-button,
.ghost-button,
.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.header-search button,
.primary-button,
.play-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.26);
}

.header-search button {
    min-width: 64px;
    padding: 8px 14px;
}

.primary-button,
.secondary-button,
.ghost-button {
    min-height: 46px;
    padding: 12px 20px;
}

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

.ghost-button {
    color: var(--color-ink);
    background: #ffffff;
    border: 1px solid var(--color-line);
}

.header-search button:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.play-button:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 999px;
}

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

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

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
}

.page-main {
    min-height: 70vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    color: #ffffff;
    background: radial-gradient(circle at 18% 18%, rgba(245, 158, 11, 0.32), transparent 28%),
                radial-gradient(circle at 78% 10%, rgba(234, 88, 12, 0.24), transparent 26%),
                linear-gradient(135deg, #0f172a 0%, #1c1917 52%, #0f172a 100%);
}

.hero-slide {
    display: none;
    min-height: 680px;
    background-position: center;
    background-size: cover;
}

.hero-slide.is-active {
    display: block;
    animation: fadeIn 0.75s ease both;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.75) 46%, rgba(15, 23, 42, 0.40) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 42px;
    width: min(1240px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    padding: 72px 0 86px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(251, 191, 36, 0.32);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.hero-title {
    margin: 22px 0 18px;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-desc {
    width: min(760px, 100%);
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 28px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.movie-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
}

.hero-tags span {
    padding: 9px 14px;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-poster-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(1deg);
}

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

.hero-poster-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(14px);
}

.hero-controls {
    position: absolute;
    z-index: 3;
    right: calc((100% - min(1240px, calc(100% - 32px))) / 2);
    bottom: 34px;
    display: flex;
    gap: 10px;
}

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

.hero-dot.is-active {
    background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
}

.section {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.section-narrow {
    width: min(960px, calc(100% - 32px));
}

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

.section-title-group h1,
.section-title-group h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-title-group p {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 16px;
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.24);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

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

.movie-poster {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #334155, #0f172a);
}

.movie-card-large .movie-poster {
    aspect-ratio: 21 / 10;
}

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

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

.movie-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.10));
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-poster-overlay {
    opacity: 1;
}

.play-dot {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-amber);
    box-shadow: 0 18px 30px rgba(245, 158, 11, 0.34);
}

.movie-badge,
.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: 18px;
    line-height: 1.3;
}

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

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 12px;
}

.movie-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.movie-meta-row span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #cbd5e1;
}

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

.movie-tags span {
    padding: 5px 9px;
    color: #475569;
    background: #f1f5f9;
    font-size: 12px;
}

.gradient-band {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #292524 58%, #0f172a 100%);
}

.gradient-band .section-title-group h2,
.gradient-band .section-title-group p {
    color: #ffffff;
}

.gradient-band .section-title-group p {
    color: #cbd5e1;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 36px;
    align-items: center;
}

.feature-copy h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
}

.feature-copy p {
    color: #cbd5e1;
    font-size: 17px;
}

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

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

.category-card {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card strong {
    margin-bottom: 8px;
    color: var(--color-ink);
    font-size: 22px;
}

.category-card p {
    flex: 1;
    margin: 0 0 18px;
    color: var(--color-muted);
}

.category-count {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel {
    position: sticky;
    top: 88px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px 160px auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    color: var(--color-ink);
    background: #ffffff;
    padding: 0 14px;
    outline: 0;
}

.filter-result {
    color: var(--color-muted);
    font-weight: 800;
    white-space: nowrap;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 70px minmax(110px, 140px) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    font-weight: 900;
    font-size: 20px;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    background: #0f172a;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

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

.detail-hero {
    color: #ffffff;
    background: radial-gradient(circle at 12% 15%, rgba(245, 158, 11, 0.28), transparent 26%),
                linear-gradient(135deg, #0f172a 0%, #292524 58%, #0f172a 100%);
}

.detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

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

.detail-title {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.detail-one-line {
    color: #cbd5e1;
    font-size: 19px;
}

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

.detail-meta span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    font-weight: 700;
}

.detail-tags span {
    padding: 8px 12px;
    color: #fffbeb;
    background: rgba(245, 158, 11, 0.20);
    border: 1px solid rgba(245, 158, 11, 0.28);
    font-size: 13px;
}

.player-section {
    width: min(1100px, calc(100% - 32px));
    margin: 48px auto 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-poster-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover;
}

.player-poster-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.80), rgba(2, 6, 23, 0.42));
}

.play-button {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    font-size: 34px;
}

.player-shell.is-playing .player-poster-layer {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    width: min(1240px, calc(100% - 32px));
    margin: 48px auto 0;
}

.content-card,
.side-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.content-card {
    padding: 34px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: 26px;
}

.content-card p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 17px;
    line-height: 1.85;
}

.side-card {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 22px;
}

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

.side-mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.side-mini-card img {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    background: #0f172a;
}

.side-mini-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-ink);
    line-height: 1.35;
}

.side-mini-card span {
    color: var(--color-muted);
    font-size: 13px;
}

.empty-message {
    display: none;
    padding: 34px;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    color: var(--color-muted);
    text-align: center;
    background: #ffffff;
}

.empty-message.is-visible {
    display: block;
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a 0%, #1c1917 60%, #0f172a 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.20);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 220px 260px;
    gap: 34px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
}

.footer-brand p {
    width: min(520px, 100%);
    margin: 20px 0 0;
    color: #94a3b8;
}

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

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

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

.footer-col a {
    color: #cbd5e1;
}

.footer-col a:hover {
    color: #fbbf24;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .site-header-inner {
        justify-content: space-between;
    }

    .mobile-menu-button {
        display: block;
    }

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

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .hero-inner,
    .feature-layout,
    .detail-hero-inner,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .hero-slide,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding: 56px 0 82px;
    }

    .hero-poster-card {
        transform: none;
    }

    .hero-controls {
        right: 16px;
        left: 16px;
        justify-content: center;
    }

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

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

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

    .rank-item {
        grid-template-columns: 48px minmax(86px, 110px) minmax(0, 1fr);
    }

    .rank-number {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }

    .content-card {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .site-logo-text strong {
        font-size: 17px;
    }

    .site-logo-text small {
        display: none;
    }

    .movie-grid,
    .movie-grid.compact,
    .category-grid,
    .rank-list,
    .feature-mini-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 54px 100px minmax(0, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button,
    .ghost-button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
