:root {
    --brand-blue: #2563eb;
    --brand-blue-dark: #1d4ed8;
    --brand-teal: #0d9488;
    --text-main: #111827;
    --text-soft: #6b7280;
    --page-bg: #f9fafb;
    --card-bg: #ffffff;
    --border-soft: #e5e7eb;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 20px 55px rgba(15, 23, 42, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--page-bg);
    color: var(--text-main);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
}

.site-nav {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.brand-icon {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
    color: #ffffff;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.brand-text {
    font-size: 1.15rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link,
.mobile-nav-link {
    font-size: 0.94rem;
    font-weight: 700;
    color: #374151;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--brand-blue);
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: #f9fafb;
}

.header-search input {
    width: 11rem;
    padding: 0.55rem 0.9rem;
    color: #111827;
    outline: none;
}

.header-search button {
    padding: 0.55rem 0.9rem;
    background: var(--brand-blue);
    color: #ffffff;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
}

.mobile-menu-button span {
    display: block;
    width: 1.4rem;
    height: 2px;
    background: #111827;
}

.mobile-nav-panel {
    display: none;
    border-top: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 0.75rem 1rem 1rem;
}

.mobile-nav-panel.is-open {
    display: grid;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    border-radius: 0.8rem;
    padding: 0.75rem 1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    background: #eff6ff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #172554 100%);
    color: #ffffff;
}

.hero-section::before,
.hero-section::after {
    position: absolute;
    content: "";
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(2px);
}

.hero-section::before {
    top: -12rem;
    right: -8rem;
}

.hero-section::after {
    bottom: -14rem;
    left: -10rem;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 3rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 7rem;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.5rem, 6vw, 4.7rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 0.7rem;
    color: #bfdbfe;
}

.hero-copy p {
    max-width: 680px;
    margin-top: 1.5rem;
    color: #dbeafe;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    padding: 0.85rem 1.35rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-button {
    background: #ffffff;
    color: var(--brand-blue);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
}

.secondary-button {
    background: rgba(29, 78, 216, 0.85);
    color: #ffffff;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stat {
    min-height: 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-stat strong {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}

.hero-stat span {
    margin-top: 0.55rem;
    color: #bfdbfe;
}

.feature-strip {
    border-bottom: 1px solid var(--border-soft);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.feature-grid div {
    text-align: center;
}

.feature-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--brand-blue);
    font-weight: 900;
}

.feature-grid strong {
    display: block;
    margin-top: 1rem;
    font-weight: 800;
}

.feature-grid p {
    margin-top: 0.45rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.content-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

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

.gradient-section {
    background: linear-gradient(90deg, #2563eb, #0d9488);
    color: #ffffff;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.025em;
}

.section-heading p {
    margin-top: 0.4rem;
    color: var(--text-soft);
}

.section-heading.light p,
.section-action.light {
    color: #dbeafe;
}

.section-action {
    color: var(--brand-blue);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
}

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

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

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

.movie-poster-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 56%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

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

.movie-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-badge {
    top: 0.75rem;
    right: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.movie-play {
    left: 50%;
    top: 50%;
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-blue);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-card-body {
    padding: 1rem;
}

.movie-card-body h3 {
    overflow: hidden;
    display: -webkit-box;
    min-height: 1.5rem;
    color: #111827;
    font-weight: 800;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card-link:hover h3 {
    color: var(--brand-blue);
}

.movie-card-body p {
    overflow: hidden;
    display: -webkit-box;
    min-height: 2.8rem;
    margin-top: 0.5rem;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-row,
.rank-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.movie-meta-row {
    justify-content: space-between;
    margin-top: 0.9rem;
    color: #6b7280;
    font-size: 0.78rem;
}

.movie-meta-row span:first-child {
    border-radius: 999px;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.55rem;
    font-weight: 800;
}

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

.category-card {
    display: block;
    min-height: 12rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1.35rem;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.category-count {
    display: inline-flex;
    width: 3.8rem;
    height: 3.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #60a5fa, #14b8a6);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.category-card h3 {
    margin-top: 1rem;
    font-weight: 900;
}

.category-card p {
    margin-top: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.page-hero {
    background: linear-gradient(90deg, #2563eb, #0d9488);
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 760px;
    margin-top: 1rem;
    color: #dbeafe;
    font-size: 1.1rem;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #dbeafe;
    font-size: 0.9rem;
}

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

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

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

.category-overview-main {
    display: block;
    padding: 1.5rem;
}

.category-overview-main h2 {
    margin-top: 0.7rem;
    font-size: 1.45rem;
    font-weight: 900;
}

.category-overview-main p {
    margin-top: 0.45rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.category-overview-count {
    display: inline-flex;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--brand-blue);
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 900;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    border-top: 1px solid var(--border-soft);
    padding: 1rem;
}

.compact-card {
    display: grid;
    gap: 0.35rem;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 700;
}

.compact-card img {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
    border-radius: 0.7rem;
    background: #e5e7eb;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    background: #ffffff;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.search-filter {
    grid-template-columns: minmax(220px, 1fr) 180px 180px 180px auto;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    background: #f9fafb;
    padding: 0.8rem 0.9rem;
    color: #111827;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.filter-count {
    font-weight: 900;
    color: var(--brand-blue);
    white-space: nowrap;
}

.ranking-list {
    display: grid;
    gap: 1rem;
}

.rank-card a {
    display: grid;
    grid-template-columns: 4rem 9rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border-radius: 1rem;
    background: #ffffff;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-number {
    display: flex;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #ffffff;
    font-weight: 900;
}

.rank-card img {
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: 0.8rem;
    object-fit: cover;
    background: #e5e7eb;
}

.rank-card h2 {
    font-size: 1.15rem;
    font-weight: 900;
}

.rank-card p {
    overflow: hidden;
    display: -webkit-box;
    margin-top: 0.35rem;
    color: var(--text-soft);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    margin-top: 0.7rem;
}

.rank-meta span,
.detail-meta span {
    border-radius: 999px;
    background: #eff6ff;
    color: #1e40af;
    padding: 0.28rem 0.62rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.detail-main {
    background: #f9fafb;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 34rem;
    color: #ffffff;
}

.detail-backdrop,
.detail-overlay {
    position: absolute;
    inset: 0;
}

.detail-backdrop {
    background-position: center;
    background-size: cover;
    filter: blur(18px) saturate(1.2);
    transform: scale(1.12);
}

.detail-overlay {
    background: linear-gradient(90deg, rgba(10, 15, 30, 0.92), rgba(10, 15, 30, 0.76));
}

.detail-hero-inner {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.1rem;
    box-shadow: var(--shadow-strong);
}

.detail-poster img {
    aspect-ratio: 3 / 4;
    width: 100%;
    object-fit: cover;
    background: #111827;
}

.detail-info h1 {
    max-width: 850px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 850px;
    margin-top: 1rem;
    color: #dbeafe;
    font-size: 1.15rem;
    line-height: 1.8;
}

.detail-meta {
    margin-top: 1.2rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.detail-tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.35rem 0.7rem;
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 800;
}

.player-card {
    overflow: hidden;
    border-radius: 1.25rem;
    background: #111827;
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.player-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
}

.player-title-row h2 {
    font-size: 1.35rem;
    font-weight: 900;
}

.player-title-row p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.player-title-row > span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.35rem 0.75rem;
    color: #dbeafe;
    font-size: 0.85rem;
    font-weight: 800;
}

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

.video-player {
    width: 100%;
    height: 100%;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), rgba(0, 0, 0, 0.45));
    color: #ffffff;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-overlay span {
    display: flex;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 1.6rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

.play-overlay strong {
    font-size: 1.05rem;
}

.player-note {
    padding: 0.9rem 1.4rem 1.2rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.article-content {
    color: #1f2937;
    line-height: 1.9;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #111827;
    font-size: 1.65rem;
    font-weight: 900;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    color: #374151;
    font-size: 1.05rem;
}

.detail-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 2rem;
}

.detail-fields div {
    border: 1px solid var(--border-soft);
    border-radius: 0.8rem;
    background: #f9fafb;
    padding: 0.9rem;
}

.detail-fields dt {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.detail-fields dd {
    margin-top: 0.25rem;
    font-weight: 800;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.sitemap-links a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 0.8rem 0.9rem;
    font-weight: 700;
}

.sitemap-links a:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.sitemap-links span {
    color: var(--text-soft);
    font-weight: 500;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-text {
    margin-top: 1rem;
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 900;
}

.site-footer a {
    display: block;
    margin-top: 0.55rem;
    color: #d1d5db;
}

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

.footer-bottom {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
    text-align: center;
}

[data-card-container] .is-hidden {
    display: none;
}

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

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

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

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

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

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

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

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

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

    .filter-count {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .site-nav {
        min-height: 3.7rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .hero-inner {
        padding-top: 4rem;
        padding-bottom: 4.5rem;
    }

    .hero-stats-grid,
    .feature-grid,
    .movie-grid,
    .featured-grid,
    .popular-grid,
    .category-grid,
    .footer-grid,
    .category-overview-grid,
    .compact-grid,
    .filter-panel,
    .search-filter,
    .detail-fields,
    .sitemap-links {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .player-title-row {
        align-items: start;
        flex-direction: column;
    }

    .rank-card a {
        grid-template-columns: 3rem 6rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .rank-card p {
        -webkit-line-clamp: 1;
    }

    .rank-number {
        width: 2.4rem;
        height: 2.4rem;
    }

    .detail-hero {
        min-height: auto;
    }
}
