:root {
    --night-950: #061523;
    --night-900: #102a43;
    --night-850: #1b344f;
    --night-800: #243b53;
    --night-700: #334e68;
    --night-600: #486581;
    --night-500: #627d98;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --text: #f8fafc;
    --muted: #a8b3c5;
    --soft: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 4px 25px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.12), transparent 30%), var(--night-950);
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
    background: var(--night-900);
}

button,
input,
select {
    font: inherit;
}

.container-custom {
    width: min(100% - 2rem, 80rem);
    margin: 0 auto;
}

.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(16, 42, 67, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: 0.75rem;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
}

.brand-name {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    background: linear-gradient(90deg, var(--amber-300), var(--amber-600));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #dbe3ec;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--amber-400);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: 2.2rem;
    left: 0;
    display: grid;
    min-width: 12rem;
    padding: 0.55rem;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    padding: 0.55rem 0.75rem;
    color: #dbe3ec;
    border-radius: 0.55rem;
}

.nav-dropdown-panel a:hover {
    color: var(--amber-400);
    background: var(--night-700);
}

.nav-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--night-600);
    border-radius: 0.75rem;
    background: var(--night-800);
}

.nav-search input {
    width: 13.5rem;
    padding: 0.65rem 0.85rem;
    color: #dbe3ec;
    background: transparent;
    border: 0;
    outline: 0;
}

.nav-search button {
    padding: 0.65rem 0.85rem;
    color: #ffffff;
    cursor: pointer;
    background: var(--night-700);
    border: 0;
}

.mobile-menu-button {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.55rem;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 0.75rem;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 0.28rem 0;
    background: #ffffff;
}

main {
    padding-top: 4.75rem;
}

.hero {
    position: relative;
    min-height: 42rem;
    overflow: hidden;
}

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

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

.hero-backdrop,
.hero-backdrop img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-backdrop img {
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    background: linear-gradient(to top, var(--night-950) 0%, rgba(6, 21, 35, 0.82) 48%, rgba(6, 21, 35, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 42rem;
    align-items: flex-end;
    padding-bottom: 5rem;
}

.hero-copy {
    max-width: 48rem;
    animation: fadeIn 0.5s ease both;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.hero-kicker span {
    padding: 0.55rem 0.9rem;
    color: #ffffff;
    background: var(--amber-500);
    border-radius: 0.65rem;
    font-weight: 700;
}

.hero-kicker em {
    color: var(--amber-400);
    font-style: normal;
}

.hero h1,
.hero h2 {
    max-width: 56rem;
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 46rem;
    margin: 0;
    color: #d1d5db;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.75rem 1.1rem;
    border: 0;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: #ffffff;
    background: var(--amber-500);
}

.btn-primary:hover {
    background: var(--amber-600);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.24);
    transform: translateY(-1px);
}

.btn-secondary {
    color: #ffffff;
    background: var(--night-700);
}

.btn-secondary:hover {
    background: var(--night-600);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 2.6rem;
    left: 0;
    z-index: 3;
    display: flex;
    gap: 0.55rem;
}

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

.hero-dot.is-active {
    width: 4rem;
    background: var(--amber-400);
}

.section-block {
    padding: 4rem 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-title {
    margin: 0 0 1.5rem;
    color: var(--amber-400);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.2;
}

.section-head .section-title {
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--amber-400);
    font-weight: 700;
}

.section-more:hover {
    color: var(--amber-300);
}

.video-grid {
    display: grid;
    gap: 1.25rem;
}

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

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

.video-card {
    overflow: hidden;
    background: var(--night-800);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.video-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow-strong);
    transform: translateY(-3px);
}

.card-link {
    display: block;
    height: 100%;
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--night-900);
}

.video-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-image {
    transform: scale(1.05);
}

.duration-badge,
.region-badge {
    display: inline-flex;
    align-items: center;
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.14);
    border-radius: 999px;
}

.duration-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.55rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.62);
    font-size: 0.78rem;
}

.play-float {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--amber-400);
    font-size: 2.6rem;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.video-card:hover .play-float {
    opacity: 1;
}

.card-body {
    padding: 1rem;
}

.region-badge {
    padding: 0.25rem 0.55rem;
    font-size: 0.78rem;
}

.card-body h2,
.card-body h3 {
    display: -webkit-box;
    margin: 0.7rem 0 0.45rem;
    overflow: hidden;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--amber-400);
    font-size: 0.82rem;
}

.card-meta span {
    padding: 0.2rem 0.45rem;
    background: rgba(251, 191, 36, 0.13);
    border-radius: 0.45rem;
}

.tag-list,
.detail-tags,
.pill-cloud,
.hero-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list {
    margin-top: 0.9rem;
}

.tag-list span,
.detail-tags a,
.pill-cloud span,
.hero-link-row a {
    padding: 0.35rem 0.6rem;
    color: #dbe3ec;
    background: var(--night-700);
    border-radius: 0.55rem;
    font-size: 0.82rem;
}

.video-card-horizontal .card-link {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) 2fr;
    height: 100%;
}

.video-card-horizontal .video-card-image {
    height: 100%;
    min-height: 13rem;
}

.video-card-horizontal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem;
}

.category-band,
.latest-band {
    background: linear-gradient(to bottom, var(--night-900), var(--night-950));
}

.category-band {
    padding: 4rem 0;
}

.category-band.compact {
    padding: 3rem 0;
}

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

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

.category-tile {
    position: relative;
    display: flex;
    min-height: 12rem;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 1.3rem;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 50%);
    content: "";
}

.category-tile:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-3px) scale(1.01);
}

.category-tile span {
    font-size: 1.45rem;
    font-weight: 800;
}

.category-tile em {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.tile-warm { background: linear-gradient(135deg, #dc2626, #92400e); }
.tile-orange { background: linear-gradient(135deg, #ea580c, #9a3412); }
.tile-purple { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.tile-blue { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.tile-green { background: linear-gradient(135deg, #16a34a, #14532d); }
.tile-pink { background: linear-gradient(135deg, #db2777, #831843); }
.tile-cyan { background: linear-gradient(135deg, #0891b2, #164e63); }
.tile-slate { background: linear-gradient(135deg, #475569, #0f172a); }
.tile-red { background: linear-gradient(135deg, #ef4444, #7f1d1d); }
.tile-rose { background: linear-gradient(135deg, #f43f5e, #9f1239); }
.tile-yellow { background: linear-gradient(135deg, #ca8a04, #854d0e); }
.tile-indigo { background: linear-gradient(135deg, #4f46e5, #312e81); }
.tile-brown { background: linear-gradient(135deg, #92400e, #451a03); }
.tile-violet { background: linear-gradient(135deg, #9333ea, #581c87); }

.rank-list {
    display: grid;
    gap: 0.8rem;
}

.rank-item {
    border-radius: 0.9rem;
}

.rank-item a {
    display: grid;
    grid-template-columns: 3.2rem 6.5rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
}

.rank-number {
    color: var(--amber-400);
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 6.5rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.55rem;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    color: #ffffff;
    font-size: 1rem;
}

.rank-info em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.86rem;
}

.rank-score {
    color: var(--amber-300);
    font-weight: 900;
}

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

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

.featured-rank .video-card-horizontal .card-link {
    grid-template-columns: 1fr;
}

.library-strip {
    margin-top: 3rem;
    padding: 1.2rem;
    background: var(--night-900);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.library-strip h2 {
    margin: 0 0 1rem;
    color: #ffffff;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.5rem;
}

.pagination a {
    min-width: 2.35rem;
    padding: 0.55rem 0.75rem;
    color: #dbe3ec;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    text-align: center;
}

.pagination a:hover,
.pagination a.is-active {
    color: #ffffff;
    background: var(--amber-500);
    border-color: var(--amber-500);
}

.page-hero {
    padding: 5rem 0 3rem;
    background: radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18), transparent 32%), linear-gradient(135deg, var(--night-900), var(--night-950));
}

.small-hero {
    padding-bottom: 2.5rem;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.12);
    border-radius: 999px;
    font-weight: 700;
}

.page-hero h1 {
    max-width: 56rem;
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.08;
}

.page-hero p {
    max-width: 48rem;
    margin: 0;
    color: #d1d5db;
    font-size: 1.08rem;
}

.hero-link-row {
    margin-top: 1.5rem;
}

.hero-link-row a:hover,
.detail-tags a:hover {
    color: var(--amber-400);
    background: var(--night-600);
}

.filter-panel,
.search-panel {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    padding: 1rem;
    background: rgba(36, 59, 83, 0.78);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.filter-input,
.filter-select,
.big-search input {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
    color: #ffffff;
    background: var(--night-900);
    border: 1px solid var(--night-600);
    border-radius: 0.75rem;
    outline: 0;
}

.filter-input:focus,
.filter-select:focus,
.big-search input:focus {
    border-color: var(--amber-400);
}

.filter-select {
    max-width: 12rem;
}

.movie-card.is-hidden,
.rank-item.is-hidden {
    display: none;
}

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

.stat-card {
    padding: 1.35rem;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.stat-card h2 {
    margin: 0 0 1rem;
    color: #ffffff;
}

.big-search {
    display: flex;
    width: 100%;
    gap: 0.75rem;
}

.search-summary {
    margin-bottom: 1rem;
    color: var(--muted);
}

.detail-top {
    padding: 1.2rem 0;
    background: var(--night-900);
    border-bottom: 1px solid var(--line);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    color: var(--muted);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(18rem, 0.9fr);
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-main {
    display: grid;
    width: 5.2rem;
    height: 5.2rem;
    place-items: center;
    padding-left: 0.3rem;
    color: #ffffff;
    background: var(--amber-500);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(245, 158, 11, 0.32);
    cursor: pointer;
    font-size: 2.2rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-main:hover {
    background: var(--amber-600);
    transform: scale(1.08);
}

.player-message {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    color: #ffffff;
    text-align: center;
    pointer-events: none;
}

.detail-article {
    margin-top: 2rem;
}

.detail-article h1 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.detail-meta span {
    padding: 0.35rem 0.65rem;
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.13);
    border-radius: 0.6rem;
}

.lead-text {
    color: #d1d5db;
    font-size: 1.12rem;
}

.content-panel {
    margin-top: 1.25rem;
    padding: 1.35rem;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.content-panel h2 {
    margin: 0 0 0.75rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.content-panel p {
    margin: 0;
    color: #d1d5db;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.poster-card,
.side-links {
    padding: 1rem;
    background: var(--night-800);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.8rem;
}

.poster-card h2,
.side-links h2 {
    margin: 1rem 0 0.5rem;
    color: #ffffff;
}

.poster-card p {
    margin: 0;
    color: var(--muted);
}

.side-links a {
    display: block;
    padding: 0.75rem 0;
    color: #dbe3ec;
    border-top: 1px solid var(--line);
}

.side-links a:hover {
    color: var(--amber-400);
}

.site-footer {
    margin-top: 2rem;
    background: var(--night-900);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer-grid p {
    max-width: 30rem;
    color: var(--muted);
}

.footer-grid h2 {
    margin: 0 0 0.9rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-grid a:not(.brand) {
    display: block;
    margin: 0.35rem 0;
    color: var(--muted);
}

.footer-grid a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    padding: 1rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .grid-three,
    .grid-four,
    .category-grid,
    .category-grid.large,
    .featured-rank {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .container-custom {
        width: min(100% - 1.1rem, 80rem);
    }

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

    .nav-links {
        position: absolute;
        top: 4.75rem;
        right: 0.75rem;
        left: 0.75rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        padding: 1rem;
        background: var(--night-800);
        border: 1px solid var(--line);
        border-radius: 1rem;
        box-shadow: var(--shadow-strong);
    }

    .nav-links.is-open {
        display: flex;
        animation: fadeIn 0.25s ease both;
    }

    .nav-dropdown-panel {
        position: static;
        display: none;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-panel {
        display: grid;
    }

    .nav-search,
    .nav-search input {
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: 36rem;
    }

    .hero-content {
        padding-bottom: 5rem;
    }

    .hero-dots {
        bottom: 1.6rem;
    }

    .section-block,
    .category-band {
        padding: 2.6rem 0;
    }

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

    .grid-three,
    .grid-four,
    .category-grid,
    .category-grid.large,
    .stats-grid,
    .featured-rank {
        grid-template-columns: 1fr;
    }

    .video-card-horizontal .card-link {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .big-search {
        flex-direction: column;
    }

    .filter-select {
        max-width: none;
    }

    .rank-item a {
        grid-template-columns: 2.6rem 5.4rem 1fr;
    }

    .rank-score {
        grid-column: 3;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}
