* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: #f8fafc;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    color: #ffffff;
    background: linear-gradient(90deg, #f97316, #ef4444, #ec4899);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.24);
}

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

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #f97316;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transform: rotate(-8deg);
}

.logo-text {
    font-size: 24px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover {
    color: #fef08a;
    opacity: 1;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input {
    width: 240px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 9px 14px;
    outline: none;
    backdrop-filter: blur(10px);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

.header-search button,
.mobile-search button {
    color: #b91c1c;
    font-weight: 700;
    background: #fef08a;
    border: 0;
    border-radius: 999px;
    padding: 9px 15px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 20px;
}

.mobile-nav {
    padding: 12px 16px 18px;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.mobile-nav a {
    display: block;
    padding: 9px 0;
}

.mobile-search {
    margin-bottom: 8px;
}

.mobile-search input {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.hero-stage {
    position: relative;
    height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 150px solid rgba(249, 115, 22, 0.86);
    border-left: 150px solid transparent;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
    color: #ffffff;
}

.hero-kicker,
.detail-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    background: #f97316;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.26);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 7vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.hero p,
.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 30px;
}

.hero-tags span,
.tag-list span {
    padding: 8px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

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

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

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(90deg, #f97316, #ef4444);
    box-shadow: 0 16px 28px rgba(239, 68, 68, 0.28);
}

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

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 136px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dots button.is-active {
    width: 28px;
    background: #f97316;
}

.hero-strip {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
    margin-top: -92px;
    margin-bottom: 34px;
}

.hero-search-card,
.hero-thumbs,
.filter-panel,
.side-panel,
.detail-article {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(16px);
}

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

.hero-search-card h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.hero-search-card p {
    margin: 0 0 18px;
    color: #4b5563;
}

.hero-search-card form {
    display: flex;
    gap: 10px;
}

.hero-search-card input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px 14px;
    outline: none;
    background: #ffffff;
}

.hero-search-card button {
    flex: 0 0 auto;
    color: #ffffff;
    font-weight: 800;
    background: #f97316;
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 14px;
}

.hero-thumbs a {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border-radius: 18px;
    background: #111827;
}

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

.hero-thumbs a:hover img {
    transform: scale(1.08);
}

.hero-thumbs span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.stat-band {
    padding: 24px 0 10px;
}

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

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 124px;
    padding: 24px;
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.24);
}

.stat-card::after {
    content: "";
    position: absolute;
    top: -38px;
    right: -36px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.stat-card strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
}

.stat-card.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.stat-card.green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.stat-card.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.section {
    padding: 58px 0;
}

.white-section {
    background: #ffffff;
}

.soft-section {
    background: linear-gradient(135deg, #fff7ed, #ffffff, #f0f9ff);
}

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

.section-kicker {
    margin: 0 0 6px;
    color: #f97316;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-head h2,
.detail-article h2,
.side-panel h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.more-link {
    color: #f97316;
    font-weight: 900;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.movie-card.corner-right::before,
.movie-card.corner-left::before {
    content: "";
    position: absolute;
    z-index: 8;
    width: 0;
    height: 0;
}

.movie-card.corner-right::before {
    top: 0;
    right: 0;
    border-top: 34px solid #f97316;
    border-left: 34px solid transparent;
}

.movie-card.corner-left::before {
    left: 0;
    bottom: 0;
    border-bottom: 34px solid #f97316;
    border-right: 34px solid transparent;
}

.movie-thumb {
    position: relative;
    height: 224px;
    overflow: hidden;
    background: #111827;
}

.movie-card-small .movie-thumb {
    height: 168px;
}

.movie-card-large .movie-thumb {
    height: 330px;
}

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

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

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

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

.movie-chip,
.movie-year,
.rank-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.movie-chip {
    top: 12px;
    left: 12px;
    background: #f97316;
}

.movie-year {
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: 12px;
    bottom: 12px;
    background: linear-gradient(90deg, #facc15, #f97316);
}

.play-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #ffffff;
    font-size: 24px;
    background: #f97316;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    padding: 18px;
}

.movie-info h2,
.movie-info h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 850;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-info h2,
.movie-card:hover .movie-info h3 {
    color: #f97316;
}

.movie-info p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #4b5563;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #6b7280;
    font-size: 12px;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 18px;
}

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

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

.category-card,
.category-detail-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 24px;
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-detail-card {
    min-height: 220px;
    padding: 34px;
}

.category-card:hover,
.category-detail-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.24);
}

.category-glow {
    position: absolute;
    top: -40px;
    right: -48px;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    transition: transform 0.4s ease;
}

.category-card:hover .category-glow,
.category-detail-card:hover .category-glow {
    transform: scale(1.7);
}

.category-card h2,
.category-detail-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p,
.category-detail-card p,
.category-detail-card strong {
    position: relative;
    z-index: 2;
}

.category-card p,
.category-detail-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.category-detail-card strong {
    display: inline-flex;
    margin-top: 24px;
    padding: 9px 14px;
    color: #111827;
    background: #ffffff;
    border-radius: 999px;
}

.accent-orange,
.accent-red {
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

.accent-pink {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}

.accent-purple {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.accent-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.accent-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.accent-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.accent-cyan {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.accent-slate {
    background: linear-gradient(135deg, #475569, #0f172a);
}

.accent-indigo {
    background: linear-gradient(135deg, #6366f1, #312e81);
}

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

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

.ranking-section {
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.ranking-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 36px;
    align-items: center;
}

.ranking-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
}

.ranking-copy p {
    margin: 0 0 24px;
    color: #d1d5db;
}

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

.ranking-list a {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ranking-list a:hover {
    transform: translateX(5px);
    background: rgba(249, 115, 22, 0.2);
}

.ranking-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #111827;
    font-weight: 900;
    background: #facc15;
    border-radius: 999px;
}

.ranking-list em {
    color: #d1d5db;
    font-style: normal;
    font-size: 13px;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    padding: 76px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
}

.page-hero h1 {
    max-width: 860px;
}

.orange-hero {
    background: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
}

.dark-hero {
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.36), transparent 30%), linear-gradient(135deg, #111827, #1f2937);
}

.search-hero {
    background: linear-gradient(135deg, #0f172a, #334155, #f97316);
}

.category-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

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

.category-mini-covers a {
    position: relative;
    overflow: hidden;
    height: 135px;
    border-radius: 18px;
    background: #111827;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.category-mini-covers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-mini-covers span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    text-shadow: 0 2px 10px #000000;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.empty-state {
    margin-top: 24px;
    padding: 28px;
    color: #6b7280;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.detail-hero {
    padding: 26px 0 58px;
    color: #ffffff;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.38), transparent 32%), linear-gradient(135deg, #111827, #1f2937 55%, #0f172a);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #d1d5db;
    font-size: 14px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 30px;
    align-items: start;
}

.player-panel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.site-video {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: #000000;
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.player-start {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    color: #ffffff;
    font-size: 34px;
    background: #f97316;
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.36);
    transform: translate(-50%, -50%);
}

.detail-copy h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.detail-one-line {
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 17px;
}

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

.detail-meta div {
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.detail-meta dt {
    color: #9ca3af;
    font-size: 12px;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: #ffffff;
    font-weight: 800;
}

.detail-section {
    padding-top: 42px;
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
}

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

.detail-article h2 {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-article p {
    margin: 0 0 26px;
    color: #374151;
    font-size: 16px;
    line-height: 1.9;
}

.side-panel h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.side-panel a {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 800;
}

.side-panel a:hover {
    color: #f97316;
}

.side-panel span {
    color: #f97316;
    font-size: 13px;
}

.site-footer {
    padding: 54px 0 38px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
}

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

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

.site-footer p {
    margin: 0;
    color: #9ca3af;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

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

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 12px;
        font-size: 14px;
    }

    .header-search input {
        width: 190px;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .hero-stage {
        height: 560px;
    }

    .hero-strip,
    .ranking-layout,
    .editor-grid,
    .category-hero-grid,
    .detail-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-strip {
        margin-top: -54px;
    }

    .hero-controls {
        bottom: 108px;
    }

    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview-grid,
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .logo-text {
        font-size: 20px;
    }

    .hero-stage {
        height: 620px;
    }

    .hero-content {
        align-items: flex-start;
        padding-top: 70px;
    }

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

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-controls {
        bottom: 184px;
    }

    .hero-strip {
        margin-top: -144px;
    }

    .hero-thumbs,
    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview-grid,
    .stat-grid,
    .category-mini-covers,
    .filter-panel,
    .detail-meta {
        grid-template-columns: 1fr;
    }

    .hero-thumbs a {
        min-height: 118px;
    }

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

    .movie-thumb {
        height: 250px;
    }

    .ranking-list a {
        grid-template-columns: 40px 1fr;
    }

    .ranking-list em {
        grid-column: 2;
    }

    .detail-hero {
        padding-top: 18px;
    }
}
