:root {
    --bg: #f6f8fc;
    --panel: #ffffff;
    --ink: #172033;
    --muted: #65738a;
    --line: #e3eaf5;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --dark: #0f172a;
    --dark-2: #172554;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "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;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.96), rgba(15, 23, 42, 0.96));
    color: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
    background: linear-gradient(90deg, #dbeafe, #a5f3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    color: #bfdbfe;
    font-size: 12px;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    color: #dbeafe;
    padding: 10px 16px;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(37, 99, 235, 0.78);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 44px;
    height: 44px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 30%), linear-gradient(135deg, #172554 0%, #0f172a 48%, #111827 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image: linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    min-height: 680px;
    padding: 74px 0 42px;
}

.hero-slides {
    position: relative;
    min-height: 480px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 420px);
    align-items: center;
    gap: 52px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-backdrop {
    position: absolute;
    inset: -80px -20vw -80px -20vw;
    opacity: 0.18;
    filter: blur(18px);
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-kicker,
.sub-hero span {
    display: inline-flex;
    align-items: center;
    color: #67e8f9;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 720px;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
    margin: 24px 0;
}

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

.hero-tags span,
.detail-tags span,
.card-tags i {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    font-style: normal;
    font-size: 13px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.34);
}

.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-poster {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    transform: rotate(1.6deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
}

.hero-search {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 760px;
    margin-top: 20px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.hero-search input {
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 18px 22px;
}

.hero-search input::placeholder {
    color: #bfdbfe;
}

.hero-search button {
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    padding: 0 28px;
    font-weight: 800;
    cursor: pointer;
}

.hero-dots {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-dots button.active {
    background: #67e8f9;
}

.section {
    padding: 72px 0;
}

.soft-bg {
    background: linear-gradient(135deg, #f8fafc, #eef6ff);
}

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

.section-head.slim {
    align-items: start;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.035em;
}

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

.section-head.invert h2,
.section-head.invert p {
    color: #fff;
}

.section-head.invert p {
    color: #bfdbfe;
}

.section-more {
    color: var(--blue);
    font-weight: 800;
}

.section-more.light {
    color: #67e8f9;
}

.feature-strip {
    margin-top: -38px;
    position: relative;
    z-index: 6;
    padding: 0 0 50px;
}

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

.feature-grid a {
    min-height: 120px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.18);
}

.feature-grid strong {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-grid span {
    color: var(--muted);
}

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

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

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

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

.movie-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.88);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    border-color: rgba(37, 99, 235, 0.28);
}

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

.movie-card:not(.compact) .poster {
    aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.72), transparent 60%);
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    min-height: 184px;
}

.movie-card.compact .card-body {
    min-height: 170px;
}

.card-body strong {
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta em {
    font-style: normal;
    color: #1d4ed8;
    background: #eff6ff;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 700;
}

.card-tags i {
    color: #2563eb;
    background: #eff6ff;
    border-color: #dbeafe;
    padding: 4px 9px;
}

.dark-section {
    color: #fff;
    background: linear-gradient(135deg, #111827, #1e3a8a, #0f172a);
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.68;
}

.category-tile span {
    position: absolute;
    inset: auto 0 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0));
}

.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile strong {
    color: #fff;
    font-size: 20px;
}

.category-tile em {
    color: #bfdbfe;
    font-size: 13px;
    font-style: normal;
    margin-top: 6px;
}

.home-columns {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
}

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

.rank-list.large {
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 74px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 18px 50px rgba(37, 99, 235, 0.15);
}

.rank-num {
    font-size: 20px;
    font-weight: 900;
    color: #2563eb;
    text-align: center;
}

.rank-item img {
    width: 74px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    background: #dbeafe;
}

.rank-item strong,
.rank-item em {
    display: block;
}

.rank-item strong {
    font-size: 16px;
    line-height: 1.35;
}

.rank-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
    margin-top: 5px;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sub-hero {
    color: #fff;
    background: radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.2), transparent 32%), linear-gradient(135deg, #172554, #0f172a);
    padding: 76px 0;
}

.sub-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: -0.04em;
}

.sub-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: #bfdbfe;
}

.crumb a:hover {
    color: #fff;
}

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

.category-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    overflow: hidden;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.category-cover {
    overflow: hidden;
    border-radius: 18px;
    background: #dbeafe;
}

.category-cover img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.category-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

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

.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-preview-links a,
.aside-links a {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

.catalog-tools {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) 180px 180px 180px;
    gap: 14px;
    padding: 18px;
    margin-bottom: 26px;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.06);
}

.catalog-tools label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.catalog-tools input,
.catalog-tools select {
    width: 100%;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    background: #f8fbff;
    color: var(--ink);
}

.catalog-tools input:focus,
.catalog-tools select:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.16);
}

.catalog-empty {
    margin-top: 26px;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    border-radius: 20px;
    background: #fff;
    border: 1px dashed #bfdbfe;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 26px;
    align-items: start;
}

.ranking-aside {
    position: sticky;
    top: 96px;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.ranking-aside h2 {
    margin: 0 0 16px;
}

.aside-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-page {
    background: #fff;
}

.detail-hero {
    color: #fff;
    background: radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2), transparent 32%), linear-gradient(135deg, #111827, #1d4ed8, #0f172a);
    padding: 56px 0 68px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 34px;
    align-items: center;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 9;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: #2563eb;
    cursor: pointer;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.52));
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    font-size: 34px;
    padding-left: 5px;
}

.player-shell.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-lead {
    color: #dbeafe;
    font-size: 18px;
    margin: 0 0 18px;
}

.detail-content {
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.text-panel,
.side-panel {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.text-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.text-panel h2:not(:first-child) {
    margin-top: 30px;
}

.text-panel p {
    margin: 0 0 16px;
    color: #334155;
    font-size: 17px;
}

.side-panel {
    position: sticky;
    top: 96px;
}

.side-panel dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px 14px;
    margin: 0;
}

.side-panel dt {
    color: var(--muted);
    font-weight: 800;
}

.side-panel dd {
    margin: 0;
    color: var(--ink);
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
    margin: 0 0 14px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    padding: 6px 0;
}

.footer-links a:hover {
    color: #67e8f9;
}

.footer-bottom {
    margin-top: 38px;
    padding: 18px 16px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

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

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

    .home-columns,
    .detail-grid,
    .content-grid,
    .ranking-layout {
        grid-template-columns: 1fr;
    }

    .ranking-aside,
    .side-panel {
        position: static;
    }
}

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

    .brand-copy strong {
        font-size: 16px;
    }

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

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 12px;
        border-top: 1px solid rgba(191, 219, 254, 0.2);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 14px;
    }

    .hero-container {
        min-height: auto;
        padding: 44px 0 36px;
    }

    .hero-slides {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-poster {
        max-width: 320px;
        margin: 0 auto;
    }

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

    .hero-search button {
        padding: 14px;
    }

    .section {
        padding: 48px 0;
    }

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

    .movie-grid,
    .featured-grid,
    .catalog-grid,
    .poster-grid,
    .category-grid,
    .mini-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-page-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        grid-template-columns: 1fr;
    }

    .catalog-tools {
        grid-template-columns: 1fr;
    }

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

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

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-copy small {
        display: none;
    }

    .movie-grid,
    .featured-grid,
    .catalog-grid,
    .poster-grid,
    .category-grid,
    .mini-card-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 38px 64px 1fr;
    }

    .rank-item img {
        width: 64px;
        height: 78px;
    }

    .text-panel,
    .side-panel {
        padding: 20px;
    }

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