:root {
    --color-orange: #f97316;
    --color-red: #ef4444;
    --color-pink: #ec4899;
    --color-blue: #0ea5e9;
    --color-cyan: #06b6d4;
    --color-green: #10b981;
    --color-purple: #8b5cf6;
    --color-dark: #111827;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-soft: #f8fafc;
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.22);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red), var(--color-pink));
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.25);
}

.top-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--color-red);
    background: #ffffff;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: rotate(12deg) scale(1.06);
}

.brand-name {
    font-size: 23px;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 17px;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fde68a;
    transform: translateY(-1px);
}

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

.nav-search input,
.mobile-search input {
    width: 230px;
    height: 39px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.nav-search button,
.mobile-search button {
    height: 39px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: var(--color-red);
    background: #ffffff;
    cursor: pointer;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

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

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

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

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

.hero-corner,
.player-frame::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    content: "";
    border-top: 150px solid rgba(249, 115, 22, 0.9);
    border-left: 150px solid transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.hero-content > * {
    max-width: 660px;
}

.hero-kicker,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-label {
    color: var(--color-orange);
    background: rgba(249, 115, 22, 0.1);
}

.hero h1 {
    margin: 18px 0 16px;
    color: #ffffff;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
    color: #ffffff;
}

.hero-meta span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red));
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.38);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-light {
    color: var(--color-red);
    background: #ffffff;
}

.btn-light-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.14);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.46);
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.25s ease, transform 0.25s ease;
}

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

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--color-orange);
}

.section {
    padding: 64px 0;
}

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

.section-cool {
    background: linear-gradient(135deg, #eff6ff, #ffffff, #ecfeff);
}

.section-white {
    background: #ffffff;
}

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

.section-head h2 {
    margin: 10px 0 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-more {
    color: var(--color-orange);
    font-weight: 800;
}

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

.stat-card {
    min-height: 130px;
    padding: 24px;
    border-radius: var(--radius-xl);
    color: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 26px;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.84);
}

.stat-hot {
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.stat-view {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.stat-cat {
    background: linear-gradient(135deg, var(--color-green), #059669);
}

.stat-update {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
}

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

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #374151);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.card-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.card-cover::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    content: "";
    z-index: 2;
    border-top: 56px solid rgba(249, 115, 22, 0.88);
    border-left: 56px solid transparent;
}

.play-chip {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red));
    font-size: 13px;
    font-weight: 800;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.38);
    font-weight: 900;
}

.card-body {
    padding: 18px;
}

.card-meta,
.card-foot,
.rank-meta,
.detail-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 13px;
}

.card-meta a,
.rank-meta a,
.pill-link {
    color: var(--color-orange);
    font-weight: 800;
}

.movie-card h3,
.rank-info h2 {
    margin: 9px 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover,
.category-overview-card h2 a:hover {
    color: var(--color-orange);
}

.movie-card p,
.rank-info p,
.category-overview-card p {
    margin: 0 0 12px;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    color: #9ca3af;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-compact .card-body {
    padding: 14px;
}

.card-compact h3 {
    font-size: 16px;
}

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

.category-tile {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: transform 0.45s ease;
}

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

.category-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(239, 68, 68, 0.88));
}

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 2;
    display: block;
}

.category-tile span {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    color: rgba(255, 255, 255, 0.84);
}

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

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

.cta-band {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red), var(--color-pink));
}

.cta-inner {
    padding: 70px 0;
    text-align: center;
}

.cta-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.12;
    font-weight: 900;
}

.cta-inner p {
    width: min(760px, 100%);
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #7f1d1d);
}

.small-hero {
    padding: 76px 0;
}

.small-hero h1,
.detail-hero h1 {
    margin: 14px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.small-hero p,
.detail-hero p {
    width: min(760px, 100%);
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: #fff7ed;
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.1);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #9a3412;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: 12px;
    outline: none;
    color: #111827;
    background: #ffffff;
}

.empty-state {
    display: none;
    padding: 38px;
    border-radius: var(--radius-lg);
    color: var(--color-muted);
    background: #f9fafb;
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-cover {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.category-overview-card h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 26px;
    line-height: 1.2;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.mini-links a {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--color-orange);
    background: #fff7ed;
    font-size: 13px;
    font-weight: 800;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 66px 180px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.rank-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    font-size: 19px;
    font-weight: 900;
}

.rank-cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

.detail-hero {
    min-height: 440px;
}

.detail-bg-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.3));
}

.detail-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

.section-detail {
    background: #f8fafc;
}

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

.player-card,
.detail-card,
.side-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.player-card {
    margin-bottom: 24px;
    background: #000000;
}

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

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.62));
}

.player-start {
    position: relative;
    z-index: 4;
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    box-shadow: 0 20px 48px rgba(239, 68, 68, 0.45);
    font-size: 34px;
    text-indent: 6px;
}

.detail-card {
    padding: 28px;
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.detail-card h2 {
    margin: 8px 0 12px;
    color: #111827;
    font-size: 24px;
    line-height: 1.28;
}

.score-badge {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    font-size: 22px;
    font-weight: 900;
}

.detail-facts {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.detail-card section {
    margin-top: 24px;
}

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

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span {
    padding: 8px 13px;
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    font-size: 13px;
    font-weight: 800;
}

.detail-side .movie-card {
    box-shadow: none;
    border: 1px solid #f1f5f9;
}

.side-card {
    padding: 20px;
}

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

.side-card h2 {
    margin: 0 0 16px;
    color: #111827;
}

.side-list {
    display: grid;
    gap: 14px;
}

.more-section {
    margin-top: 42px;
}

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

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 900;
}

.footer-links {
    display: flex;
    gap: 18px;
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

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

    .nav-search {
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

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

    .sticky-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .top-nav {
        min-height: 60px;
        gap: 12px;
    }

    .brand-name {
        font-size: 19px;
    }

    .nav-search {
        display: none;
    }

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

    .mobile-search {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .hero {
        height: 540px;
    }

    .hero-content {
        padding-right: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .section {
        padding: 46px 0;
    }

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

    .movie-grid-5,
    .movie-grid-4,
    .movie-grid-3,
    .category-grid,
    .editor-layout,
    .stat-grid,
    .filter-panel,
    .category-overview-card,
    .rank-row {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        gap: 12px;
    }

    .category-overview-cover,
    .rank-cover {
        width: 100%;
    }

    .rank-row {
        align-items: start;
    }

    .detail-title-row,
    .footer-inner {
        flex-direction: column;
    }

    .footer-inner {
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .player-start {
        width: 72px;
        height: 72px;
    }
}
