:root {
    --bg: #f8fafc;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --card: #ffffff;
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --amber: #f59e0b;
    --dark: #111827;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
}

.nav-shell {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
    transform: rotate(-8deg);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
    transform: rotate(8deg) scale(1.06);
}

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

.desktop-nav a,
.nav-dropdown button {
    color: rgba(255, 255, 255, 0.92);
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown button:hover {
    color: #fff7ed;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 38px;
    left: 50%;
    width: 180px;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(17, 24, 39, 0.94);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: all 0.22s ease;
}

.dropdown-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
}

.dropdown-panel a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-panel {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.top-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 310px;
    flex: 1;
}

.top-search input,
.mobile-nav input,
.filter-search input,
.search-hero input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: 0;
    border-radius: 999px;
    padding: 11px 86px 11px 17px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: box-shadow 0.22s ease, background 0.22s ease;
}

.top-search input::placeholder,
.mobile-nav input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.top-search input:focus,
.mobile-nav input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.24);
}

.top-search button,
.mobile-nav button,
.search-hero button {
    position: absolute;
    right: 6px;
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--red);
    background: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    font-size: 22px;
}

.mobile-nav {
    display: none;
    padding: 0 24px 18px;
    background: rgba(190, 24, 93, 0.25);
}

.mobile-nav.open {
    display: grid;
    gap: 12px;
}

.mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

.mobile-nav form {
    position: relative;
}

.section-shell,
.hero-inner,
.footer-grid,
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero {
    position: relative;
    min-height: 620px;
    color: #ffffff;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(251, 146, 60, 0.45), transparent 28%),
        radial-gradient(circle at 78% 16%, rgba(236, 72, 153, 0.46), transparent 26%),
        linear-gradient(135deg, #111827 0%, #7f1d1d 44%, #831843 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(15, 23, 42, 0.62));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 42px;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 800;
    color: #ffedd5;
    backdrop-filter: blur(14px);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero h1 span {
    color: #fed7aa;
}

.hero-copy {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-actions,
.detail-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 850;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
    box-shadow: 0 14px 28px rgba(239, 68, 68, 0.25);
}

.btn-light {
    color: #be123c;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.btn-secondary,
.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    min-height: 470px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 470px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    background: #111827;
}

.hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
    transform: scale(1.03);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.1)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent 55%);
}

.hero-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 34px;
}

.hero-card-content h2 {
    margin: 12px 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.hero-card-content p {
    max-width: 520px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-meta span,
.meta-line span,
.tag-row span,
.info-pill,
.breadcrumb a,
.breadcrumb span {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.hero-meta span {
    background: rgba(255, 255, 255, 0.18);
    color: #ffedd5;
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

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

.hero-dots button.active {
    width: 30px;
    background: #ffffff;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.stat-card {
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.stat-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

main {
    min-height: 60vh;
}

.section-shell {
    padding-top: 56px;
    padding-bottom: 56px;
}

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

.section-head h2,
.page-hero h1,
.detail-title h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.category-intro p,
.detail-title p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.movie-card {
    position: relative;
    border-radius: 24px;
    background: var(--card);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

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

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.movie-card:hover .poster-wrap img {
    transform: scale(1.06);
    opacity: 0.9;
}

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 24, 39, 0.82));
    opacity: 0.9;
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.28);
}

.card-body {
    padding: 16px;
}

.meta-line {
    margin-bottom: 10px;
}

.meta-line span {
    color: #c2410c;
    background: #ffedd5;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.movie-card h3 a:hover {
    color: var(--red);
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
}

.tag-row span {
    background: #f3f4f6;
    color: #4b5563;
}

.gradient-panel {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border-radius: 34px;
    padding: 34px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 28px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #f59e0b, #ef4444, #be185d);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #fb7185, #f97316, #7c2d12);
}

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

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.85);
}

.category-card span {
    font-weight: 850;
}

.page-hero {
    background:
        radial-gradient(circle at 12% 10%, rgba(251, 146, 60, 0.4), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(236, 72, 153, 0.36), transparent 30%),
        linear-gradient(135deg, #9a3412, #be123c, #831843);
    color: #ffffff;
    padding: 72px 0;
}

.page-hero p,
.page-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.breadcrumb a,
.breadcrumb span {
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
}

.category-intro,
.filter-panel,
.detail-card,
.text-panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--soft-shadow);
}

.category-intro {
    margin-bottom: 24px;
}

.filter-panel {
    margin-bottom: 28px;
}

.filter-search input,
.search-hero input {
    border-color: var(--line);
    color: var(--text);
    background: #ffffff;
}

.filter-search input::placeholder,
.search-hero input::placeholder {
    color: #9ca3af;
}

.filter-groups {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.filter-groups strong {
    display: block;
    margin-bottom: 10px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-buttons button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: #4b5563;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    color: #ffffff;
    border-color: var(--red);
    background: linear-gradient(90deg, var(--orange), var(--red));
}

.empty-state {
    display: none;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.detail-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 0%, rgba(251, 146, 60, 0.42), transparent 30%),
        linear-gradient(135deg, #111827, #7f1d1d 50%, #831843);
    padding: 52px 0;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
    background: #111827;
}

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

.detail-title h1 {
    color: #ffffff;
}

.detail-title p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.info-pill {
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.15);
}

.player-section {
    padding-top: 36px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.24), rgba(2, 6, 23, 0.74));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-start {
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.34);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.player-start:hover {
    transform: scale(1.08);
    box-shadow: 0 22px 50px rgba(236, 72, 153, 0.38);
}

.player-status {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 28px;
}

.text-panel h2,
.detail-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.text-panel p {
    margin: 0 0 18px;
    color: #374151;
    font-size: 17px;
}

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

.side-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.side-item img {
    width: 76px;
    height: 106px;
    object-fit: cover;
    border-radius: 14px;
    background: #111827;
}

.side-item strong {
    display: block;
    margin-bottom: 6px;
    line-height: 1.25;
}

.side-item span {
    color: var(--muted);
    font-size: 13px;
}

.search-hero {
    max-width: 780px;
    margin-top: 26px;
    position: relative;
}

.search-hero button {
    top: 6px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 70px 110px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border-radius: 26px;
    padding: 16px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ranking-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-size: 22px;
    font-weight: 900;
}

.ranking-row img {
    width: 110px;
    height: 150px;
    object-fit: cover;
    border-radius: 18px;
    background: #111827;
}

.ranking-row h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.ranking-row p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    margin-top: 36px;
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 36px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

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

.site-footer p {
    color: #9ca3af;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    padding-bottom: 24px;
    color: #9ca3af;
    font-size: 14px;
}

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

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

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

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

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

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

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-slider {
        min-height: 430px;
    }

    .hero-card {
        min-height: 430px;
    }

    .stats-strip {
        grid-template-columns: 1fr;
    }

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

    .ranking-row {
        grid-template-columns: 52px 90px minmax(0, 1fr);
    }

    .ranking-row .btn-primary {
        grid-column: 2 / 4;
    }

    .ranking-row img {
        width: 90px;
        height: 124px;
    }
}

@media (max-width: 620px) {
    .nav-shell,
    .section-shell,
    .hero-inner,
    .footer-grid,
    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand {
        font-size: 21px;
    }

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

    .hero-card-content {
        padding: 24px;
    }

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

    .movie-card h3 {
        font-size: 16px;
    }

    .card-body {
        padding: 13px;
    }

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

    .gradient-panel,
    .category-intro,
    .filter-panel,
    .detail-card,
    .text-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .detail-hero,
    .page-hero {
        padding: 46px 0;
    }

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

    .ranking-row {
        grid-template-columns: 42px 78px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 20px;
    }

    .ranking-number {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .ranking-row img {
        width: 78px;
        height: 106px;
        border-radius: 14px;
    }

    .ranking-row h2 {
        font-size: 18px;
    }
}
