* {
    box-sizing: border-box;
}

:root {
    --color-amber: #f59e0b;
    --color-orange: #f97316;
    --color-amber-dark: #92400e;
    --color-cream: #fff7ed;
    --color-soft: #fffbeb;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-border: #f3e8d7;
    --shadow-soft: 0 18px 45px rgba(146, 64, 14, 0.12);
    --shadow-card: 0 12px 30px rgba(31, 41, 55, 0.12);
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 38%, #fffaf0 100%);
}

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;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.14);
    box-shadow: 0 8px 24px rgba(146, 64, 14, 0.08);
}

.header-inner {
    min-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;
    color: #111827;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.brand-name {
    font-size: 24px;
    background: linear-gradient(135deg, #d97706, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

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

.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
    color: #b45309;
    background: #fffbeb;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fffbeb;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #92400e;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
}

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

.mobile-link {
    display: block;
    padding: 12px 16px;
}

.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 48%, #fde68a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.1);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.75), transparent 30%), linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 251, 235, 0.58), rgba(255, 237, 213, 0.52));
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 44px;
    padding: 58px 0;
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #111827;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: #d97706;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 34px;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.8;
    color: #4b5563;
}

.hero-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(146, 64, 14, 0.1);
}

.hero-actions,
.center-action {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px) scale(1.01);
}

.button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.button.ghost {
    color: #b45309;
    background: rgba(255, 255, 255, 0.84);
    border: 2px solid rgba(245, 158, 11, 0.58);
}

.button.light {
    color: #b45309;
    background: #ffffff;
}

.hero-panel {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-feature {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    border-radius: 24px;
}

.hero-feature img,
.hero-mini-card img,
.category-tile img,
.movie-poster img,
.category-cover img,
.rank-cover img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.hero-panel h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.hero-panel p {
    margin: 0 0 16px;
    color: #6b7280;
    line-height: 1.75;
}

.hero-mini-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-mini-card {
    position: relative;
    min-height: 96px;
    overflow: hidden;
    border-radius: 18px;
    background: #111827;
}

.hero-mini-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.hero-mini-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    z-index: 1;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
}

.feature-strip {
    padding: 32px 0;
    background: #ffffff;
}

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

.feature-item {
    padding: 28px 20px;
    text-align: center;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
}

.feature-item span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 24px;
    font-weight: 900;
    border-radius: 999px;
    background: #fef3c7;
}

.feature-item strong,
.feature-item small {
    display: block;
}

.feature-item strong {
    margin: 14px 0 6px;
    font-size: 18px;
}

.feature-item small {
    color: #6b7280;
}

.page-section {
    padding: 76px 0;
}

.soft-bg {
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #111827;
}

.section-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fef3c7;
}

.movie-poster img {
    transition: transform 0.5s ease;
}

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

.movie-badge,
.movie-score {
    position: absolute;
    z-index: 1;
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.movie-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 12px;
    background: rgba(245, 158, 11, 0.92);
}

.movie-score {
    left: 12px;
    bottom: 12px;
    padding: 7px 11px;
    background: rgba(17, 24, 39, 0.76);
}

.movie-info {
    padding: 18px;
}

.movie-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover {
    color: #d97706;
}

.movie-meta,
.movie-line {
    margin: 0 0 10px;
    color: #6b7280;
    line-height: 1.65;
}

.movie-meta {
    font-size: 13px;
}

.movie-line {
    min-height: 52px;
    font-size: 14px;
}

.movie-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-tags span,
.tag-cloud span {
    padding: 5px 9px;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    background: #fffbeb;
}

.center-action {
    justify-content: center;
    margin-top: 34px;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 18px;
    color: #ffffff;
    border-radius: 24px;
    background: #111827;
    box-shadow: var(--shadow-soft);
}

.category-tile img,
.category-overlay {
    position: absolute;
    inset: 0;
}

.category-tile img {
    transition: transform 0.5s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.category-tile strong,
.category-tile small {
    position: relative;
    z-index: 1;
}

.category-tile strong {
    font-size: 22px;
}

.category-tile small {
    margin-top: 8px;
    opacity: 0.9;
    line-height: 1.5;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.ranking-head span,
.rank-number,
.rank-large {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.ranking-head span {
    padding: 7px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}

.ranking-head h2 {
    flex: 1;
    margin: 0;
    font-size: 28px;
}

.ranking-head a,
.text-link {
    color: #d97706;
    font-weight: 800;
}

.ranking-list {
    display: grid;
    gap: 10px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #fffbeb;
}

.rank-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 900;
}

.rank-title,
.rank-meta {
    display: block;
}

.rank-title {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: #6b7280;
    font-size: 13px;
}

.cta-panel {
    padding: 58px;
    text-align: center;
    color: #ffffff;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 24px 48px rgba(249, 115, 22, 0.25);
}

.cta-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
}

.cta-panel p {
    max-width: 760px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.92;
}

.sub-hero {
    padding: 82px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.sub-hero span {
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.84;
}

.sub-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 58px);
}

.sub-hero p {
    max-width: 820px;
    margin: 0;
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.94;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-cover {
    height: 240px;
    overflow: hidden;
    border-radius: 20px;
    background: #fef3c7;
}

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

.category-overview-card p {
    color: #6b7280;
    line-height: 1.75;
}

.category-overview-card strong {
    display: inline-block;
    margin-bottom: 14px;
    color: #d97706;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.category-samples span {
    padding: 6px 10px;
    color: #92400e;
    border-radius: 999px;
    background: #fffbeb;
    font-size: 12px;
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(120px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #92400e;
    font-size: 13px;
    font-weight: 850;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: #374151;
    border: 1px solid #fde68a;
    border-radius: 14px;
    background: #fffbeb;
    outline: none;
}

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

.result-count {
    margin: 0 0 24px;
    color: #6b7280;
    font-size: 17px;
}

.result-count strong {
    color: #d97706;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 70px 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.rank-large {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: 900;
}

.rank-cover {
    height: 150px;
    overflow: hidden;
    border-radius: 18px;
    background: #fef3c7;
}

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

.rank-content p {
    margin: 0 0 12px;
    color: #6b7280;
    line-height: 1.7;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rank-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    font-size: 13px;
    font-weight: 750;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 72px;
    color: #ffffff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: blur(2px) saturate(1.1);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72), rgba(146, 64, 14, 0.44));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fef3c7;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
    aspect-ratio: 3 / 4;
}

.detail-poster span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.94);
    font-weight: 900;
}

.detail-intro h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.06;
}

.detail-line {
    max-width: 860px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.8;
}

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

.detail-meta div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.detail-meta dd {
    margin: 5px 0 0;
    font-weight: 850;
}

.detail-intro .tag-cloud {
    margin-bottom: 28px;
}

.detail-intro .tag-cloud span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.player-section {
    padding-top: 48px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #030712;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
}

.video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.68));
    cursor: pointer;
}

.player-overlay span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
    font-size: 24px;
}

.player-overlay small {
    opacity: 0.78;
}

.video-shell.is-playing .player-overlay {
    display: none;
}

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

.content-card {
    padding: 32px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

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

.content-card p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 2;
}

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

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f3e8d7;
}

.info-list span {
    color: #6b7280;
}

.info-list a,
.info-list strong {
    color: #92400e;
    text-align: right;
}

.sitemap-layout {
    display: grid;
    gap: 24px;
}

.sitemap-group {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.sitemap-group h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.sitemap-group h2 span {
    color: #d97706;
    font-size: 16px;
}

.sitemap-group ul {
    columns: 4 220px;
    gap: 28px;
    margin: 0;
    padding-left: 18px;
}

.sitemap-group li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.sitemap-group a:hover {
    color: #d97706;
}

.sitemap-group small {
    color: #9ca3af;
}

.site-footer {
    color: #fffbeb;
    background: linear-gradient(180deg, #92400e 0%, #451a03 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 54px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    color: #fde68a;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fef3c7;
    font-size: 18px;
}

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

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .home-grid,
    .catalog-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .mobile-menu-button {
        display: block;
    }

    .hero-content,
    .detail-grid,
    .category-overview-card,
    .rank-card {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .feature-grid,
    .home-grid,
    .catalog-grid,
    .small-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid,
    .detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rank-cover {
        height: 220px;
    }
}

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

    .hero-section,
    .hero-content {
        min-height: 560px;
    }

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

    .feature-grid,
    .home-grid,
    .catalog-grid,
    .small-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid,
    .detail-meta,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .page-section {
        padding: 52px 0;
    }

    .content-card,
    .cta-panel {
        padding: 24px;
        border-radius: 22px;
    }

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

    .sitemap-group ul {
        columns: 1;
    }
}
