:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --shadow-soft: 0 20px 45px rgba(41, 37, 36, 0.14);
    --shadow-card: 0 12px 28px rgba(41, 37, 36, 0.12);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--stone-800);
    background: var(--stone-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-900), var(--orange-800), var(--amber-900));
    box-shadow: 0 10px 28px rgba(28, 25, 23, 0.22);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.82;
}

.logo-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--amber-900);
    background: var(--amber-200);
    border-radius: 999px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.logo-text {
    display: grid;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.logo-text em {
    color: var(--amber-200);
    font-size: 12px;
    font-style: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
}

.main-nav a {
    position: relative;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--amber-200);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    color: #ffffff;
    background: var(--stone-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1200ms ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 720px;
    padding-top: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--amber-200);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

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

.hero-tags {
    margin-bottom: 30px;
}

.hero-tags a,
.hero-tags span,
.detail-meta a,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.btn-primary,
.btn-ghost,
.btn-outline,
.quick-search button,
.sub-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.quick-search button {
    color: #ffffff;
    background: var(--amber-600);
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
}

.btn-primary:hover,
.quick-search button:hover {
    background: var(--amber-700);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--amber-800);
    background: #ffffff;
    border: 1px solid var(--amber-200);
}

.btn-outline:hover {
    color: #ffffff;
    background: var(--amber-700);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.search-band {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-900), var(--orange-900));
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 28px;
    align-items: center;
    padding: 28px 0;
}

.search-band h2 {
    margin: 0 0 6px;
    font-size: 24px;
}

.search-band p {
    margin: 0;
    color: var(--amber-100);
}

.quick-search {
    display: flex;
    gap: 10px;
}

.quick-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: var(--stone-800);
    background: #ffffff;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--amber-800);
    font-weight: 800;
    background: var(--amber-100);
    border-radius: 12px;
}

.section-heading h2 {
    margin: 0;
    color: var(--stone-800);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.section-heading p {
    margin: 4px 0 0;
    color: var(--stone-500);
}

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

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

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

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

.movie-card {
    display: grid;
    overflow: hidden;
    color: inherit;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    box-shadow: 0 24px 48px rgba(41, 37, 36, 0.18);
    transform: translateY(-6px);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--stone-200);
}

.movie-card-small .poster-wrap {
    aspect-ratio: 16 / 10;
}

.movie-card-large .poster-wrap {
    aspect-ratio: 21 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.card-type {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    color: #ffffff;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.64);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.hover-line {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: -webkit-box;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: opacity 0.25s ease;
}

.movie-card:hover .hover-line {
    opacity: 1;
}

.card-info {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.card-info strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 48px;
    color: var(--stone-800);
    font-size: 16px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.2s ease;
}

.movie-card:hover .card-info strong {
    color: var(--amber-700);
}

.card-info em {
    display: block;
    overflow: hidden;
    color: var(--stone-500);
    font-size: 13px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-info span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--stone-500);
    font-size: 12px;
}

.card-info b,
.card-info i {
    overflow: hidden;
    font-weight: 500;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tinted-section {
    background: linear-gradient(180deg, var(--amber-50), var(--stone-50));
}

.soft-section {
    background: linear-gradient(180deg, var(--stone-100), #ffffff);
}

.editor-section {
    color: #ffffff;
    background: linear-gradient(180deg, var(--amber-900), var(--orange-900));
}

.editor-section .section-heading h2,
.editor-section .section-heading p {
    color: #ffffff;
}

.editor-section .section-heading > span {
    color: var(--amber-900);
    background: var(--amber-300);
}

.editor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.editor-side {
    display: grid;
    gap: 24px;
}

.mt-grid {
    margin-top: 24px;
}

.pill-row {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.pill-button {
    min-height: 42px;
    padding: 0 20px;
    color: var(--stone-700);
    white-space: nowrap;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid var(--stone-200);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pill-button.is-active,
.pill-button:hover {
    color: #ffffff;
    background: var(--amber-600);
    border-color: var(--amber-600);
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.24);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.compact-rank,
.rank-table {
    display: grid;
    gap: 12px;
}

.compact-rank a,
.rank-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid var(--stone-200);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(41, 37, 36, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-rank a:hover,
.rank-row:hover {
    border-color: var(--amber-300);
    transform: translateY(-2px);
}

.compact-rank span,
.rank-num {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #ffffff;
    font-weight: 800;
    background: var(--amber-600);
    border-radius: 999px;
}

.compact-rank strong,
.rank-title strong {
    overflow: hidden;
    color: var(--stone-800);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-rank em,
.rank-title em,
.rank-meta {
    overflow: hidden;
    color: var(--stone-500);
    font-size: 13px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.center-actions {
    justify-content: center;
    margin-top: 28px;
}

.sub-hero {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(154, 52, 18, 0.96)), radial-gradient(circle at 20% 20%, rgba(252, 211, 77, 0.32), transparent 34%);
}

.sub-hero .container {
    padding: 64px 0;
}

.sub-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

.sub-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--amber-100);
    font-size: 18px;
}

.sub-actions {
    margin-top: 24px;
}

.sub-actions a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.category-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.category-card-main {
    display: block;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-900), var(--orange-800));
}

.category-card-main span {
    display: block;
    margin-bottom: 10px;
    color: var(--amber-200);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.category-card-main strong {
    display: block;
    font-size: 18px;
    line-height: 1.7;
}

.category-samples {
    display: grid;
    gap: 10px;
    padding: 18px 28px 24px;
}

.category-samples a {
    overflow: hidden;
    color: var(--stone-700);
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.category-samples a:hover {
    color: var(--amber-700);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 160px 160px;
    gap: 12px;
    padding: 16px;
    margin-bottom: 26px;
    background: #ffffff;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 28px rgba(41, 37, 36, 0.08);
}

.all-grid .movie-card.is-hidden,
.rank-table .rank-row.is-hidden {
    display: none;
}

.rank-row {
    grid-template-columns: 48px 112px minmax(0, 1fr) auto;
    padding: 12px;
}

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

.rank-title {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 28px;
    padding-top: 32px;
}

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

.breadcrumb a:hover {
    color: var(--amber-700);
}

.breadcrumb em {
    overflow: hidden;
    max-width: 520px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.movie-video,
.player-cover,
.player-cover-bg,
.player-cover-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    z-index: 1;
    background: #000000;
}

.player-cover {
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    background: #000000;
    border: 0;
}

.player-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.player-cover-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: saturate(1.08);
}

.player-cover-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.player-play {
    position: relative;
    z-index: 4;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    margin-bottom: 80px;
    font-size: 34px;
    background: var(--amber-600);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.player-cover strong {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 4;
    overflow: hidden;
    font-size: clamp(22px, 4vw, 38px);
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.player-loading {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    place-items: center;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.26);
}

.player-loading.is-active {
    display: grid;
}

.player-loading span {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255, 255, 255, 0.36);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: spin 0.9s linear infinite;
}

.player-error {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    display: none;
    padding: 12px 14px;
    color: #ffffff;
    text-align: center;
    background: rgba(120, 53, 15, 0.88);
    border-radius: 12px;
}

.player-error.is-active {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.detail-card,
.side-card {
    padding: 26px;
    margin-top: 22px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.detail-card h1 {
    margin: 0 0 16px;
    color: var(--stone-800);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

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

.detail-meta a,
.detail-meta span,
.tag-row span {
    color: var(--amber-800);
    background: var(--amber-50);
    border-color: var(--amber-200);
}

.detail-card h2,
.side-card h2 {
    margin: 26px 0 12px;
    color: var(--stone-800);
    font-size: 22px;
}

.detail-card p {
    margin: 0 0 16px;
    color: var(--stone-600);
    font-size: 16px;
}

.detail-card .lead-text {
    color: var(--stone-700);
    font-size: 18px;
    font-weight: 700;
}

.tag-row {
    padding-top: 16px;
    margin-top: 22px;
    border-top: 1px solid var(--stone-200);
}

.detail-side {
    min-width: 0;
}

.side-card {
    position: sticky;
    top: 92px;
    margin-top: 40px;
}

.side-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
}

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

.side-card dt {
    color: var(--stone-500);
}

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

.related-section {
    padding-top: 36px;
}

.site-footer {
    margin-top: 54px;
    color: var(--stone-200);
    background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
}

.footer-logo span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--amber-900);
    background: var(--amber-300);
    border-radius: 999px;
}

.site-footer p,
.site-footer li {
    color: var(--stone-400);
    font-size: 14px;
}

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

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

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

.footer-bottom {
    padding: 18px 16px;
    color: var(--stone-500);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
    .four-col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .side-card {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 820px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 16px 16px;
        background: var(--amber-800);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 8px;
    }

    .main-nav a::after {
        display: none;
    }

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

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.88));
    }

    .hero-copy {
        padding-top: 160px;
    }

    .hero-arrow {
        display: none;
    }

    .search-band-inner,
    .editor-grid,
    .filter-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-search {
        flex-direction: column;
    }

    .four-col,
    .three-col,
    .six-col,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .rank-meta {
        display: none;
    }
}

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

    .logo-text em {
        display: none;
    }

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

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

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

    .four-col,
    .three-col,
    .six-col,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .compact-rank a {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .compact-rank em {
        grid-column: 2;
    }

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

    .player-play {
        width: 68px;
        height: 68px;
        margin-bottom: 56px;
    }
}
