:root {
    --bg: #fff8ed;
    --bg-soft: #fffbeb;
    --text: #2f1b05;
    --muted: #7c5a2f;
    --line: rgba(146, 64, 14, 0.18);
    --card: rgba(255, 255, 255, 0.92);
    --card-strong: #ffffff;
    --amber: #d97706;
    --amber-dark: #92400e;
    --gold: #f59e0b;
    --shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
    --shadow-soft: 0 12px 30px rgba(120, 53, 15, 0.10);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.14), transparent 32rem), linear-gradient(180deg, #fffbeb 0%, #fff7ed 42%, #fef3c7 100%);
    min-height: 100vh;
}

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

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

main {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(254, 243, 199, 0.92));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
}

.nav-shell {
    max-width: 1240px;
    margin: 0 auto;
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.34);
    transform: rotate(-8deg);
}

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

.brand-copy strong {
    font-size: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--amber-dark), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    color: var(--amber-dark);
    font-size: 12px;
    margin-top: 3px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--amber);
    transform: translateY(-1px);
}

.top-search,
.mobile-search,
.hero-search-card form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.mobile-search input,
.hero-search-card input,
.filter-bar input {
    border: 2px solid rgba(245, 158, 11, 0.32);
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.68);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
    width: 220px;
}

.top-search input:focus,
.mobile-search input:focus,
.hero-search-card input:focus,
.filter-bar input:focus {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.top-search button,
.mobile-search button,
.hero-search-card button,
.btn,
.filter-chips button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.hero-search-card button:hover,
.btn:hover,
.filter-chips button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.14);
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--amber-dark);
}

.mobile-panel {
    display: none;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--line);
}

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

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.mobile-link {
    padding: 12px 4px;
    font-weight: 800;
    color: var(--amber-dark);
}

.mobile-link.active {
    color: var(--amber);
}

.hero {
    position: relative;
    min-height: 690px;
    color: #ffffff;
    background: #451a03;
}

.hero-stage {
    position: relative;
    min-height: 690px;
    max-width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
}

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

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

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

.hero-shade {
    background: radial-gradient(circle at 65% 38%, rgba(251, 191, 36, 0.2), transparent 18rem), linear-gradient(90deg, rgba(69, 26, 3, 0.92) 0%, rgba(69, 26, 3, 0.74) 39%, rgba(69, 26, 3, 0.22) 100%), linear-gradient(0deg, rgba(69, 26, 3, 0.82), transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 86px 24px 160px;
}

.hero-content {
    width: min(680px, 100%);
}

.hero-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
    font-size: 13px;
}

.hero h1,
.hero h2 {
    margin: 0;
    font-size: clamp(44px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.hero-text {
    margin: 24px 0 0;
    color: rgba(255, 251, 235, 0.92);
    line-height: 1.9;
    font-size: 17px;
    max-width: 650px;
}

.hero-tags,
.tag-row,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.card-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.hero-panel {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - 1240px) / 2 + 24px));
    bottom: 54px;
    width: min(440px, calc(100% - 48px));
    display: grid;
    gap: 16px;
}

.hero-search-card,
.hero-rank-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 251, 235, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
}

.hero-search-card p {
    margin: 0 0 12px;
    font-weight: 900;
}

.hero-search-card input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.86);
}

.hero-pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-pill-row a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fffbeb;
    font-size: 12px;
    font-weight: 800;
}

.rank-card-head,
.section-head,
.card-meta,
.rank-row,
.rank-large-item a {
    display: flex;
    align-items: center;
}

.rank-card-head {
    justify-content: space-between;
    margin-bottom: 8px;
}

.rank-card-head a,
.more-link {
    color: var(--gold);
    font-weight: 900;
}

.rank-mini-item {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    color: rgba(255, 251, 235, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-mini-item span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.88);
    font-weight: 900;
}

.rank-mini-item strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-mini-item em {
    color: #fcd34d;
    font-style: normal;
    font-weight: 900;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 28px;
    background: var(--gold);
}

.category-strip,
.section,
.page-hero,
.detail-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    transform: translateY(-34px);
    position: relative;
    z-index: 6;
}

.category-strip a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 20px;
    color: #78350f;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(245, 158, 11, 0.18);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-strip a:hover,
.category-card:hover,
.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-strip strong {
    font-size: 18px;
}

.category-strip span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding-top: 38px;
    padding-bottom: 48px;
}

.section-head {
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-head h2,
.page-hero h1,
.detail-info-card h1,
.detail-copy h2 {
    margin: 0;
    letter-spacing: -0.04em;
    color: #3b2208;
}

.section-head h2,
.page-hero h1 {
    font-size: clamp(30px, 5vw, 52px);
}

.section-head p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.7;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(245, 158, 11, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(120, 53, 15, 0.20));
}

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

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

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(69, 26, 3, 0.78), rgba(69, 26, 3, 0.08));
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover::after {
    opacity: 1;
}

.movie-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%) scale(0.9);
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.movie-card:hover .movie-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-score {
    position: absolute;
    z-index: 3;
    right: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.94);
    font-size: 12px;
    font-weight: 900;
}

.movie-body {
    padding: 18px;
}

.movie-body h3 {
    margin: 0 0 10px;
    color: #301a04;
    font-size: 20px;
    line-height: 1.3;
}

.movie-body h3 a:hover {
    color: var(--amber);
}

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

.card-meta {
    gap: 6px;
    margin-bottom: 12px;
}

.card-meta span,
.tag-row span,
.detail-meta span {
    color: #92400e;
    background: rgba(245, 158, 11, 0.12);
}

.tag-row {
    gap: 7px;
}

.tag-row span {
    font-size: 11px;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rank-row {
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(245, 158, 11, 0.14);
    box-shadow: var(--shadow-soft);
}

.rank-row span,
.rank-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
}

.rank-row img {
    width: 72px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-row strong {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
}

.rank-row b {
    color: var(--amber);
}

.page-hero {
    padding-top: 70px;
    padding-bottom: 44px;
}

.slim-hero > div {
    padding: 42px;
    border-radius: 34px;
    color: #fff7ed;
    background: radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.38), transparent 24rem), linear-gradient(135deg, #78350f, #451a03);
    box-shadow: var(--shadow);
}

.slim-hero p:last-child {
    max-width: 760px;
    line-height: 1.8;
    color: rgba(255, 251, 235, 0.86);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card a {
    display: block;
    padding: 18px;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.category-thumbs img {
    height: 92px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.category-card h2 {
    margin: 0 0 8px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.filter-bar {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: var(--shadow-soft);
}

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

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

.filter-chips button {
    padding: 9px 12px;
    color: var(--amber-dark);
    background: rgba(245, 158, 11, 0.12);
    box-shadow: none;
}

.filter-chips button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
}

.empty-state {
    display: none;
    padding: 30px;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 20px;
}

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

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

.rank-large-item a {
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-large-item img {
    width: 160px;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
}

.rank-large-item div {
    flex: 1;
    min-width: 0;
}

.rank-large-item h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.rank-large-item p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.7;
}

.rank-large-item small {
    color: var(--amber-dark);
    font-weight: 800;
}

.rank-large-item b {
    font-size: 24px;
    color: var(--amber);
}

.detail-hero {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.breadcrumb a {
    color: var(--amber-dark);
    font-weight: 800;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 22px;
    align-items: stretch;
}

.player-card,
.detail-info-card,
.detail-copy article {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: var(--shadow);
}

.player-card {
    padding: 14px;
}

.player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
}

.player video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16), rgba(0, 0, 0, 0.45));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 42px;
    background: linear-gradient(135deg, var(--gold), var(--amber-dark));
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

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

.detail-info-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 20px;
}

.detail-info-card img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.detail-info-card h1 {
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.08;
    margin-bottom: 14px;
}

.detail-info-card p:not(.eyebrow) {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
}

.detail-meta {
    margin-bottom: 12px;
}

.detail-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.detail-copy article {
    padding: 26px;
}

.detail-copy h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.detail-copy p {
    margin: 0;
    color: #5f3d16;
    line-height: 2;
    font-size: 16px;
}

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


.site-footer {
    margin-top: 40px;
    color: #fffbeb;
    background: radial-gradient(circle at 78% 12%, rgba(245, 158, 11, 0.24), transparent 24rem), linear-gradient(135deg, #78350f, #451a03 72%);
}

.footer-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 46px 24px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}

.footer-main h2,
.footer-col h3 {
    margin: 0 0 14px;
    color: #fcd34d;
}

.footer-main p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 251, 235, 0.82);
    line-height: 1.8;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 251, 235, 0.82);
    font-weight: 700;
}

.footer-col a:hover {
    color: #fcd34d;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(255, 251, 235, 0.16);
    color: rgba(255, 251, 235, 0.72);
}

.footer-bottom p {
    margin: 0;
}

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

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

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

    .hero-panel {
        left: 24px;
        right: 24px;
        width: auto;
    }

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

@media (max-width: 760px) {
    .nav-shell {
        height: 70px;
        padding: 0 16px;
    }

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

    .hero,
    .hero-stage,
    .hero-inner {
        min-height: 760px;
    }

    .hero-inner {
        align-items: flex-start;
        padding: 58px 18px 280px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(38px, 14vw, 62px);
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-panel {
        bottom: 70px;
        left: 16px;
        right: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .category-strip,
    .card-grid,
    .category-grid,
    .rank-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .page-hero,
    .detail-hero,
    .category-strip {
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-strip {
        transform: translateY(-18px);
    }

    .section-head {
        display: grid;
    }

    .rank-large-item a {
        align-items: flex-start;
        gap: 12px;
    }

    .rank-large-item img {
        width: 104px;
        height: 78px;
    }

    .rank-large-item p {
        display: none;
    }

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

    .detail-info-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .play-overlay span {
        width: 72px;
        height: 72px;
        font-size: 34px;
    }

    .slim-hero > div {
        padding: 28px;
        border-radius: 26px;
    }
}


@media (max-width: 760px) {
    .footer-shell {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }
}
