:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --rose-50: #fff1f2;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 24px;
}

body {
    min-height: 100vh;
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-50), var(--white), var(--amber-50));
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
}

.nav-shell {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.brand-mark,
.footer-brand span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
    box-shadow: 0 12px 24px rgba(180, 83, 9, 0.28);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.05);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--amber-800), var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--gray-600);
    font-size: 12px;
}

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

.desktop-nav a,
.mobile-nav a {
    position: relative;
    color: var(--gray-700);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--amber-600);
    transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
    color: var(--amber-700);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-800);
}

.mobile-nav {
    display: none;
    padding: 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50), var(--amber-50));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image: radial-gradient(circle at 20px 20px, rgba(217, 119, 6, 0.12) 0 2px, transparent 3px);
    background-size: 48px 48px;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    align-items: center;
    gap: 56px;
    padding: 80px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(180, 83, 9, 0.08);
}

.hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy h1 span {
    background: linear-gradient(90deg, var(--amber-600), var(--rose-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 32px;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.85;
}

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

.primary-btn,
.secondary-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn,
.secondary-btn {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
}

.primary-btn {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--amber-700));
    box-shadow: 0 16px 30px rgba(180, 83, 9, 0.28);
}

.secondary-btn {
    color: var(--amber-700);
    background: var(--white);
    border: 2px solid var(--amber-200);
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-quick-links a {
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    text-decoration: none;
}

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

.hero-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
    color: var(--white);
    text-decoration: none;
    transform: translateZ(0);
}

.hero-card:nth-child(2),
.hero-card:nth-child(3) {
    transform: translateY(28px);
}

.hero-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 20%, rgba(17, 24, 39, 0.78));
}

.hero-card span,
.hero-card strong {
    position: absolute;
    left: 18px;
    z-index: 2;
}

.hero-card span {
    bottom: 52px;
    font-size: 13px;
    color: var(--amber-100);
    font-weight: 700;
}

.hero-card strong {
    right: 18px;
    bottom: 18px;
    font-size: 20px;
    line-height: 1.25;
}

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

.feature-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 26px 0;
}

.feature-grid div {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 1px solid var(--gray-200);
}

.feature-grid strong,
.feature-grid span {
    display: block;
}

.feature-grid strong {
    margin-bottom: 6px;
    color: var(--gray-900);
    font-size: 18px;
}

.feature-grid span {
    color: var(--gray-600);
    font-size: 14px;
}

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

.section-block.warm {
    background: linear-gradient(135deg, var(--gray-50), var(--amber-50));
}

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

.section-title.tight {
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-title a,
.text-link {
    color: var(--amber-700);
    font-weight: 800;
    text-decoration: none;
}

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

.category-tile {
    min-height: 190px;
    padding: 24px;
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 25px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile span,
.category-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--amber-800);
    background: linear-gradient(135deg, var(--amber-100), var(--amber-200));
    font-weight: 900;
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-tile p,
.category-card p {
    color: var(--gray-600);
    line-height: 1.75;
}

.category-tile:hover,
.movie-card:hover,
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    color: var(--white);
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(17, 24, 39, 0.72));
}

.poster-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
}

.poster-badge {
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--amber-800);
    font-size: 12px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--amber-500), var(--rose-600));
    color: var(--white);
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--amber-700);
    font-weight: 800;
    font-size: 13px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-list span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 700;
}

.tag-list.large span {
    padding: 8px 12px;
    color: var(--amber-800);
    background: var(--amber-100);
}

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

.ranking-panel,
.side-card,
.article-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.ranking-panel {
    position: sticky;
    top: 104px;
    padding: 24px;
}

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

.rank-list.expanded {
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    color: inherit;
    text-decoration: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 1px solid var(--gray-200);
    transition: transform 0.25s ease, background 0.25s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    background: var(--amber-50);
}

.rank-row b {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
}

.rank-row img {
    width: 64px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-row strong,
.rank-row small {
    display: block;
}

.rank-row strong {
    margin-bottom: 5px;
    font-weight: 900;
}

.rank-row small {
    color: var(--gray-600);
    line-height: 1.5;
}

.inner-hero {
    padding: 92px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--rose-600));
}

.inner-hero.amber {
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
}

.inner-hero.rose {
    background: linear-gradient(135deg, var(--rose-600), var(--amber-600));
}

.inner-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.inner-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.search-box {
    flex: 1;
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    outline: none;
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

.filter-pills button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-weight: 800;
}

.filter-pills button.active,
.filter-pills button:hover {
    color: var(--white);
    background: var(--amber-700);
}

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

.category-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    overflow: hidden;
    border-radius: 18px;
}

.category-cover img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
}

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

.category-card h2 a {
    color: inherit;
    text-decoration: none;
}

.empty-state {
    display: none;
    margin-top: 22px;
    padding: 28px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    text-align: center;
    font-weight: 800;
}

.empty-state.is-visible {
    display: block;
}

.detail-head {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

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

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-weight: 700;
}

.crumb a {
    color: var(--amber-700);
    text-decoration: none;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.lead {
    max-width: 800px;
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.85;
}

.player-block {
    padding-top: 42px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--gray-900);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--gray-900);
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.78));
    border: 0;
    transition: opacity 0.25s ease;
}

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

.play-symbol {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.player-cover strong {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

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

.article-card h2,
.side-card h2 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 900;
}

.article-card h2:not(:first-child) {
    margin-top: 28px;
}

.article-card p {
    color: var(--gray-700);
    font-size: 17px;
    line-height: 2;
}

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

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

.side-card dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 700;
}

.narrow {
    max-width: 900px;
}

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0 40px;
}

.footer-brand span {
    width: 36px;
    height: 36px;
}

.footer-brand strong {
    font-size: 22px;
    background: linear-gradient(90deg, #fbbf24, var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
    margin: 16px 0 0;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fbbf24;
    font-size: 18px;
    font-weight: 900;
}

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

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
}

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

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

    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }
}

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

    .mobile-toggle {
        display: inline-flex;
    }

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

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

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

    .ranking-panel {
        position: static;
    }

    .category-list-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-shell {
        height: 68px;
    }

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

    .brand-copy strong {
        font-size: 20px;
    }

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

    .hero-layout {
        padding: 46px 0;
        gap: 34px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-grid,
    .feature-grid,
    .category-grid,
    .movie-grid,
    .movie-grid.compact-grid,
    .movie-grid.list-grid,
    .category-card {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        transform: none;
    }

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

    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .rank-row img {
        width: 56px;
        height: 74px;
    }

    .detail-head {
        padding: 34px 0;
    }

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

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

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