* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: rgba(15, 23, 42, 0.72);
    --panel-deep: #111827;
    --line: #1e293b;
    --line-soft: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-deep: #06b6d4;
    --orange: #fb923c;
    --green: #4ade80;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.18), transparent 34rem), var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(1240px, calc(100% - 2rem));
    min-height: 4.25rem;
    margin: 0 auto;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.42);
    border-radius: 0.8rem;
    background: rgba(8, 145, 178, 0.1);
}

.brand-mark.small {
    width: 2rem;
    height: 2rem;
}

.brand-mark svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.brand-text strong {
    font-size: 1.05rem;
    color: var(--text);
}

.brand-text small {
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.74rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--muted-strong);
}

.main-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: var(--muted-strong);
    cursor: pointer;
    transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-dropdown:hover > button {
    color: var(--text);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    display: grid;
    min-width: 12rem;
    padding: 0.5rem;
    background: #0f172a;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.4rem);
    transition: 180ms ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 0.55rem 0.7rem;
    border-radius: 0.55rem;
}

.dropdown-panel a:hover {
    background: rgba(30, 41, 59, 0.95);
    color: var(--cyan);
}

.header-search,
.mobile-search,
.section-search,
.search-page-form {
    display: flex;
    gap: 0.6rem;
}

.header-search input,
.mobile-search input,
.section-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
    min-width: 0;
    color: var(--text);
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid #334155;
    border-radius: 0.9rem;
    outline: none;
    transition: border 180ms ease, box-shadow 180ms ease;
}

.header-search input,
.mobile-search input,
.section-search input,
.search-page-form input {
    padding: 0.78rem 1rem;
}

.header-search input {
    width: 15rem;
}

.header-search input:focus,
.mobile-search input:focus,
.section-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-search button,
.section-search button,
.search-page-form button {
    border: 0;
    padding: 0.78rem 1rem;
    color: white;
    background: var(--cyan-deep);
    border-radius: 0.9rem;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.header-search button:hover,
.mobile-search button:hover,
.section-search button:hover,
.search-page-form button:hover {
    background: var(--cyan);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 1.45rem;
    height: 2px;
    margin: 0.32rem auto;
    background: currentColor;
    border-radius: 2rem;
}

.mobile-panel {
    display: none;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1rem;
}

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

.mobile-panel nav {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.8rem;
}

.mobile-panel nav a {
    padding: 0.7rem 0.8rem;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--line-soft);
    border-radius: 0.8rem;
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 36rem;
    overflow: hidden;
}

.hero-stage,
.hero-slide,
.hero-backdrop,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1000ms ease;
    pointer-events: none;
}

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

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

.hero-shade {
    background: linear-gradient(to top, #020617 5%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.14));
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: min(1240px, calc(100% - 2rem));
    height: 100%;
    margin: 0 auto;
    padding: 0 0 5.5rem;
    max-width: 1240px;
}

.hero-category,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1 {
    max-width: 52rem;
    margin: 1rem 0 1rem;
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 48rem;
    margin: 0 0 1.3rem;
    color: var(--muted-strong);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-meta,
.meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
}

.hero-meta span,
.detail-meta span {
    padding: 0.25rem 0.6rem;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.3rem;
    border-radius: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.primary-button {
    color: white;
    background: var(--cyan-deep);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.28);
}

.primary-button:hover {
    background: var(--cyan);
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--text);
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid var(--line-soft);
}

.ghost-button:hover {
    border-color: rgba(34, 211, 238, 0.38);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    background: rgba(0, 0, 0, 0.46);
    border-radius: 999px;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    font-size: 2rem;
    line-height: 1;
}

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

.hero-arrow.prev {
    left: 1.2rem;
}

.hero-arrow.next {
    right: 1.2rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active {
    width: 2rem;
    background: var(--cyan);
}

.section-wrap {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.section-heading {
    margin-bottom: 1.8rem;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-article h2 {
    margin: 0.65rem 0 0;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
    max-width: 44rem;
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.text-link {
    color: var(--cyan);
    font-weight: 700;
}

.text-link:hover {
    color: #67e8f9;
}

.intro-panel {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.glow-panel,
.rank-panel {
    position: relative;
    padding: 2.4rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.glow-panel::before,
.rank-panel::before {
    content: "";
    position: absolute;
    width: 24rem;
    height: 24rem;
    top: -12rem;
    right: 8%;
    background: rgba(34, 211, 238, 0.12);
    filter: blur(34px);
    border-radius: 999px;
}

.glow-panel > *,
.rank-panel > * {
    position: relative;
}

.movie-grid {
    display: grid;
    gap: 1rem;
}

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

.movie-list {
    display: grid;
    gap: 1rem;
}

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

.movie-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 1rem;
    transition: transform 260ms ease, border 260ms ease, background 260ms ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.38);
    background: rgba(15, 23, 42, 0.95);
}

.movie-card figure {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.year-pill,
.rank-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.25rem 0.52rem;
    color: white;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.55rem;
    font-size: 0.75rem;
    backdrop-filter: blur(8px);
}

.rank-badge {
    right: auto;
    left: 0.65rem;
    background: rgba(8, 145, 178, 0.82);
}

.card-copy {
    display: grid;
    gap: 0.5rem;
    padding: 0.9rem;
}

.card-copy h2,
.wide-copy h2 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.35;
}

.card-copy p,
.wide-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.meta-line {
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.meta-line span + span::before {
    content: "·";
    margin-right: 0.45rem;
    color: #475569;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag-row span,
.detail-tags a {
    padding: 0.18rem 0.5rem;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border-radius: 999px;
    font-size: 0.72rem;
}

.wide-card {
    display: grid;
    grid-template-columns: 12rem 1fr;
    min-height: 8rem;
    padding: 0.9rem;
}

.wide-card figure {
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
}

.wide-copy {
    display: grid;
    align-content: center;
    gap: 0.55rem;
    padding: 0.2rem 0 0.2rem 1rem;
    min-width: 0;
}

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

.category-card,
.category-overview {
    position: relative;
    overflow: hidden;
    min-height: 12rem;
    padding: 1.2rem;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--line-soft);
    border-radius: 1.2rem;
    transition: transform 240ms ease, border 240ms ease;
}

.category-card:hover,
.category-overview:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.38);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.2));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card span,
.category-overview h2 {
    display: block;
    margin: 0 0 0.55rem;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 900;
}

.category-card p,
.category-overview p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.category-overview {
    display: grid;
    min-height: 0;
    gap: 1rem;
}

.category-thumbs {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 0.4rem;
    height: 8.6rem;
}

.category-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
}

.category-thumbs img:first-child {
    grid-row: span 2;
}

.category-overview span {
    color: var(--cyan);
    font-weight: 800;
}

.page-hero {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
}

.compact-hero {
    padding: 5rem 0 1.5rem;
}

.compact-hero > div {
    padding: 2.4rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.42));
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-hero p {
    max-width: 50rem;
    margin: 1rem 0 0;
    color: var(--muted-strong);
    font-size: 1.06rem;
}

.filter-bar {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.filter-bar input,
.filter-bar select {
    padding: 0.85rem 1rem;
}

.filter-bar input {
    flex: 1;
}

.filter-bar select {
    width: 12rem;
}

.movie-card.is-hidden {
    display: none;
}

.detail-hero {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
}

.detail-bg,
.detail-overlay {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
    transform: scale(1.08);
    opacity: 0.42;
}

.detail-overlay {
    background: linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.86) 42%, rgba(2, 6, 23, 0.62));
}

.detail-inner {
    position: relative;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem 0 2rem;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 18rem minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 3 / 4;
    background: #0f172a;
    border: 1px solid var(--line-soft);
    border-radius: 1.3rem;
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    max-width: 58rem;
    font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.detail-copy p {
    max-width: 56rem;
    margin: 1.2rem 0;
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.2rem 0 1.6rem;
}

.player-section {
    padding-top: 1rem;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.75rem;
    width: 100%;
    border: 0;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(15, 23, 42, 0.36));
    cursor: pointer;
}

.play-cover.is-hidden {
    display: none;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 4.8rem;
    height: 4.8rem;
    padding-left: 0.25rem;
    color: white;
    background: var(--cyan-deep);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(8, 145, 178, 0.38);
    font-size: 1.8rem;
}

.play-cover strong {
    max-width: min(90%, 44rem);
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.play-cover em {
    color: var(--muted-strong);
    font-style: normal;
}

.article-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.detail-article {
    display: grid;
    gap: 1rem;
    padding: 2.2rem;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
}

.detail-article h2 {
    font-size: 1.6rem;
}

.detail-article p {
    margin: 0;
    color: var(--muted-strong);
    white-space: pre-line;
}

.search-section {
    min-height: 30rem;
}

.search-page-form {
    margin-bottom: 1rem;
}

.search-page-form input {
    flex: 1;
}

.search-status {
    margin: 0 0 1.4rem;
    color: var(--muted);
}

.site-footer {
    margin-top: 3rem;
    background: rgba(15, 23, 42, 0.92);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0;
}

.footer-inner p {
    max-width: 34rem;
    color: var(--muted);
}

.footer-inner h2 {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

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

.footer-bottom {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.2rem 0 2rem;
    color: #64748b;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

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

    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 820px) {
    .hero {
        height: 78vh;
        min-height: 34rem;
    }

    .hero-content {
        padding-bottom: 4.2rem;
    }

    .hero-arrow {
        display: none;
    }

    .section-wrap {
        padding: 2.6rem 0;
    }

    .split-heading,
    .filter-bar,
    .detail-layout,
    .footer-inner {
        display: grid;
    }

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

    .wide-card {
        grid-template-columns: 8.5rem 1fr;
    }

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

    .detail-poster {
        width: min(15rem, 65vw);
    }

    .filter-bar select {
        width: 100%;
    }

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

@media (max-width: 560px) {
    .header-inner,
    .mobile-panel,
    .section-wrap,
    .page-hero,
    .detail-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 1rem, 1240px);
    }

    .brand-text strong {
        font-size: 0.95rem;
    }

    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-meta {
        gap: 0.4rem;
    }

    .poster-grid,
    .category-grid,
    .category-overview-grid {
        gap: 0.75rem;
    }

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

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

    .wide-card figure {
        aspect-ratio: 16 / 9;
    }

    .wide-copy {
        padding: 0.85rem 0 0;
    }

    .glow-panel,
    .rank-panel,
    .compact-hero > div,
    .detail-article {
        padding: 1.2rem;
        border-radius: 1.1rem;
    }

    .player-shell {
        border-radius: 1rem;
    }
}
