:root {
    --bg: #f8f5f1;
    --surface: #ffffff;
    --surface-soft: #fff8f0;
    --text: #1f1a17;
    --muted: #70665f;
    --line: rgba(64, 45, 32, 0.12);
    --primary: #b8794a;
    --primary-dark: #854c34;
    --secondary: #38241c;
    --shadow: 0 20px 60px rgba(39, 25, 17, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(184, 121, 74, 0.18), transparent 32rem),
        linear-gradient(180deg, #fffdfb 0%, var(--bg) 42%, #f3eee8 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.7;
}

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

img.is-missing {
    opacity: 0;
}

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(184, 121, 74, 0.16);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 34px rgba(184, 121, 74, 0.28);
}

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

.brand-text strong,
.footer-brand {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

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

.desktop-nav a,
.mobile-panel a {
    color: #51443c;
    font-size: 15px;
    font-weight: 700;
    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(--primary-dark);
}

.nav-search {
    display: flex;
    align-items: center;
    width: min(330px, 28vw);
    border: 1px solid rgba(184, 121, 74, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.nav-search input,
.wide-search input,
.filter-bar input,
.filter-bar select,
.mobile-panel input {
    width: 100%;
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-search input {
    padding: 10px 14px 10px 18px;
}

.nav-search button,
.wide-search button,
.mobile-panel button {
    flex: 0 0 auto;
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    cursor: pointer;
}

.nav-search button {
    padding: 10px 18px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(184, 121, 74, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary-dark);
}

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

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

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

.mobile-panel form {
    display: flex;
    border: 1px solid rgba(184, 121, 74, 0.22);
    border-radius: 16px;
    overflow: hidden;
}

.mobile-panel input {
    padding: 12px 14px;
}

.mobile-panel button {
    padding: 0 18px;
}

.hero-slider {
    position: relative;
    min-height: min(76vh, 640px);
    background: linear-gradient(135deg, #2e1d16, #120c09);
    overflow: hidden;
}

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

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.hero-slide > img.is-missing,
.detail-bg.is-missing {
    opacity: 0;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(184, 121, 74, 0.36), transparent 28rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.62)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 48%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: clamp(54px, 10vw, 108px);
    transform: translateX(-50%);
    color: #ffffff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    color: #fff5eb;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 999px;
    background: rgba(184, 121, 74, 0.92);
}

.section-kicker {
    color: var(--primary-dark);
    background: rgba(184, 121, 74, 0.12);
}

.hero-content h1 {
    max-width: 820px;
    margin: 18px 0 16px;
    font-size: clamp(38px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    font-weight: 900;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 18px 40px rgba(184, 121, 74, 0.34);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.btn-small {
    min-height: 38px;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 38px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 38px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.is-active {
    background: #ffffff;
}

.section-block {
    padding: 46px 0;
}

.quick-search-panel,
.filter-bar,
.search-page-box {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-top: -38px;
    padding: 24px;
    border: 1px solid rgba(184, 121, 74, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.quick-search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-article h2,
.detail-side-card h2 {
    margin: 0;
    letter-spacing: -0.03em;
}

.quick-search-panel h2,
.section-heading h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.wide-search {
    display: flex;
    min-width: min(520px, 100%);
    border: 1px solid rgba(184, 121, 74, 0.2);
    border-radius: 999px;
    background: var(--surface-soft);
    overflow: hidden;
}

.wide-search input {
    padding: 14px 20px;
}

.wide-search button {
    padding: 0 24px;
}

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

.compact-heading {
    align-items: center;
}

.text-link {
    color: var(--primary-dark);
    font-weight: 900;
}

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

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

.category-card {
    position: relative;
    min-height: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(54, 35, 23, 0.16);
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18));
}

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

.category-card strong {
    font-size: 23px;
    font-weight: 900;
}

.category-card em {
    margin: 4px 0 8px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.74);
}

.category-card p {
    min-height: 44px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

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

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(184, 121, 74, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(46, 31, 22, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(46, 31, 22, 0.14);
}

.poster-link {
    position: relative;
    aspect-ratio: 3 / 4.15;
    background: linear-gradient(135deg, #3f2d24, #c19167);
    overflow: hidden;
}

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

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, #d69a61, #8a4028);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.movie-meta-line,
.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

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

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

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    color: #5f554e;
    font-size: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(184, 121, 74, 0.12);
}

.hero-tags span,
.detail-tags span {
    color: #fff6ee;
    background: rgba(255, 255, 255, 0.18);
}

.card-actions {
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-panel,
.detail-side-card,
.detail-article {
    border: 1px solid rgba(184, 121, 74, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(46, 31, 22, 0.08);
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(184, 121, 74, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
    background: rgba(184, 121, 74, 0.15);
    transform: translateX(4px);
}

.ranking-number {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 900;
}

.ranking-title {
    min-width: 0;
    font-weight: 850;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-meta {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.wide-ranking {
    position: static;
}

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

.subpage {
    min-height: 60vh;
}

.page-hero {
    padding: 62px 0 30px;
}

.page-hero h1 {
    margin-top: 14px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
}

.page-hero p {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

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

.light-breadcrumb {
    color: rgba(255, 255, 255, 0.76);
}

.filter-bar {
    margin-top: 0;
    margin-bottom: 18px;
    box-shadow: 0 14px 36px rgba(46, 31, 22, 0.08);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(184, 121, 74, 0.2);
    border-radius: 999px;
    background: #fffaf5;
}

.filter-bar select {
    max-width: 220px;
}

.filter-bar span {
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 58px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(184, 121, 74, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(46, 31, 22, 0.08);
}

.category-thumb {
    display: block;
    min-height: 190px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    overflow: hidden;
}

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

.category-overview-card span {
    color: var(--primary-dark);
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 8px 0;
    font-size: 28px;
}

.category-overview-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.detail-hero {
    position: relative;
    min-height: 610px;
    color: #ffffff;
    background: linear-gradient(135deg, #22130e, #4b2f23);
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) scale(1.08) saturate(1.1);
}

.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(184, 121, 74, 0.32), transparent 30rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08));
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
}

.detail-poster {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: linear-gradient(135deg, #3f2d24, #c19167);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

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

.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
}

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

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1c110c, #5b3625);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle, rgba(184, 121, 74, 0.32), rgba(0, 0, 0, 0.52));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-overlay span {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 20px 42px rgba(184, 121, 74, 0.36);
}

.player-overlay strong {
    font-size: 20px;
}

.player-message {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    pointer-events: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    padding: 46px 0 10px;
}

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

.detail-article h2,
.detail-side-card h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #514841;
    font-size: 17px;
}

.info-grid {
    display: grid;
    gap: 14px;
}

.info-grid div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(184, 121, 74, 0.08);
}

.info-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.info-grid strong {
    display: block;
    margin-top: 4px;
}

.search-page-box {
    margin-top: 0;
}

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

.search-status {
    min-width: 190px;
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.site-footer {
    margin-top: 50px;
    padding: 46px 0;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, #21130e, #3a241b);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 36px;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 12px;
}

.site-footer p {
    margin: 0;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a:hover {
    color: #ffffff;
}

[data-card].is-hidden {
    display: none;
}

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

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

    .two-column-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .nav-wrap {
        min-height: 64px;
    }

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

    .hero-content {
        bottom: 72px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .quick-search-panel,
    .filter-bar,
    .search-page-box,
    .section-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .wide-search {
        min-width: 0;
        width: 100%;
    }

    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .multi-column {
        grid-template-columns: 1fr;
    }

    .category-overview-card {
        grid-template-columns: 150px 1fr;
    }

    .detail-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 22px;
    }

    .detail-copy h1 {
        font-size: 42px;
    }
}

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

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

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

    .hero-dots {
        left: 16px;
        right: auto;
    }

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

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

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

    .movie-card p {
        font-size: 13px;
    }

    .ranking-item {
        grid-template-columns: 38px 1fr;
    }

    .ranking-meta {
        grid-column: 2;
    }

    .category-overview-card,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 220px;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-content-grid {
        padding-top: 26px;
    }

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

    .player-shell {
        border-radius: 20px;
    }
}
