:root {
    color-scheme: dark;
    --bg: #0f172a;
    --bg-soft: #111c32;
    --panel: #1e293b;
    --panel-light: #27364d;
    --line: #334155;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #92400e;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius: 18px;
    --radius-small: 12px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 32rem), var(--bg);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, 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(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
    width: min(100% - 32px, var(--max));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-icon,
.footer-brand span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 21px;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent-light);
    background: rgba(245, 158, 11, 0.1);
}

.nav-search,
.mobile-search,
.hero-search,
.search-box-large {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.search-box-large input,
.filter-bar input,
.filter-bar select {
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.nav-search input {
    width: 200px;
    padding: 10px 12px;
}

.nav-search button,
.mobile-search button,
.hero-search button,
.search-box-large button {
    border: 0;
    padding: 10px 15px;
    color: #111827;
    background: var(--accent);
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.search-box-large button:hover {
    background: var(--accent-light);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.9);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    width: min(100% - 32px, var(--max));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu nav {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.mobile-link {
    padding: 10px 12px;
    color: var(--muted-strong);
    border-radius: 12px;
}

.mobile-link:hover {
    color: var(--accent-light);
    background: rgba(245, 158, 11, 0.1);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-stage {
    position: relative;
    height: 600px;
    background: #020617;
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.74) 40%, rgba(15, 23, 42, 0.28) 72%), linear-gradient(0deg, #0f172a 0%, transparent 36%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - var(--max)) / 2));
    bottom: 86px;
    width: min(620px, calc(100% - 48px));
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1,
.hero h2,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-info p {
    color: var(--muted-strong);
    font-size: 18px;
    max-width: 760px;
}

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

.hero-meta span,
.detail-meta span,
.rank-meta span,
.movie-meta span,
.movie-meta a {
    color: var(--muted-strong);
    background: rgba(30, 41, 59, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

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

.primary-button {
    color: #111827;
    background: var(--accent);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.24);
}

.secondary-button {
    color: var(--text);
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-button:hover {
    background: var(--accent-light);
    box-shadow: 0 20px 42px rgba(245, 158, 11, 0.35);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--text);
    background: rgba(2, 6, 23, 0.58);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(245, 158, 11, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 22px;
    transform: translateY(-50%);
}

.hero-next {
    right: 22px;
    transform: translateY(-50%);
}

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

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

.hero-dots button.is-active {
    width: 32px;
    background: var(--accent);
}

.hero-panel {
    width: min(100% - 32px, var(--max));
    margin: -54px auto 0;
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: minmax(280px, 440px) 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-search input,
.search-box-large input {
    flex: 1;
    min-width: 0;
    padding: 15px 16px;
}

.hero-search button,
.search-box-large button {
    padding: 15px 20px;
    font-weight: 800;
}

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

.hero-categories a {
    color: var(--muted-strong);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.55);
    transition: color 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.hero-categories a:hover {
    color: var(--accent-light);
    border-color: rgba(245, 158, 11, 0.48);
    background: rgba(245, 158, 11, 0.1);
}

.section-wrap,
.page-hero,
.detail-wrap {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.section-wrap {
    padding: 54px 0 0;
}

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

.section-head.compact {
    align-items: center;
}

.section-head h2 {
    margin: 10px 0 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.section-head a {
    color: var(--accent-light);
    font-weight: 700;
}

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

.category-card {
    min-height: 144px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.94));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.52);
    box-shadow: 0 22px 50px rgba(245, 158, 11, 0.1);
}

.category-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.48);
    box-shadow: 0 24px 54px rgba(245, 158, 11, 0.1);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #020617;
}

.poster-link img,
.rank-cover img,
.detail-poster,
.player-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-link img {
    transition: transform 0.5s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), transparent 50%);
}

.year-badge,
.watch-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    top: 10px;
    right: 10px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.72);
    padding: 5px 9px;
}

.watch-badge {
    left: 12px;
    bottom: 12px;
    color: #111827;
    background: var(--accent);
    padding: 6px 10px;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.2s ease;
}

.movie-title:hover,
.rank-title:hover {
    color: var(--accent-light);
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 24px;
}

.rank-panel,
.recommend-panel,
.content-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.86);
    box-shadow: var(--shadow);
}

.rank-panel,
.recommend-panel {
    padding: 22px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.56);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: transform 0.2s ease, border 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.42);
}

.rank-number {
    color: var(--accent-light);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.rank-cover {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: #020617;
}

.rank-title {
    color: var(--text);
    font-weight: 800;
}

.rank-content p {
    display: -webkit-box;
    margin: 6px 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.page-hero {
    padding: 72px 0 22px;
}

.small-page-hero {
    min-height: 280px;
    display: flex;
    align-items: end;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.filter-bar input,
.filter-bar select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
    padding: 0 14px;
}

.filter-bar input {
    flex: 1;
}

.filter-bar select {
    width: 160px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #020617;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.05);
    transform: scale(1.04);
    opacity: 0.62;
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.35)), linear-gradient(0deg, var(--bg), transparent 42%);
}

.detail-wrap {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: end;
    gap: 34px;
    padding: 86px 0 54px;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    background: #020617;
}

.detail-info h1 {
    max-width: 820px;
}

.detail-info p {
    max-width: 780px;
}

.detail-meta {
    margin: 22px 0;
}

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

.player-section {
    margin-top: -18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.player-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.22));
}

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

.play-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    color: #111827;
    background: var(--accent);
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 22px 44px rgba(245, 158, 11, 0.32);
}

.play-button span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    padding: 10px 12px;
}

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

.content-card {
    padding: 28px;
}

.content-card h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 24px;
}

.content-card h2:not(:first-child) {
    margin-top: 28px;
}

.content-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
}

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

.info-table div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.55);
    padding: 12px 14px;
}

.info-table span {
    color: var(--muted);
}

.info-table strong {
    color: var(--text);
    text-align: right;
}

.search-box-large {
    max-width: 760px;
    margin-bottom: 22px;
}

.search-result-head {
    margin-bottom: 18px;
    color: var(--muted-strong);
}

.is-hidden-by-filter {
    display: none !important;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: #0b1221;
}

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

.footer-brand {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

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

.footer-bottom {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding: 18px 0 28px;
    color: #64748b;
    text-align: center;
}

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

    .menu-toggle {
        display: block;
    }

    .nav-search {
        margin-left: auto;
    }

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

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

    .split-layout {
        grid-template-columns: 1fr;
    }

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

    .full-rank-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .nav-wrap {
        min-height: 68px;
    }

    .nav-search {
        display: none;
    }

    .brand-text small {
        display: none;
    }

    .hero-stage {
        height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, var(--bg) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.38) 100%);
    }

    .hero-content {
        bottom: 110px;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        margin-top: -36px;
    }

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

    .filter-bar select {
        width: 100%;
    }

    .category-grid,
    .large-category-grid,
    .movie-grid,
    .small-grid,
    .related-grid,
    .category-movie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: end;
    }

    .detail-poster {
        width: min(210px, 62vw);
    }

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

@media (max-width: 520px) {
    .hero-arrow {
        display: none;
    }

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

    .hero p,
    .page-hero p,
    .detail-info p {
        font-size: 16px;
    }

    .category-grid,
    .large-category-grid,
    .movie-grid,
    .small-grid,
    .related-grid,
    .category-movie-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 38px 62px 1fr;
        padding: 10px;
    }

    .player-shell {
        border-radius: 18px;
    }
}
