:root {
    --bg: #f6f8fb;
    --panel: #ffffff;
    --ink: #111827;
    --muted: #667085;
    --line: rgba(17, 24, 39, 0.1);
    --primary: #2563eb;
    --primary-dark: #1e3a8a;
    --cyan: #0891b2;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, 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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--primary));
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
    font-size: 15px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
}

.nav-toggle {
    display: none;
    border: 0;
    padding: 9px 14px;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-weight: 800;
    cursor: pointer;
}

main {
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    background: radial-gradient(circle at 12% 20%, rgba(14, 165, 233, 0.32), transparent 30%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 46%, #0e7490 100%);
    color: #fff;
    padding: 48px 0 34px;
}

.hero-stage {
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.75s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.45;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.82));
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 620px;
    padding: clamp(32px, 6vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-kicker,
.section-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.15);
    color: #fed7aa;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(17px, 2.2vw, 22px);
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #e0f2fe;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions,
.detail-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    font-weight: 900;
    transition: 0.22s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.primary-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 34px rgba(249, 115, 22, 0.36);
}

.ghost-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.ghost-button.dark {
    color: var(--primary-dark);
    border-color: rgba(37, 99, 235, 0.18);
    background: rgba(255, 255, 255, 0.8);
}

.hero-poster {
    display: block;
    align-self: center;
    justify-self: end;
    width: min(360px, 100%);
    aspect-ratio: 2 / 3;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transform: rotate(2deg);
    transition: 0.28s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

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

.hero-dots {
    position: absolute;
    z-index: 3;
    left: clamp(32px, 6vw, 72px);
    bottom: 34px;
    display: flex;
    gap: 10px;
}

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

.hero-dot.is-active {
    width: 58px;
    background: #fff;
}

.hero-quick {
    width: min(1180px, calc(100% - 32px));
    margin: -28px auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
}

.hero-search-card,
.hero-category-card,
.filter-panel,
.category-card,
.movie-card,
.article-card,
.side-card,
.player-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.hero-search-card,
.hero-category-card {
    padding: 20px;
    backdrop-filter: blur(20px);
}

.hero-search-card > span,
.hero-category-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 900;
}

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

.hero-search-card input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 14px;
    padding: 0 14px;
    outline: none;
    color: var(--ink);
    background: #fff;
}

.hero-search-card input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(37, 99, 235, 0.46);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.hero-search-card button {
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    font-weight: 900;
    cursor: pointer;
}

.hero-category-card div,
.footer-links,
.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-category-card a,
.footer-links a,
.category-samples a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 8px 12px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
}

.hero-category-card a:hover,
.footer-links a:hover,
.category-samples a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
}

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

.soft-panel {
    width: 100%;
    padding: 72px max(16px, calc((100% - 1180px) / 2)) 0;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(246, 248, 251, 0));
}

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

.section-header h2,
.page-hero h1,
.detail-copy h1 {
    margin: 10px 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-header p,
.page-hero p,
.category-card p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.section-header .section-kicker,
.page-hero span {
    background: #dbeafe;
    color: var(--primary-dark);
}

.section-more {
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid var(--line);
    white-space: nowrap;
}

.section-more:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
}

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

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

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

.poster-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.52));
    pointer-events: none;
}

.rank-badge {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 12px;
    min-width: 42px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--primary));
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.24);
}

.movie-card-body {
    padding: 16px;
}

.movie-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta-line span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.movie-card h3 a:hover {
    color: var(--primary);
}

.movie-card p {
    min-height: 66px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.movie-card .tag-list span {
    background: #eff6ff;
    color: #1e40af;
}

.movie-card-small .movie-card-body {
    padding: 14px;
}

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

.movie-card-small p {
    min-height: 58px;
    font-size: 13px;
}

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

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

.category-card {
    padding: 22px;
    transition: 0.22s ease;
}

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

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 900;
}

.category-card-large .category-title {
    font-size: 26px;
}

.category-samples {
    margin-top: 18px;
}

.ranking-strip {
    padding-bottom: 72px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    transition: 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
    border-color: rgba(37, 99, 235, 0.24);
}

.ranking-item span {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    font-weight: 900;
}

.ranking-item strong {
    font-size: 18px;
}

.ranking-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: clamp(34px, 7vw, 76px);
    border-radius: 34px;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.28), transparent 32%), linear-gradient(135deg, #0f172a, #1e3a8a 58%, #0e7490);
    box-shadow: var(--shadow);
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.page-hero p {
    color: #dbeafe;
    font-size: 18px;
}

.category-hero {
    background: radial-gradient(circle at 16% 20%, rgba(34, 211, 238, 0.28), transparent 34%), linear-gradient(135deg, #111827, #1d4ed8 56%, #0891b2);
}

.filter-panel {
    margin-bottom: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 16px;
    align-items: end;
}

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

.filter-selects {
    display: flex;
    align-items: end;
    gap: 12px;
}

.filter-selects select {
    min-width: 146px;
}

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

.detail-hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    overflow: hidden;
    background: #0f172a;
}

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

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.36;
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.92));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
    align-items: center;
    gap: 44px;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
}

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

.detail-copy h1 {
    color: #fff;
    font-size: clamp(38px, 6vw, 68px);
}

.detail-one-line {
    max-width: 760px;
    color: #dbeafe;
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #e0f2fe;
    font-weight: 800;
}

.detail-tags span {
    color: #fff;
    background: rgba(37, 99, 235, 0.5);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
}

.player-card,
.article-card,
.side-card {
    padding: 22px;
}

.player-card h2,
.article-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.32), rgba(2, 6, 23, 0.68));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--primary));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    font-size: 28px;
    text-indent: 4px;
}

.player-overlay strong {
    font-size: 20px;
}

.article-card p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

.side-card dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.side-card dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.side-card dt {
    color: #64748b;
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.side-related {
    display: grid;
    gap: 12px;
}

.side-related a {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    transition: 0.2s ease;
}

.side-related a:hover {
    background: #eff6ff;
}

.side-related img {
    width: 64px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #dbeafe;
}

.side-related strong,
.side-related em {
    display: block;
}

.side-related strong {
    margin-bottom: 4px;
    line-height: 1.3;
}

.side-related em {
    color: #64748b;
    font-style: normal;
    font-size: 13px;
}

.site-footer {
    margin-top: 82px;
    padding: 42px 0;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.footer-brand {
    color: #fff;
}

.site-footer p {
    margin: 12px 0 0;
    max-width: 560px;
    color: #94a3b8;
}

.footer-links {
    justify-content: flex-end;
}

.footer-links a {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

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

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

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

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

@media (max-width: 820px) {
    .header-inner {
        min-height: 66px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 66px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

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

    .hero-stage,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 34px 24px 76px;
    }

    .hero-poster {
        justify-self: start;
        width: min(260px, 72vw);
    }

    .hero-dots {
        left: 24px;
    }

    .hero-quick,
    .filter-panel,
    .footer-inner,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .detail-hero-inner {
        gap: 28px;
    }

    .detail-poster {
        width: min(260px, 72vw);
    }

    .filter-selects {
        flex-wrap: wrap;
    }

    .filter-selects label {
        flex: 1 1 150px;
    }

    .section-header {
        display: block;
    }

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero-carousel {
        padding-top: 24px;
    }

    .hero-stage {
        width: calc(100% - 20px);
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-search-card form {
        display: grid;
    }

    .content-section,
    .page-hero,
    .detail-hero-inner,
    .footer-inner {
        width: calc(100% - 24px);
    }

    .movie-grid,
    .compact-grid,
    .ranking-grid,
    .category-grid,
    .large-category-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .page-hero {
        border-radius: 24px;
    }

    .player-card,
    .article-card,
    .side-card {
        padding: 16px;
    }

    .side-card dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}
