:root {
    --canyon-950: #1e130d;
    --canyon-900: #2f1d14;
    --canyon-850: #3a2418;
    --canyon-800: #4a2c1d;
    --canyon-700: #70452f;
    --canyon-600: #8a5c3f;
    --canyon-200: #e8dbc8;
    --canyon-100: #f3eadf;
    --canyon-50: #faf8f5;
    --earth-900: #2f2416;
    --earth-700: #6e5334;
    --gold-600: #f09200;
    --gold-500: #ffb21c;
    --gold-400: #ffc94a;
    --gold-300: #ffdf8f;
    --gold-100: #fff7e6;
    --forest-700: #42684a;
    --forest-100: #e8f1e6;
    --sand-50: #fbf6ed;
    --white: #ffffff;
    --ink: #2c1d15;
    --muted: #7d6a5f;
    --shadow: 0 18px 42px rgba(138, 92, 63, 0.14);
    --shadow-soft: 0 10px 24px rgba(138, 92, 63, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, var(--canyon-50), #ffffff 45%, var(--sand-50));
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, var(--canyon-800), var(--earth-900));
    box-shadow: 0 12px 26px rgba(47, 29, 20, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--canyon-900);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 201, 74, 0.14);
    font-size: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-panel a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.2s ease;
}

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

.header-search,
.mobile-search,
.home-search-panel form,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search {
    min-width: 240px;
}

.header-search input,
.mobile-search input {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    outline: 0;
    border-radius: 999px;
    padding: 10px 42px 10px 16px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.header-search button,
.mobile-search button,
.home-search-panel button,
.search-page-form button {
    border: 0;
    color: #ffffff;
    background: var(--gold-600);
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 9px 12px;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-panel nav {
    display: grid;
    gap: 12px;
    padding: 14px 0;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.10));
}

.hero-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 72px;
}

.hero-copy {
    width: min(760px, 100%);
    color: #ffffff;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tags span,
.tag-pill {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
}

.hero-tags span:first-child,
.tag-pill:first-child {
    background: var(--gold-600);
    border-color: transparent;
}

.hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 760px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.7;
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--gold-600);
    padding: 13px 24px;
    box-shadow: 0 12px 22px rgba(240, 146, 0, 0.28);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 12px 22px;
}

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

.hero-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

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

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

.page-flow {
    display: grid;
    gap: 56px;
    padding-top: 48px;
    padding-bottom: 16px;
}

.top-page {
    padding-top: 44px;
}

.home-search-panel,
.page-hero-simple,
.category-band,
.detail-hero,
.watch-panel,
.detail-content article {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 219, 200, 0.78);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.home-search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 480px);
    gap: 24px;
    align-items: center;
    padding: 30px;
}

.home-search-panel h2,
.page-hero-simple h1,
.section-heading h2 {
    margin: 0;
    color: var(--canyon-900);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-search-panel h2,
.section-heading h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.home-search-panel p,
.page-hero-simple p,
.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.home-search-panel input,
.search-page-form input,
.local-filter input {
    width: 100%;
    border: 1px solid var(--canyon-200);
    border-radius: 999px;
    outline: 0;
    background: #ffffff;
    padding: 13px 18px;
}

.home-search-panel input:focus,
.search-page-form input:focus,
.local-filter input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(255, 201, 74, 0.18);
}

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

.section-more {
    color: var(--gold-600);
    background: var(--gold-100);
    padding: 10px 18px;
    white-space: nowrap;
}

.horizontal-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 288px;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
}

.horizontal-strip .movie-card {
    scroll-snap-align: start;
}

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

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(232, 219, 200, 0.78);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--canyon-200), var(--gold-100));
}

.movie-card-large .movie-cover {
    aspect-ratio: 21 / 9;
}

.movie-cover img,
.detail-poster img,
.category-tile img,
.category-cover-stack img,
.ranking-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-cover img {
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.06);
}

.movie-cover-shade {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover-shade {
    opacity: 1;
}

.play-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    background: var(--gold-600);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.year-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 10px;
}

.year-badge {
    right: 12px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: 12px;
    background: var(--gold-600);
}

.movie-body {
    padding: 17px;
}

.movie-body h3 {
    min-height: 52px;
    margin: 0 0 10px;
    color: var(--canyon-900);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--earth-700);
}

.movie-meta-row span:first-child {
    overflow: hidden;
    max-width: 62%;
    color: var(--forest-700);
    background: var(--forest-100);
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.category-band {
    padding: 32px;
    background: linear-gradient(135deg, #ffffff, var(--forest-100));
}

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

.category-tile,
.category-card-block a {
    overflow: hidden;
    position: relative;
    display: block;
    min-height: 220px;
    color: #ffffff;
    border-radius: var(--radius-lg);
    background: var(--canyon-800);
    box-shadow: var(--shadow-soft);
}

.category-tile::after,
.category-card-block a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.category-tile img {
    position: absolute;
    inset: 0;
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 18px;
}

.category-tile span {
    padding-top: 132px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}

.split-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

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

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

.ranking-item {
    display: grid;
    grid-template-columns: auto 76px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(232, 219, 200, 0.78);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 16px rgba(138, 92, 63, 0.08);
}

.ranking-item img {
    width: 76px;
    height: 48px;
    border-radius: 10px;
}

.mini-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    background: var(--gold-600);
    border-radius: 50%;
    font-weight: 900;
}

.ranking-title,
.ranking-desc,
.ranking-type {
    min-width: 0;
}

.ranking-title {
    display: block;
    color: var(--canyon-900);
    font-weight: 850;
}

.ranking-desc {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-type {
    color: var(--forest-700);
    background: var(--forest-100);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.page-hero-simple {
    padding: clamp(28px, 5vw, 54px);
    background: linear-gradient(135deg, #ffffff, var(--gold-100));
}

.page-hero-simple span {
    display: inline-flex;
    color: var(--gold-600);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.category-title-panel {
    display: grid;
    gap: 16px;
}

.local-filter {
    width: min(560px, 100%);
    margin-top: 8px;
}

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

.category-card-block a {
    min-height: 300px;
}

.category-cover-stack {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    opacity: 0.82;
}

.category-card-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
}

.category-card-copy h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
}

.category-card-copy p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.category-card-copy span {
    color: var(--gold-300);
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gold-600);
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 32px;
    align-items: stretch;
    padding: 30px;
}

.detail-poster {
    overflow: hidden;
    min-height: 360px;
    border-radius: var(--radius-lg);
    background: var(--canyon-200);
}

.detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-tags .tag-pill {
    color: var(--canyon-900);
    background: var(--gold-100);
    border-color: rgba(255, 201, 74, 0.35);
}

.detail-tags .tag-pill:first-child {
    color: #ffffff;
    background: var(--gold-600);
}

.detail-copy h1 {
    margin: 0 0 16px;
    color: var(--canyon-900);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

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

.detail-meta div {
    padding: 14px 16px;
    background: var(--canyon-50);
    border: 1px solid var(--canyon-200);
    border-radius: var(--radius-md);
}

.detail-meta dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.detail-meta dd {
    margin: 6px 0 0;
    color: var(--canyon-900);
    font-weight: 900;
}

.watch-panel {
    padding: 24px;
    background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
}

.player-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: #000000;
}

.player-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
    z-index: 2;
}

.player-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.player-poster-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.player-poster-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22));
}

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

.player-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    color: #ffffff;
    background: var(--gold-600);
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.player-title {
    max-width: min(680px, calc(100% - 48px));
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 950;
    line-height: 1.2;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

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

.detail-content article {
    padding: 28px;
}

.detail-content h2 {
    margin: 0 0 14px;
    color: var(--canyon-900);
    font-size: 26px;
    font-weight: 900;
}

.detail-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px;
}

.search-page-form {
    width: min(720px, 100%);
    margin-top: 20px;
}

.site-footer {
    margin-top: 64px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 36px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: var(--gold-300);
    font-size: 18px;
    font-weight: 900;
}

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

.footer-grid a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    padding: 18px 0 26px;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

[hidden] {
    display: none !important;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

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

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-inner {
        min-height: 66px;
    }

    .brand {
        font-size: 21px;
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        padding-bottom: 76px;
    }

    .hero-control {
        display: none;
    }

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

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

    .detail-poster {
        min-height: 260px;
    }
}

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

    .hero {
        height: 500px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .home-search-panel,
    .page-hero-simple,
    .category-band,
    .detail-hero,
    .watch-panel,
    .detail-content article {
        border-radius: 18px;
        padding: 22px;
    }

    .home-search-panel form,
    .search-page-form {
        display: grid;
    }

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

    .horizontal-strip {
        grid-auto-columns: 82vw;
    }

    .ranking-item {
        grid-template-columns: auto 70px minmax(0, 1fr);
    }

    .ranking-type {
        display: none;
    }

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

    .player-main-button {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
