* {
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --cyan: #06b6d4;
    --dark: #0f172a;
    --slate: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --line: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f1f5f9 100%);
}

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

img {
    display: block;
    width: 100%;
    height: auto;
}

main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
    transform: translateZ(0);
    transition: transform 0.25s ease;
}

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

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-title {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: #475569;
    font-weight: 650;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.inline-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 13px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.inline-search input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.header-search button,
.mobile-search button,
.inline-search button {
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    color: #ffffff;
    font-weight: 750;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 20px;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-search {
    display: flex;
    gap: 8px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(125, 211, 252, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.92));
}

.hero-inner {
    position: relative;
    width: min(1280px, calc(100% - 32px));
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.hero-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 420px);
    gap: 40px;
    align-items: center;
    padding: 72px 0 86px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 12px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-copy h1,
.page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #e0f2fe;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.text-btn,
.panel-link,
.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    min-height: 46px;
    padding: 0 22px;
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
}

.ghost-btn {
    min-height: 46px;
    padding: 0 20px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-btn:hover,
.panel-link:hover,
.more-link:hover {
    transform: translateY(-2px);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: #2563eb;
    background: #eff6ff;
}

.tag-row.bright span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster {
    position: relative;
    width: min(100%, 380px);
    justify-self: center;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.hero-poster img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 32px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 46px;
    background: #ffffff;
}

.content-section {
    width: min(1280px, calc(100% - 32px));
    margin: 56px auto 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading::before {
    content: "";
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.section-heading.red::before {
    background: linear-gradient(180deg, #dc2626, #f97316);
}

.section-heading.orange::before {
    background: linear-gradient(180deg, #d97706, #f97316);
}

.section-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 5px 0 0;
    color: var(--muted);
}

.section-topline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.more-link,
.text-btn,
.panel-link {
    color: var(--blue);
}

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

.category-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: 24px;
    padding: 20px;
    color: #ffffff;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.92;
}

.category-card.blue::before,
.page-hero.blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.category-card.red::before,
.page-hero.red {
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.category-card.orange::before,
.page-hero.orange {
    background: linear-gradient(135deg, #d97706, #fb923c);
}

.category-card.purple::before,
.page-hero.purple {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.category-card.teal::before,
.page-hero.teal {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.category-card.green::before,
.page-hero.green {
    background: linear-gradient(135deg, #16a34a, #14b8a6);
}

.category-card.slate::before,
.page-hero.slate {
    background: linear-gradient(135deg, #0f172a, #475569);
}

.category-card.pink::before,
.page-hero.pink {
    background: linear-gradient(135deg, #db2777, #f472b6);
}

.category-card.cyan::before,
.page-hero.cyan {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.category-card.amber::before,
.page-hero.amber {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.category-cover {
    position: absolute;
    right: -8px;
    bottom: -18px;
    width: 88px;
    height: 118px;
    border-radius: 18px;
    overflow: hidden;
    opacity: 0.38;
    transform: rotate(8deg);
}

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

.category-copy {
    position: relative;
    display: grid;
    gap: 8px;
}

.category-copy strong {
    font-size: 19px;
}

.category-copy small {
    color: rgba(255, 255, 255, 0.82);
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
    border-color: #bfdbfe;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.poster-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
}

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

.poster-badge,
.card-score {
    position: absolute;
    top: 10px;
    border-radius: 999px;
    padding: 5px 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.poster-badge {
    left: 10px;
    background: rgba(37, 99, 235, 0.86);
}

.card-score {
    right: 10px;
    background: rgba(15, 23, 42, 0.72);
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body h3 a:hover {
    color: var(--blue);
}

.card-meta {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-desc {
    min-height: 42px;
    margin: 9px 0 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-panel,
.info-panel {
    border-radius: 26px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1f2937);
    box-shadow: var(--shadow);
}

.ranking-panel {
    position: sticky;
    top: 96px;
}

.ranking-panel h2,
.info-panel h2 {
    margin: 0;
    font-size: 25px;
}

.ranking-panel p {
    margin: 8px 0 18px;
    color: #cbd5e1;
}

.ranking-panel ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ranking-panel li a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
}

.rank-num {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 900;
}

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

.rank-meta {
    color: #cbd5e1;
    font-size: 12px;
}

.panel-link {
    width: 100%;
    margin-top: 18px;
    min-height: 42px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.page-hero {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
}

.compact-hero {
    padding: 72px 0;
}

.page-hero-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

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

.category-overview-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-thumb-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    min-height: 220px;
    background: #e2e8f0;
}

.category-thumb-strip img {
    height: 100%;
    object-fit: cover;
}

.category-overview-copy {
    padding: 24px;
}

.category-overview-copy h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-overview-copy p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

.category-stat {
    margin: 16px 0;
    color: var(--muted);
}

.category-stat span {
    color: var(--blue);
    font-size: 28px;
    font-weight: 900;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-bar strong {
    display: block;
    font-size: 20px;
}

.filter-bar span {
    color: var(--muted);
}

.inline-search {
    display: flex;
    width: min(420px, 100%);
    gap: 8px;
}

.empty-result {
    display: none;
    margin-top: 22px;
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    color: #64748b;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
}

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

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

.rank-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    background: #e0f2fe;
}

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

.rank-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.rank-copy h2 {
    margin: 0;
    font-size: 21px;
}

.rank-copy p {
    color: #475569;
    line-height: 1.65;
}

.rank-score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.rank-score strong {
    color: #dc2626;
    font-size: 26px;
}

.rank-score span {
    color: var(--muted);
    font-size: 13px;
}

.player-hero {
    color: #ffffff;
    background: radial-gradient(circle at 18% 4%, rgba(37, 99, 235, 0.38), transparent 30%), linear-gradient(135deg, #020617, #111827 56%, #0f172a);
}

.player-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 46px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 14px;
}

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

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

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

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62));
    cursor: pointer;
}

.play-layer.is-hidden {
    display: none;
}

.play-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 4px;
    color: #2563eb;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.player-title {
    margin-top: 22px;
}

.player-title h1 {
    margin: 16px 0 8px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.player-title p {
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

.info-panel {
    position: sticky;
    top: 98px;
}

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

.info-panel li {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.info-panel span {
    color: #94a3b8;
    font-size: 13px;
}

.info-panel strong {
    color: #ffffff;
    font-weight: 750;
}

.detail-content {
    display: grid;
    gap: 30px;
}

.article-block {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.article-block h2 {
    margin: 0 0 14px;
    font-size: 27px;
}

.article-block p {
    margin: 0;
    color: #334155;
    line-height: 2;
    font-size: 16px;
    white-space: pre-line;
}

.site-footer {
    margin-top: 72px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1f2937);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 220px 260px;
    gap: 36px;
    padding: 46px 0;
}

.brand-footer .brand-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 520px;
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-col h3 {
    margin: 0 0 14px;
}

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

.footer-col a {
    color: #cbd5e1;
}

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

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

@media (max-width: 1180px) {
    .header-search {
        display: none;
    }

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

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

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

    .mobile-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-slide,
    .player-layout,
    .split-section,
    .footer-inner,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        max-width: 300px;
    }

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

    .category-overview-grid,
    .rank-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .info-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
        height: 64px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-inner,
    .content-section,
    .page-hero-inner,
    .player-inner,
    .footer-inner,
    .footer-bottom,
    .mobile-nav {
        width: min(100% - 24px, 1280px);
    }

    .hero-section,
    .hero-inner {
        min-height: 610px;
    }

    .hero-slide {
        gap: 24px;
        padding: 44px 0 82px;
    }

    .hero-dots {
        bottom: 24px;
    }

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

    .section-topline,
    .filter-bar,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-search,
    .mobile-search {
        width: 100%;
    }

    .rank-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .card-body {
        padding: 12px;
    }

    .card-desc {
        display: none;
    }

    .player-inner {
        padding-top: 18px;
    }

    .article-block {
        padding: 22px;
    }
}
