:root {
    --rose: #f43f5e;
    --rose-dark: #be123c;
    --pink: #ec4899;
    --text: #111827;
    --muted: #6b7280;
    --line: #f2d7dc;
    --soft: #fff1f2;
    --bg: #fff8f9;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(244, 63, 94, 0.14);
    --shadow-strong: 0 28px 80px rgba(17, 24, 39, 0.24);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, var(--bg) 42%, #fff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 10px 22px rgba(244, 63, 94, 0.28);
    font-size: 14px;
}

.brand-name {
    font-size: 24px;
    background: linear-gradient(135deg, var(--rose-dark), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 650;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--rose);
    background: rgba(244, 63, 94, 0.08);
}

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

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--rose);
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(244, 63, 94, 0.12);
}

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

.mobile-nav {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(244, 63, 94, 0.12);
}

.hero {
    position: relative;
    height: min(620px, calc(100vh - 72px));
    min-height: 500px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img,
.page-hero > img,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 30%, rgba(244, 63, 94, 0.55), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(690px, 100%);
    color: #fff;
    animation: rise 0.7s ease both;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: #fecdd3;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-row,
.genre-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.genre-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--rose-dark);
    background: #ffe4e6;
    font-size: 12px;
    font-weight: 750;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn,
.outline-btn,
.text-link,
.mini-play,
.back-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 16px 34px rgba(244, 63, 94, 0.35);
}

.ghost-btn {
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.outline-btn:hover,
.mini-play:hover,
.back-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(244, 63, 94, 0.22);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 8;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

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

.section-head {
    margin-bottom: 26px;
}

.section-head.centered {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--rose-dark), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head p:not(.section-kicker) {
    margin: 10px 0 0;
    color: var(--muted);
}

.text-link {
    color: var(--rose);
    white-space: nowrap;
}

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

.channel-card {
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: var(--radius);
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel-card::after {
    content: "";
    position: absolute;
    inset: auto -28px -42px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(244, 63, 94, 0.2);
}

.channel-icon {
    font-size: 36px;
}

.channel-name {
    font-size: 20px;
    font-weight: 900;
}

.channel-desc,
.channel-more {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.rose { background: linear-gradient(135deg, #fb7185, #e11d48); }
.pink { background: linear-gradient(135deg, #f472b6, #db2777); }
.orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.violet { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.fuchsia { background: linear-gradient(135deg, #e879f9, #c026d3); }
.blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.emerald { background: linear-gradient(135deg, #34d399, #059669); }
.cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.lime { background: linear-gradient(135deg, #a3e635, #65a30d); }

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(244, 63, 94, 0.12);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 63, 94, 0.32);
    box-shadow: var(--shadow);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4e6, #fff1f2);
}

.poster img,
.rank-poster img,
.detail-poster img,
.side-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease;
}

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

.poster::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.46);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 18px;
}

.movie-card.compact .card-body {
    padding: 14px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
}

.meta-line span {
    display: inline-flex;
    align-items: center;
}

.meta-line span + span::before {
    content: "·";
    margin-right: 8px;
    color: #fda4af;
}

.movie-card h2,
.rank-content h2,
.content-card h2,
.side-card h2,
.category-overview-head h2 {
    margin: 8px 0 8px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.28;
    font-weight: 900;
}

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

.movie-card h2 a:hover,
.rank-content h2 a:hover,
.category-overview-head h2 a:hover {
    color: var(--rose);
}

.movie-card p,
.rank-content p,
.content-card p,
.side-card p,
.site-footer p,
.category-overview-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.tag-row {
    margin-top: 12px;
}

.soft-panel {
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fff, #fff1f2);
    box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.08);
}

.page-hero,
.detail-hero {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    background: #111827;
}

.small-hero {
    min-height: 310px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 18% 24%, rgba(244, 63, 94, 0.55), transparent 32%),
        linear-gradient(135deg, #111827, #4c0519 55%, #831843);
}

.page-hero-shade,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(244, 63, 94, 0.45), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12));
}

.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.category-overview-list {
    display: grid;
    gap: 26px;
    padding: 56px 0;
}

.category-overview-card {
    padding: 24px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

.category-overview-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.category-symbol {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 30px;
}

.outline-btn,
.back-top {
    min-height: 42px;
    padding: 0 18px;
    color: var(--rose);
    border: 1px solid rgba(244, 63, 94, 0.26);
    background: #fff;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px 170px;
    gap: 14px;
    margin: 0 0 24px;
    padding: 16px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    color: var(--text);
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: 14px;
    background: #fff7f8;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(244, 63, 94, 0.65);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 72px 88px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-num {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.25);
}

.rank-poster {
    display: block;
    width: 88px;
    height: 118px;
    overflow: hidden;
    border-radius: 16px;
    background: #ffe4e6;
}

.rank-content h2 {
    margin-top: 4px;
}

.mini-play {
    min-height: 40px;
    padding: 0 17px;
    color: #fff;
    background: var(--text);
}

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

.detail-bg {
    position: absolute;
    inset: 0;
    filter: blur(4px) saturate(1.1);
    transform: scale(1.04);
}

.detail-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 560px;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 42px;
    align-items: center;
    color: #fff;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
    background: #ffe4e6;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fff;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
}

.detail-tags span {
    color: #fff;
    background: rgba(244, 63, 94, 0.58);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    padding: 44px 0 0;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
    align-content: start;
}

.player-card,
.content-card,
.side-card {
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111827;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #111827;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    color: #fff;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(244, 63, 94, 0.28), rgba(0, 0, 0, 0.36)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
    cursor: pointer;
}

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

.play-circle {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rose);
    background: #fff;
    font-size: 28px;
    box-shadow: 0 20px 55px rgba(244, 63, 94, 0.35);
}

.content-card,
.side-card {
    padding: 24px;
}

.content-card h2,
.side-card h2 {
    margin-top: 0;
    font-size: 24px;
}

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

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

.info-grid div {
    padding: 14px;
    border-radius: 16px;
    background: #fff7f8;
}

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

.info-grid strong {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
}

.info-grid a {
    color: var(--rose);
    font-weight: 800;
}

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

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

.side-list a {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7f8;
    transition: transform 0.2s ease, background 0.2s ease;
}

.side-list a:hover {
    transform: translateX(4px);
    background: #ffe4e6;
}

.side-list img {
    height: 94px;
    border-radius: 14px;
    background: #ffe4e6;
}

.side-list span {
    display: grid;
    gap: 6px;
    font-weight: 850;
}

.side-list small {
    color: var(--muted);
    font-weight: 650;
}

.site-footer {
    margin-top: 68px;
    background: linear-gradient(180deg, #fff, #fff1f2);
    border-top: 1px solid rgba(244, 63, 94, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 44px 0;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 16px;
}

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

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

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

.footer-bottom {
    padding: 18px 0 24px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid rgba(244, 63, 94, 0.1);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

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

    .hero {
        min-height: 560px;
    }

    .hero h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 40px;
    }

    .channel-grid,
    .feature-grid,
    .dense-grid,
    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head.between,
    .category-overview-head {
        align-items: flex-start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 48px 72px 1fr;
    }

    .mini-play {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .detail-hero-inner {
        grid-template-columns: 1fr;
        padding: 42px 0;
    }

    .detail-poster {
        width: min(260px, 76vw);
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1200px);
    }

    .brand-name {
        font-size: 20px;
    }

    .header-inner {
        height: 64px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .channel-grid,
    .feature-grid,
    .dense-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .soft-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .rank-row {
        grid-template-columns: 42px 64px 1fr;
        gap: 10px;
        padding: 10px;
    }

    .rank-poster {
        width: 64px;
        height: 88px;
    }

    .rank-num {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 13px;
    }

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