:root {
    --sand-50: #fdfbf7;
    --sand-100: #f8f3e8;
    --sand-200: #f2e5cc;
    --dune-100: #f4ede0;
    --dune-600: #b37439;
    --dune-700: #955c31;
    --desert-50: #fef8f0;
    --desert-100: #fdefd9;
    --desert-400: #f29d4e;
    --desert-500: #ee7b29;
    --desert-600: #df5f1f;
    --desert-700: #b9481c;
    --stone-300: #c1bbac;
    --stone-400: #a69d8a;
    --stone-500: #938971;
    --stone-600: #867a65;
    --stone-700: #6f6555;
    --stone-800: #5d5449;
    --stone-900: #4d463d;
    --white: #ffffff;
    --black: #111111;
    --shadow: 0 24px 60px rgba(93, 84, 73, 0.18);
    --soft-shadow: 0 16px 36px rgba(93, 84, 73, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: var(--stone-800);
    background: linear-gradient(180deg, var(--sand-50), var(--desert-50) 42%, var(--sand-100));
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(253, 251, 247, 0.96), rgba(250, 247, 240, 0.94));
    border-bottom: 1px solid var(--sand-200);
    box-shadow: 0 8px 24px rgba(93, 84, 73, 0.08);
    backdrop-filter: blur(16px);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--desert-500), var(--dune-600));
    box-shadow: 0 10px 22px rgba(238, 123, 41, 0.28);
}

.brand-text {
    white-space: nowrap;
    font-size: 20px;
    color: var(--stone-800);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 8px;
}

.nav-link {
    color: var(--stone-700);
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--desert-600);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.nav-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--sand-200);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--stone-800);
    outline: none;
    padding: 11px 16px;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--desert-400);
    box-shadow: 0 0 0 4px rgba(238, 123, 41, 0.13);
    background: var(--white);
}

.nav-search button,
.btn-primary,
.rank-action {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--desert-500), var(--desert-700));
    box-shadow: 0 12px 28px rgba(223, 95, 31, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.btn-primary:hover,
.rank-action:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 36px rgba(223, 95, 31, 0.32);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--white);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-glass.light {
    color: var(--stone-800);
    border-color: rgba(111, 101, 85, 0.2);
    background: rgba(255, 255, 255, 0.58);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--sand-200);
    border-radius: 12px;
    color: var(--stone-800);
    background: var(--white);
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border: 1px solid var(--sand-200);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.mobile-panel.open {
    display: grid;
    gap: 8px;
}

.mobile-panel a {
    padding: 11px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--stone-700);
}

.mobile-panel a:hover {
    color: var(--desert-600);
    background: var(--desert-50);
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--stone-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: none;
}

.hero-slide.active {
    display: block;
}

.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 75% 20%, rgba(238, 123, 41, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.55) 48%, rgba(17, 17, 17, 0.16)),
        linear-gradient(0deg, rgba(17, 17, 17, 0.54), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
    color: var(--white);
    padding: 70px 0 120px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--desert-400);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-kicker span,
.eyebrow {
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(238, 123, 41, 0.12);
}

.hero-content h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.05em;
}

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

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.card-meta span,
.detail-meta span,
.rank-meta span,
.poster-badge,
.poster-score {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

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

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

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--desert-500);
}

.content-section {
    padding: 72px 0;
}

.floating-featured {
    position: relative;
    z-index: 8;
    margin-top: -86px;
}

.featured-grid,
.movie-grid,
.wide-grid,
.mini-grid,
.category-grid,
.detail-hero-grid,
.detail-layout {
    display: grid;
    gap: 24px;
}

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

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

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

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

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

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

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

.section-heading,
.category-overview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading h2,
.category-overview-head h2,
.detail-article h2,
.side-card h2 {
    margin: 10px 0 8px;
    color: var(--stone-800);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p,
.category-overview-head p {
    margin: 0;
    color: var(--stone-600);
}

.section-more {
    flex: 0 0 auto;
    color: var(--desert-600);
    font-weight: 850;
}

.soft-section {
    background: linear-gradient(90deg, var(--dune-100), var(--sand-100));
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(242, 229, 204, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(238, 123, 41, 0.42);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-200), var(--dune-100));
}

.movie-card-wide .poster-link {
    aspect-ratio: 16 / 9;
}

.movie-card-compact .poster-link {
    aspect-ratio: 3 / 4;
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
}

.poster-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    color: var(--white);
    background: var(--desert-500);
}

.poster-score {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
}

.card-body {
    padding: 16px;
}

.card-meta,
.detail-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.card-meta span,
.detail-meta span,
.rank-meta span {
    color: var(--stone-700);
    background: var(--desert-50);
}

.movie-card h2 {
    margin: 0 0 8px;
    color: var(--stone-800);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover,
.category-overview-head h2 a:hover,
.breadcrumb a:hover,
.side-card a:hover {
    color: var(--desert-600);
}

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

.tag-row span {
    color: var(--desert-700);
    background: var(--desert-100);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px 220px;
    gap: 12px;
    margin: 0 0 28px;
    padding: 14px;
    border: 1px solid var(--sand-200);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--soft-shadow);
}

.compact-filter {
    grid-template-columns: minmax(0, 1fr) 180px;
}

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius);
    padding: 22px;
    color: var(--white);
    background: var(--stone-800);
    box-shadow: var(--soft-shadow);
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.76));
}

.category-card span,
.category-card strong {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 24px;
    font-weight: 900;
}

.category-card strong {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.84);
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 0.72;
}

.page-hero {
    padding: 92px 0 76px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(238, 123, 41, 0.36), transparent 34%),
        linear-gradient(135deg, var(--stone-800), var(--stone-900));
}

.small-hero {
    min-height: 320px;
}

.category-hero {
    background:
        radial-gradient(circle at 82% 24%, rgba(244, 237, 224, 0.22), transparent 32%),
        linear-gradient(135deg, var(--dune-700), var(--stone-900));
}

.page-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

.category-overview-panel,
.side-card,
.detail-article {
    border: 1px solid var(--sand-200);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--soft-shadow);
}

.category-overview-panel {
    padding: 24px;
}

.stacked-panels {
    display: grid;
    gap: 28px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 60px 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(242, 229, 204, 0.95);
    border-radius: 22px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(93, 84, 73, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--desert-500), var(--dune-600));
}

.rank-thumb {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: var(--sand-200);
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info h2 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
}

.rank-info p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--stone-600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(238, 123, 41, 0.25), transparent 36%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.58));
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    min-height: 560px;
    padding: 54px 0;
}

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
}

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

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

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

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

.detail-tags {
    margin-top: 18px;
}

.player-section {
    padding-bottom: 32px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: #050505;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.68));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-layer.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 34px;
    background: linear-gradient(135deg, var(--desert-500), var(--desert-700));
    box-shadow: 0 18px 42px rgba(238, 123, 41, 0.34);
}

.play-layer strong {
    max-width: min(720px, 86%);
    text-align: center;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.15;
}

.play-layer em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    padding: 20px 0 52px;
}

.detail-article,
.side-card {
    padding: 28px;
}

.article-text p,
.detail-article p {
    color: var(--stone-700);
    font-size: 17px;
}

.article-text p + p {
    margin-top: 14px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px 16px;
    margin: 0;
}

.side-card dt {
    color: var(--stone-500);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: var(--stone-800);
    font-weight: 750;
}

.empty-state {
    display: none;
    padding: 24px;
    border: 1px solid var(--sand-200);
    border-radius: 22px;
    text-align: center;
    color: var(--stone-600);
    background: rgba(255, 255, 255, 0.7);
}

.empty-state.show {
    display: block;
}

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

.site-footer {
    padding: 54px 0;
    color: var(--stone-300);
    background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
    gap: 38px;
}

.footer-brand {
    color: var(--white);
    font-size: 20px;
}

.footer-main p {
    max-width: 560px;
    color: var(--stone-300);
}

.copyright {
    color: var(--stone-400);
    font-size: 14px;
}

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

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: var(--stone-300);
}

.footer-links a:hover {
    color: var(--desert-400);
}

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

    .nav-search {
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

    .brand-text {
        font-size: 18px;
    }

    .nav-search {
        order: 4;
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: 600px;
    }

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

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

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

    .filter-bar,
    .compact-filter {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 46px 76px minmax(0, 1fr);
    }

    .rank-action {
        grid-column: 2 / -1;
        text-align: center;
    }

    .detail-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 34px;
    }

    .detail-poster {
        width: min(270px, 78vw);
    }

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

@media (max-width: 560px) {
    .container,
    .nav-wrap,
    .mobile-panel,
    .footer-grid,
    .hero-content {
        width: min(100% - 22px, 1180px);
    }

    .hero-content h1,
    .detail-info h1,
    .page-hero h1 {
        letter-spacing: -0.03em;
    }

    .movie-grid,
    .category-movie-grid,
    .featured-grid,
    .wide-grid,
    .mini-grid,
    .category-grid,
    .large-category-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 48px 0;
    }

    .rank-row {
        grid-template-columns: 42px 70px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-info p {
        -webkit-line-clamp: 1;
    }

    .detail-article,
    .side-card,
    .category-overview-panel {
        padding: 20px;
    }

    .play-layer strong {
        font-size: 24px;
    }

    .big-play {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
