:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --teal-500: #14b8a6;
    --amber-50: #fffbeb;
    --amber-400: #fbbf24;
    --ink: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --line: #dbeafe;
    --card: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
    --soft-shadow: 0 18px 40px rgba(15, 118, 110, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 38%, #ffffff 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(16, 185, 129, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.08);
}

.header-inner {
    max-width: 1280px;
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-600), var(--teal-500));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.26);
    font-size: 13px;
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--green-700), var(--teal-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link {
    color: #475569;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--green-50);
    color: var(--green-700);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    padding: 12px 24px 20px;
    background: #ffffff;
    border-top: 1px solid var(--green-100);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #475569;
    font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
    background: var(--green-50);
    color: var(--green-600);
}

main {
    min-height: 70vh;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdfa 48%, #fffbeb 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    background:
        radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.18), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(20, 184, 166, 0.18), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(251, 191, 36, 0.18), transparent 34%),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: auto, auto, auto, 42px 42px, 42px 42px;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    min-height: 680px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: center;
}

.hero-slides {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy h1 {
    margin: 14px 0 8px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--ink);
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
    color: var(--green-700);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 22px;
    font-size: 18px;
    color: #475569;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tags,
.detail-tags,
.card-tags,
.filter-chips,
.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.card-tags span,
.filter-chip,
.chip-link {
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--green-700);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--green-600), var(--teal-500));
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(5, 150, 105, 0.24);
}

.ghost-btn,
.section-more {
    background: rgba(255, 255, 255, 0.82);
    color: var(--green-700);
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.1);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.22);
}

.hero-poster {
    position: relative;
    min-height: 480px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.35), rgba(20, 184, 166, 0.16)),
        linear-gradient(180deg, #ecfdf5, #d1fae5);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.66);
    color: #ffffff;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-search-card,
.ranking-card,
.article-card,
.side-card,
.category-overview-card,
.category-card {
    background: var(--card);
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.hero-search-card {
    padding: 22px;
}

.hero-search-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 900;
}

.filter-input,
.hero-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 18px;
    padding: 0 16px;
    outline: none;
    background: #ffffff;
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.filter-input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.hero-chip-row {
    margin-top: 14px;
}

.hero-mini-list,
.rank-list {
    display: grid;
    gap: 10px;
}

.hero-dots {
    position: absolute;
    left: 24px;
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 120, 87, 0.22);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 54px;
    background: var(--green-600);
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 24px;
}

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

.section-heading h2 {
    margin: 10px 0 6px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

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

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

.movie-card {
    min-width: 0;
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.18), rgba(20, 184, 166, 0.22)),
        linear-gradient(180deg, #ecfdf5, #ffffff);
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(15, 118, 110, 0.2);
}

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

.poster-frame:hover .cover-img {
    transform: scale(1.06);
}

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.58));
}

.card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.play-mark {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green-600);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}

.card-body {
    padding: 13px 4px 0;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
}

.card-body h3 {
    margin: 6px 0 6px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
}

.card-body h3 a:hover {
    color: var(--green-600);
}

.card-body p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags span {
    padding: 4px 8px;
    font-size: 12px;
}

.movie-card.compact .card-body h3 {
    font-size: 15px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}

.ranking-card {
    padding: 24px;
    position: sticky;
    top: 96px;
}

.ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}

.ranking-head span {
    color: var(--green-600);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ranking-head h2 {
    margin: 0 auto 0 0;
    color: var(--ink);
}

.ranking-head a {
    color: var(--green-700);
    font-weight: 800;
}

.rank-item {
    display: grid;
    grid-template-columns: 34px 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.rank-no {
    font-weight: 900;
    color: var(--green-700);
}

.rank-thumb {
    display: block;
    width: 58px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #d1fae5, #ffffff);
}

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

.rank-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.rank-copy strong {
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-copy em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.category-card,
.category-overview-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span,
.category-overview-title {
    color: var(--green-700);
    font-weight: 900;
}

.category-card strong,
.category-overview-card strong {
    color: var(--ink);
    font-size: 22px;
}

.category-card em,
.category-overview-card p {
    margin: 0;
    color: var(--muted);
    font-style: normal;
}

.category-card small,
.overview-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-card small a,
.overview-samples a {
    border-radius: 999px;
    padding: 4px 8px;
    background: var(--green-50);
    color: var(--green-700);
    font-size: 12px;
    font-weight: 700;
}

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

.category-overview-title {
    font-size: 24px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d1fae5, #f0fdfa 52%, #fffbeb);
}

.page-hero::before,
.detail-backdrop {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 22%, rgba(16, 185, 129, 0.18), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(20, 184, 166, 0.18), transparent 30%);
}

.page-hero > div {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 78px 24px;
}

.page-hero h1 {
    margin: 14px 0 12px;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #475569;
    font-size: 18px;
}

.filter-bar {
    margin-bottom: 28px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(16, 185, 129, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.filter-chip {
    cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: var(--green-600);
    color: #ffffff;
}

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

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

.detail-hero {
    min-height: 520px;
}

.detail-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #d1fae5, #ffffff);
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    margin: 16px 0 16px;
    color: var(--ink);
    font-size: clamp(36px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-copy p {
    max-width: 820px;
    margin: 0 0 22px;
    color: #475569;
    font-size: 18px;
}

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

.breadcrumb a {
    color: var(--green-700);
    font-weight: 800;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.player-section h2,
.article-card h2,
.side-card h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green-600), var(--teal-500));
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.28);
    font-size: 26px;
}

.player-overlay span:last-child {
    font-weight: 900;
    letter-spacing: 0.04em;
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    text-align: center;
}

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

.article-card p {
    margin: 0;
    color: #475569;
    font-size: 17px;
}

.detail-side {
    position: sticky;
    top: 96px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
}

.info-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
}

.info-list dt {
    color: var(--muted);
}

.info-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.info-list a {
    color: var(--green-700);
}

.genre-tags {
    margin-top: 16px;
}

.wide-rank {
    grid-template-columns: minmax(0, 1fr) 420px;
}

.full-rank {
    max-height: calc(100vh - 120px);
    overflow: auto;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(16, 185, 129, 0.14);
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.86), #ffffff);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 34px;
    align-items: start;
}

.footer-brand p {
    max-width: 520px;
    margin: 14px 0 0;
    color: var(--muted);
}

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

.footer-links a {
    color: #475569;
    font-weight: 700;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 30px;
    color: var(--muted);
    font-size: 14px;
}

.is-empty::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.64), transparent 28%),
        linear-gradient(135deg, rgba(5, 150, 105, 0.22), rgba(20, 184, 166, 0.18));
}

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

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

    .hero-inner,
    .split-section,
    .wide-rank,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .ranking-card,
    .detail-side {
        position: static;
    }

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 280px;
    }
}

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

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

    .hero-inner {
        min-height: auto;
        padding-top: 40px;
        grid-template-columns: 1fr;
    }

    .hero-slides {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
    }

    .hero-poster {
        min-height: 360px;
        transform: none;
    }

    .hero-poster img {
        min-height: 360px;
    }

    .hero-dots {
        position: static;
        margin-top: 18px;
    }

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

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

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

@media (max-width: 680px) {
    .header-inner {
        height: 66px;
        padding: 0 16px;
    }

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

    .content-section {
        padding: 42px 16px;
    }

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

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

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

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

    .hero-slides {
        min-height: 720px;
    }

    .page-hero > div,
    .detail-inner {
        padding: 46px 16px;
    }

    .article-card,
    .side-card,
    .ranking-card,
    .hero-search-card {
        padding: 20px;
        border-radius: 22px;
    }

    .rank-item {
        grid-template-columns: 28px 50px minmax(0, 1fr);
    }
}
