:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-300: #4da9ff;
    --primary-500: #0073e6;
    --primary-600: #005bb3;
    --primary-700: #004380;
    --secondary-50: #f4f7fb;
    --accent-300: #fde68a;
    --accent-400: #fbbf24;
    --accent-500: #f59e0b;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --white: #ffffff;
    --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.12);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--neutral-50);
    color: var(--neutral-900);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
}

.nav-bar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 115, 230, 0.25);
}

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

.brand-text strong {
    font-size: 20px;
    color: var(--neutral-900);
}

.brand-text em {
    margin-top: 4px;
    color: var(--neutral-500);
    font-size: 12px;
    font-style: normal;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--neutral-700);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-600);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    padding: 6px;
    border-radius: 999px;
}

.nav-search input {
    width: 230px;
    border: 0;
    background: transparent;
    outline: 0;
    padding: 8px 10px 8px 14px;
    color: var(--neutral-900);
}

.nav-search button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--white);
    background: var(--primary-600);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--neutral-100);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
}

.menu-toggle span {
    height: 2px;
    border-radius: 2px;
    background: var(--neutral-800);
}

.hero {
    position: relative;
    height: 600px;
    background: var(--neutral-900);
    overflow: hidden;
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, 92vw);
    color: var(--white);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-300);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1;
    font-weight: 900;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.hero-summary {
    margin: 0 0 24px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 7px 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

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

.hero-tags span,
.movie-tags span,
.detail-tags a,
.footer-tags a {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(0, 115, 230, 0.1);
    color: var(--primary-700);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    color: var(--white);
    background: var(--primary-600);
}

.btn-primary:hover {
    color: var(--white);
    background: var(--primary-700);
    transform: translateY(-1px);
}

.btn-light {
    color: var(--neutral-900);
    background: rgba(255, 255, 255, 0.88);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.45);
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
}

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

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.section {
    padding: 64px 0;
}

.section-white {
    background: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

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

.section h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: var(--neutral-900);
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.16;
    font-weight: 900;
}

.more-link {
    color: var(--primary-600);
    font-weight: 800;
}

.more-link:hover {
    color: var(--primary-700);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(0, 115, 230, 0.28);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--neutral-200);
}

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

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

.poster-type,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 26px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 12px;
    right: auto;
    background: var(--accent-500);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--neutral-900);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--primary-600);
}

.movie-meta,
.movie-line {
    margin: 10px 0 0;
    color: var(--neutral-500);
    font-size: 13px;
    line-height: 1.55;
}

.movie-line {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
    color: var(--neutral-700);
    font-size: 13px;
    font-weight: 800;
}

.horizontal-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.horizontal-scroller::-webkit-scrollbar {
    display: none;
}

.scroller-item {
    width: 300px;
    flex: 0 0 auto;
}

.category-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.category-block {
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #f9fbff);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.category-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.category-block h3,
.category-tile h2 {
    margin: 0;
    color: var(--neutral-900);
    font-size: 24px;
    font-weight: 900;
}

.category-block h3 a:hover,
.category-tile h2 a:hover {
    color: var(--primary-600);
}

.category-block p,
.category-tile p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--neutral-500);
    line-height: 1.75;
}

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

.ranking-section {
    background: var(--neutral-900);
    color: var(--white);
}

.ranking-section h2,
.ranking-section .eyebrow,
.ranking-section .more-link {
    color: var(--white);
}

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

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 52px 94px 1fr;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
}

.section-white .ranking-row {
    border-color: var(--neutral-200);
    background: var(--white);
}

.ranking-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--primary-600);
    font-weight: 900;
}

.ranking-poster {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: var(--neutral-200);
}

.ranking-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-info a {
    color: inherit;
    font-size: 17px;
    font-weight: 900;
}

.ranking-info a:hover {
    color: var(--primary-300);
}

.section-white .ranking-info a:hover {
    color: var(--primary-600);
}

.ranking-info p {
    margin: 5px 0;
    color: var(--neutral-500);
    font-size: 13px;
}

.ranking-section .ranking-info p {
    color: rgba(255, 255, 255, 0.72);
}

.ranking-info span {
    color: var(--accent-500);
    font-weight: 900;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.horizontal-card .poster {
    aspect-ratio: auto;
    min-height: 210px;
}

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

.page-hero {
    padding: 86px 0;
    background: radial-gradient(circle at top left, rgba(0, 115, 230, 0.2), transparent 34%), linear-gradient(135deg, var(--neutral-900), #0f172a);
    color: var(--white);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

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

.category-tile {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.category-cover-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--neutral-100);
}

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

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples a {
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-700);
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, 180px);
    gap: 12px;
    margin-bottom: 28px;
    border: 1px solid var(--neutral-200);
    border-radius: 18px;
    background: var(--neutral-50);
    padding: 14px;
}

.filter-panel input,
.filter-panel select,
.hero-search input {
    width: 100%;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    background: var(--white);
    outline: 0;
    padding: 13px 14px;
    color: var(--neutral-900);
}

.filter-panel input:focus,
.filter-panel select:focus,
.hero-search input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.12);
}

.hero-search {
    display: grid;
    grid-template-columns: minmax(240px, 500px) auto;
    gap: 10px;
    margin-top: 28px;
}

.search-status {
    margin-bottom: 20px;
    color: var(--neutral-500);
    font-weight: 700;
}

.detail-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--neutral-900);
    color: var(--white);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.04);
    opacity: 0.58;
}

.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.24));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 44px;
}

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

.detail-copy h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 64px);
}

.detail-one-line {
    max-width: 780px;
    margin: 20px 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.85;
}

.detail-tags a {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow-medium);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.68));
}

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

.player-start {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    background: var(--primary-600);
    color: var(--white);
    font-size: 34px;
    box-shadow: 0 18px 38px rgba(0, 115, 230, 0.3);
}

.player-start:hover {
    background: var(--primary-700);
    transform: scale(1.04);
}

.player-overlay strong {
    max-width: 80%;
    text-align: center;
    font-size: 24px;
}

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

.content-card {
    border: 1px solid var(--neutral-200);
    border-radius: 22px;
    background: var(--white);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: var(--neutral-700);
    line-height: 1.9;
}

.site-footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 20px;
}

.site-footer p {
    max-width: 430px;
    margin: 0;
    color: var(--neutral-400);
    line-height: 1.8;
}

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

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

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a {
    color: var(--neutral-400);
}

.site-footer a:hover {
    color: var(--primary-300);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    color: var(--neutral-400);
    font-size: 14px;
}

[data-filter-card].is-hidden,
.search-results .is-hidden {
    display: none;
}

@media (max-width: 1180px) {
    .movie-grid,
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .latest-grid,
    .category-grid,
    .compact-ranking,
    .full-ranking {
        grid-template-columns: 1fr;
    }

    .category-tile {
        grid-template-columns: 180px 1fr;
    }

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

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

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        border-bottom: 1px solid var(--neutral-200);
        background: rgba(255, 255, 255, 0.98);
        padding: 18px 16px 22px;
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-links a {
        border-radius: 10px;
        padding: 11px 12px;
    }

    .nav-links a:hover {
        background: var(--neutral-100);
    }

    .nav-search {
        border-radius: 14px;
    }

    .nav-search input {
        width: 100%;
    }

    .hero {
        height: 540px;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46));
    }

    .hero-arrow {
        display: none;
    }

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

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

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

    .detail-poster {
        width: min(320px, 80vw);
    }

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

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

    .category-cover-stack img {
        height: 150px;
    }
}

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

    .brand-text em {
        display: none;
    }

    .hero {
        height: 520px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-summary,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-meta,
    .detail-meta {
        gap: 8px;
    }

    .section {
        padding: 44px 0;
    }

    .section-heading-row,
    .category-block-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

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

    .horizontal-card .poster {
        aspect-ratio: 16 / 10;
        min-height: auto;
    }

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

    .ranking-row {
        grid-template-columns: 42px 82px 1fr;
        gap: 12px;
        padding: 10px;
    }

    .page-hero {
        padding: 58px 0;
    }

    .detail-hero-inner {
        padding: 30px 0 48px;
    }

    .player-start {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
