:root {
    color-scheme: light;
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #fff8ed;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --brand: #d97706;
    --brand-dark: #92400e;
    --brand-light: #fef3c7;
    --black: #0f172a;
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    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: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.86);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

.nav-wrap,
.mobile-panel,
.section-wrap,
.page-shell,
.breadcrumb,
.footer-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand {
    font-size: 22px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.35);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-panel nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
    color: var(--brand);
}

.search-form,
.mobile-search,
.search-large,
.category-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form input,
.mobile-search input,
.search-large input,
.category-tools input {
    width: 260px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 16px;
    outline: none;
    background: #ffffff;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus,
.mobile-search input:focus,
.search-large input:focus,
.category-tools input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.search-form button,
.mobile-search button,
.search-large button,
.category-tools a,
.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.search-form button,
.mobile-search button,
.search-large button,
.primary-btn {
    background: var(--brand);
    color: #ffffff;
    padding: 10px 18px;
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.26);
}

.search-form button:hover,
.mobile-search button:hover,
.search-large button:hover,
.primary-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
}

.mobile-panel {
    padding: 16px 0 22px;
    border-top: 1px solid var(--line);
}

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    font-weight: 700;
}

.hero {
    position: relative;
    height: min(720px, 72vh);
    min-height: 540px;
    overflow: hidden;
    background: #111827;
}

.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-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 25%, rgba(245, 158, 11, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.74), transparent 45%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(32px, calc((100% - 1200px) / 2));
    width: min(620px, calc(100% - 64px));
    transform: translateY(-50%);
    color: #ffffff;
}

.hero-kicker,
.detail-kicker,
.page-heading span,
.section-title span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: var(--brand);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.hero-kicker {
    background: rgba(217, 119, 6, 0.95);
    color: #ffffff;
}

.hero h1,
.hero h2 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero p {
    max-width: 620px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-tags,
.pill-list,
.link-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.pill-list span,
.link-pills a {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn {
    padding: 13px 24px;
}

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

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

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

.hero-dot.active {
    width: 32px;
    background: #ffffff;
}

.section-wrap,
.page-shell {
    padding: 64px 0;
}

.intro-strip {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.intro-strip span {
    display: block;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
}

.intro-strip strong {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.25;
}

.intro-strip p {
    margin: 0;
    color: var(--muted);
}

.intro-strip a,
.text-link {
    color: var(--brand-dark);
    font-weight: 800;
}

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

.section-title h2,
.page-heading h1,
.detail-info h1,
.player-card h2,
.content-card h2,
.side-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
    color: var(--text);
}

.section-title h2 {
    margin-top: 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-title > a {
    color: var(--brand-dark);
    font-weight: 800;
}

.featured-grid,
.movie-grid,
.category-grid,
.category-overview-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: #111827;
}

.compact-card .poster-link {
    height: 205px;
}

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

.movie-card:hover img,
.ranking-row:hover img,
.side-item:hover img {
    transform: scale(1.08);
}

.type-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.type-badge {
    left: 12px;
    bottom: 12px;
    background: var(--brand);
    padding: 8px 10px;
}

.rank-badge {
    right: 12px;
    top: 12px;
    min-width: 34px;
    text-align: center;
    background: rgba(0, 0, 0, 0.72);
    padding: 8px 10px;
}

.card-body {
    padding: 16px;
}

.card-title,
.ranking-title,
.category-name {
    display: block;
    color: var(--text);
    font-weight: 850;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.card-title {
    min-height: 46px;
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title:hover,
.ranking-title:hover,
.category-name:hover {
    color: var(--brand-dark);
}

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

.card-meta,
.ranking-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.card-meta span,
.ranking-meta span,
.detail-meta span {
    border-radius: 999px;
    background: #f1f5f9;
    padding: 5px 9px;
}

.category-band {
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

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

.category-tile,
.category-overview-card,
.content-card,
.player-card,
.side-card,
.page-heading {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.category-tile {
    min-height: 150px;
    padding: 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 119, 6, 0.42);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.category-tile span,
.category-name {
    font-size: 20px;
    font-weight: 850;
}

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

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 46px 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-weight: 900;
}

.ranking-poster {
    display: block;
    height: 118px;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

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

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

.full-ranking .ranking-row {
    grid-template-columns: 58px 108px 1fr;
}

.page-shell {
    min-height: 60vh;
}

.page-heading {
    padding: 34px;
    margin-bottom: 30px;
    background:
        radial-gradient(circle at 85% 0%, rgba(245, 158, 11, 0.16), transparent 34%),
        #ffffff;
}

.page-heading h1 {
    margin-top: 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
}

.page-heading p {
    max-width: 820px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.channel-heading {
    display: grid;
    gap: 14px;
}

.category-tools {
    flex-wrap: wrap;
    margin-top: 10px;
}

.category-tools a {
    padding: 10px 16px;
    background: var(--brand-light);
    color: var(--brand-dark);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-cover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-grid img {
    width: 100%;
    aspect-ratio: 1 / 1.28;
    object-fit: cover;
    border-radius: 10px;
    background: #111827;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 26px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--brand-dark);
    font-weight: 700;
}

.detail-page {
    padding-bottom: 64px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 34px;
    align-items: center;
    width: min(1200px, calc(100% - 32px));
    margin: 24px auto 36px;
    padding: 34px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 15%, rgba(245, 158, 11, 0.34), transparent 30%),
        linear-gradient(135deg, #111827, #1f2937 52%, #78350f);
    box-shadow: var(--shadow);
}

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #111827;
}

.detail-info h1 {
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.1;
}

.detail-info p {
    max-width: 780px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.detail-info .detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.detail-info .primary-btn {
    margin-top: 24px;
}

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

.detail-main {
    display: grid;
    gap: 24px;
}

.player-card,
.content-card,
.side-card {
    padding: 24px;
}

.player-card h2,
.content-card h2,
.side-card h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.player-box video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78));
    cursor: pointer;
}

.play-overlay[hidden] {
    display: none;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.36);
    font-size: 36px;
    padding-left: 5px;
}

.play-overlay strong {
    font-size: 18px;
}

.player-message {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(239, 68, 68, 0.92);
    font-weight: 700;
}

.content-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

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

.content-card .pill-list span,
.content-card .link-pills a {
    background: #f1f5f9;
    color: #334155;
}

.content-card .link-pills a:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 22px;
}

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

.side-card > a:not(.side-item) {
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
}

.side-card > a:not(.side-item):hover {
    color: var(--brand-dark);
    background: var(--brand-light);
}

.side-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    color: #334155;
    font-weight: 800;
}

.side-item img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #111827;
    transition: transform 0.35s ease;
}

.search-large {
    margin-top: 24px;
}

.search-large input {
    width: min(520px, 100%);
    padding: 14px 18px;
}

.search-large button {
    padding: 14px 24px;
}

.slim-title {
    margin-bottom: 20px;
}

.slim-title h2 {
    font-size: 30px;
}

.year-section {
    margin-bottom: 44px;
}

.empty-state {
    margin: 24px 0;
    padding: 24px;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--line);
}

.site-footer {
    background: #111827;
    color: #cbd5e1;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-brand {
    color: #fbbf24;
    font-size: 20px;
}

.site-footer p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #94a3b8;
}

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

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

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

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

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

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

    .hero {
        min-height: 620px;
        height: 74vh;
    }

    .hero-content {
        left: 24px;
        width: calc(100% - 48px);
    }

    .hero-arrow {
        display: none;
    }

    .intro-strip,
    .detail-hero,
    .footer-wrap,
    .two-col {
        grid-template-columns: 1fr;
    }

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

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

    .detail-cover {
        max-width: 320px;
    }

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

@media (max-width: 560px) {
    .nav-wrap,
    .mobile-panel,
    .section-wrap,
    .page-shell,
    .breadcrumb,
    .footer-wrap,
    .detail-layout,
    .detail-hero {
        width: min(100% - 22px, 1200px);
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .hero h1,
    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-wrap,
    .page-shell {
        padding: 42px 0;
    }

    .featured-grid,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .poster-link,
    .compact-card .poster-link {
        height: 300px;
    }

    .category-overview-card,
    .ranking-row,
    .full-ranking .ranking-row {
        grid-template-columns: 1fr;
    }

    .category-cover-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ranking-number {
        width: 46px;
    }

    .ranking-poster {
        height: 240px;
    }

    .page-heading,
    .player-card,
    .content-card,
    .side-card,
    .detail-hero {
        padding: 22px;
    }

    .mobile-search,
    .search-large,
    .category-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .mobile-search input,
    .search-large input,
    .category-tools input,
    .mobile-search button,
    .search-large button {
        width: 100%;
    }
}
