:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.86);
    --panel-strong: #0f172a;
    --line: rgba(56, 189, 248, 0.22);
    --text: #e5f4ff;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --amber: #f59e0b;
    --rose: #fb7185;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.20), transparent 34rem),
        radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.18), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #07111f 46%, #020617 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,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(30, 58, 138, 0.94), rgba(2, 6, 23, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    max-width: 1240px;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    color: white;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.26);
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #60a5fa, #67e8f9, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #67e8f9;
}

.nav-group {
    position: relative;
    padding: 22px 0;
}

.nav-panel {
    position: absolute;
    top: 60px;
    left: -18px;
    width: 210px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-group:hover .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-panel a,
.mobile-nav a {
    padding: 9px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-panel a:hover,
.mobile-nav a:hover {
    background: rgba(30, 64, 175, 0.45);
    color: #67e8f9;
}

.top-search {
    width: 270px;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.top-search input {
    width: 100%;
    padding: 10px 4px 10px 14px;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
}

.top-search button {
    width: 42px;
    color: #67e8f9;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    color: #e2e8f0;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--line);
}

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.hero-carousel {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border-bottom: 1px solid rgba(34, 211, 238, 0.14);
}

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

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

.hero-bg,
.detail-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) brightness(0.72);
}

.hero-shade,
.detail-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.34)),
        radial-gradient(circle at 72% 34%, rgba(34, 211, 238, 0.22), transparent 26rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    min-height: 660px;
    margin: 0 auto;
    padding: 96px 20px 110px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 380px;
    gap: 60px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, 0.38);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.13);
    color: #67e8f9;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #ffffff;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
}

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

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

.hero-tags span,
.movie-tags span,
.detail-tags a,
.detail-meta span {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    color: #dbeafe;
    padding: 6px 10px;
    font-size: 13px;
}

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

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 780;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    color: #00111d;
    background: linear-gradient(135deg, #67e8f9, #3b82f6);
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.28);
}

.btn-ghost {
    color: #e0f2fe;
    border: 1px solid rgba(125, 211, 252, 0.36);
    background: rgba(15, 23, 42, 0.42);
}

.btn-primary:hover,
.btn-ghost:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover,
.ranking-card:hover {
    transform: translateY(-3px);
}

.hero-cover {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
    border: 1px solid rgba(103, 232, 249, 0.25);
}

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

.hero-cover span,
.detail-poster span,
.movie-play {
    position: absolute;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.36);
}

.hero-cover span,
.detail-poster span {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: white;
    font-size: 28px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

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

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

.content-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 20px;
}

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

.section-head h2 {
    margin: 12px 0 4px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    color: white;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.section-more {
    color: #67e8f9;
    font-weight: 760;
}

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

.category-tile,
.category-overview-card a {
    min-height: 154px;
    padding: 22px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-icon {
    font-size: 32px;
}

.category-tile strong,
.category-overview-card h2 {
    color: white;
    font-size: 19px;
    margin: 0;
}

.category-tile small,
.category-overview-card p {
    color: rgba(255, 255, 255, 0.78);
}

.cyan-blue { background: linear-gradient(135deg, #0891b2, #1d4ed8); }
.red-orange { background: linear-gradient(135deg, #dc2626, #ea580c); }
.purple-blue { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.indigo-cyan { background: linear-gradient(135deg, #4338ca, #0891b2); }
.pink-rose { background: linear-gradient(135deg, #db2777, #e11d48); }
.amber-yellow { background: linear-gradient(135deg, #d97706, #ca8a04); }
.emerald-teal { background: linear-gradient(135deg, #059669, #0f766e); }
.sky-indigo { background: linear-gradient(135deg, #0284c7, #4f46e5); }
.lime-green { background: linear-gradient(135deg, #65a30d, #15803d); }
.orange-red { background: linear-gradient(135deg, #f97316, #b91c1c); }

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.46);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.76);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.06);
    filter: brightness(0.78);
}

.movie-year {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #0f172a;
    background: #67e8f9;
    font-size: 12px;
    font-weight: 850;
}

.movie-play {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
}

.movie-info {
    padding: 16px;
}

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: white;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover,
.ranking-card-title:hover {
    color: #67e8f9;
}

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

.movie-meta {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 13px;
}

.movie-tags {
    margin-top: 12px;
}

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

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
}

.ranking-box {
    align-self: start;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: var(--shadow);
    padding: 20px;
}

.ranking-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
    font-weight: 850;
}

.ranking-title a {
    color: #67e8f9;
    font-size: 14px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 32px 72px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.58);
    transition: background 0.2s ease;
}

.rank-row:hover {
    background: rgba(30, 64, 175, 0.32);
}

.rank-index,
.rank-badge {
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.rank-index {
    width: 28px;
    height: 28px;
}

.rank-row img {
    width: 72px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #e2e8f0;
    font-weight: 720;
}

.rank-meta {
    color: #94a3b8;
    font-size: 13px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 20px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.14);
}

.slim-hero {
    background:
        radial-gradient(circle at 72% 22%, rgba(34, 211, 238, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 58, 138, 0.70));
}

.page-hero > div {
    max-width: 1240px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 64px);
}

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

.category-overview-card {
    transition: transform 0.2s ease;
}

.category-overview-card a {
    min-height: 260px;
}

.mini-poster-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.mini-poster-row img {
    width: 72px;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.filter-panel,
.search-large {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.70);
}

.filter-panel input,
.filter-panel select,
.search-large input,
.search-large button {
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(125, 211, 252, 0.18);
}

.filter-panel input,
.filter-panel select,
.search-large input {
    color: var(--text);
    background: rgba(2, 6, 23, 0.42);
    outline: 0;
    padding: 0 14px;
}

.filter-panel input,
.search-large input {
    flex: 1;
}

.search-large button {
    padding: 0 24px;
    color: #00111d;
    background: linear-gradient(135deg, #67e8f9, #3b82f6);
    border: 0;
    font-weight: 850;
    cursor: pointer;
}

.detail-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
}

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

.detail-wrap {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.25);
    box-shadow: var(--shadow);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #93c5fd;
    margin-bottom: 14px;
}

.detail-info h1 {
    font-size: clamp(36px, 5vw, 68px);
}

.detail-meta,
.detail-tags {
    margin-top: 18px;
}

.player-section {
    max-width: 1240px;
    margin: -54px auto 0;
    padding: 0 20px 38px;
    position: relative;
    z-index: 6;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
    border: 1px solid rgba(125, 211, 252, 0.22);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    color: white;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.42), rgba(2, 6, 23, 0.58));
    border: 0;
    cursor: pointer;
}

.play-overlay.is-hidden {
    display: none;
}

.play-ring {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 32px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    box-shadow: 0 18px 44px rgba(59, 130, 246, 0.42);
}

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

.story-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: var(--shadow);
}

.story-card h2 {
    margin: 14px 0 12px;
    color: white;
    font-size: 28px;
    line-height: 1.2;
}

.story-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
}

.pager-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pager-links a {
    padding: 16px 18px;
    border-radius: 18px;
    color: #dbeafe;
    background: rgba(30, 64, 175, 0.26);
    border: 1px solid rgba(125, 211, 252, 0.16);
}

.ranking-grid,
.search-results {
    display: grid;
    gap: 16px;
}

.ranking-card,
.search-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(125, 211, 252, 0.16);
    transition: transform 0.2s ease;
}

.ranking-poster {
    position: relative;
}

.ranking-poster img,
.search-card img {
    width: 126px;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 36px;
    height: 36px;
}

.ranking-card-title,
.search-card h2 {
    color: white;
    font-size: 22px;
    font-weight: 850;
    margin: 0 0 8px;
}

.ranking-card p,
.search-card p {
    color: var(--muted);
    margin: 0 0 12px;
}

.site-footer {
    margin-top: 30px;
    border-top: 1px solid rgba(125, 211, 252, 0.16);
    background: rgba(2, 6, 23, 0.78);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #94a3b8;
}

.footer-inner strong {
    color: white;
    font-size: 18px;
}

.footer-inner p {
    margin: 6px 0 0;
}

.footer-links {
    display: flex;
    gap: 16px;
    color: #cbd5e1;
}

.is-filtered-out {
    display: none;
}

@media (max-width: 1100px) {
    .top-search {
        display: none;
    }

    .hero-content,
    .detail-wrap,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-cover {
        max-width: 330px;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .nav-wrap {
        height: 64px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 70px;
        gap: 28px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-info h1 {
        letter-spacing: -0.03em;
    }

    .movie-grid,
    .category-movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .detail-content,
    .pager-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-wrap {
        gap: 28px;
    }

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

    .filter-panel,
    .search-large,
    .footer-inner,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .hero-carousel,
    .hero-content {
        min-height: 720px;
    }

    .hero-content,
    .content-section,
    .page-hero,
    .detail-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .movie-grid,
    .category-movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .detail-content,
    .pager-links {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 28px 58px 1fr;
    }

    .rank-meta {
        display: none;
    }

    .ranking-card,
    .search-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .ranking-poster img,
    .search-card img {
        width: 96px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
