:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #0891b2;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --amber: #f59e0b;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-800);
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 48%, #f1f5f9 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img,
video {
    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;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 6px 26px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark,
.footer-logo span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.brand-text strong {
    display: block;
    color: var(--slate-900);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    color: var(--slate-500);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--slate-700);
    border-radius: 12px;
    transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: var(--slate-800);
    background: var(--slate-100);
    border-radius: 12px;
}

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

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

.mobile-nav .nav-link {
    display: block;
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--slate-950);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(37, 99, 235, 0.48), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.55) 44%, rgba(2, 6, 23, 0.20) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.78) 0%, transparent 48%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero-copy {
    max-width: 680px;
    color: var(--white);
}

.hero-kicker,
.page-hero span,
.section-heading span,
.ranking-head span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    text-shadow: 0 12px 38px rgba(0, 0, 0, 0.38);
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 22px;
    color: #e2e8f0;
    font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--blue-dark);
    background: rgba(37, 99, 235, 0.10);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.home-search button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button,
.home-search button {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.home-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.32);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 48px;
    height: 48px;
    border: 0;
    color: var(--white);
    background: rgba(2, 6, 23, 0.45);
    border-radius: 999px;
    font-size: 40px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
    transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
    background: rgba(2, 6, 23, 0.7);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    transition: all 0.22s ease;
}

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

.quick-search-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: -46px;
    padding: 28px;
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.quick-search-panel h2 {
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 26px;
    letter-spacing: -0.04em;
}

.quick-search-panel p {
    margin: 0;
    color: var(--slate-600);
}

.home-search,
.filter-bar {
    display: flex;
    gap: 12px;
}

.home-search input,
.filter-bar input,
.filter-bar select {
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    color: var(--slate-800);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    outline: none;
    transition: border 0.22s ease, box-shadow 0.22s ease;
}

.home-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(37, 99, 235, 0.65);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.section-block {
    padding: 56px 0 0;
}

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

.section-heading h2,
.ranking-head h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.section-heading span,
.ranking-head span,
.page-hero span {
    color: var(--blue);
}

.section-heading a,
.text-link {
    color: var(--blue);
    font-weight: 800;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: var(--shadow);
}

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

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

.movie-card:hover .poster-link img,
.category-tile:hover img,
.rank-card:hover img {
    transform: scale(1.07);
}

.score-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    padding: 0 10px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.play-float {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

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

.movie-card h3 {
    min-height: 48px;
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--slate-500);
    font-size: 13px;
}

.movie-meta-line span:not(:last-child)::after {
    content: "·";
    margin-left: 7px;
    color: var(--slate-300);
}

.movie-card-desc {
    min-height: 44px;
    margin: 10px 0 14px;
    color: var(--slate-600);
    font-size: 14px;
}

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

.category-tile {
    display: grid;
    gap: 14px;
    padding: 18px;
    min-height: 210px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    height: 98px;
    overflow: hidden;
    border-radius: 16px;
}

.category-covers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #dbeafe;
    transition: transform 0.35s ease;
}

.category-title {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-desc {
    color: var(--slate-600);
    font-size: 14px;
}

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

.compact-heading {
    margin-bottom: 22px;
}

.ranking-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
    background: linear-gradient(150deg, var(--slate-900), var(--slate-800));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.ranking-head h2 {
    color: var(--white);
}

.ranking-list {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.ranking-list a {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.ranking-list a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.ranking-list b {
    color: #93c5fd;
}

.ranking-list em {
    color: #fbbf24;
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 22% 18%, rgba(37, 99, 235, 0.36), transparent 26%),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
}

.filter-bar {
    position: sticky;
    top: 94px;
    z-index: 20;
    margin-bottom: 26px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.filter-bar select {
    max-width: 180px;
}

.local-filter select {
    max-width: 160px;
}

.ranking-page-grid {
    display: grid;
    gap: 18px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
}

.ranking-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #dbeafe;
    border-radius: 16px;
}

.ranking-cover b {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 6px 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
}

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

.ranking-detail h2 {
    margin: 0 0 10px;
    color: var(--slate-900);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.ranking-detail p {
    max-width: 720px;
    color: var(--slate-600);
}

.detail-shell {
    padding: 34px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--slate-500);
    font-size: 14px;
}

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

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

.player-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--slate-950);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22), rgba(2, 6, 23, 0.64));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}

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

.detail-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
}

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

.detail-score {
    position: absolute;
    right: 14px;
    top: 14px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.detail-content {
    margin-top: 30px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
}

.title-row h1 {
    margin: 0 0 10px;
    color: var(--slate-900);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.title-row p {
    max-width: 860px;
    margin: 0;
    color: var(--slate-600);
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    color: var(--slate-700);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.detail-tags {
    margin-bottom: 26px;
}

.content-panel {
    margin-bottom: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
}

.content-panel h2 {
    margin: 0 0 12px;
    color: var(--slate-900);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.content-panel p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
}

.detail-related {
    padding-top: 42px;
}

.rank-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
}

.rank-card img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    background: #dbeafe;
}

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

.rank-card strong {
    color: var(--slate-900);
}

.rank-card em {
    color: var(--slate-500);
    font-style: normal;
    font-size: 13px;
}

.site-footer {
    margin-top: 70px;
    color: var(--white);
    background: linear-gradient(145deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 54px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo strong {
    font-size: 22px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--slate-300);
}

.footer-links {
    display: grid;
    gap: 9px;
    align-content: start;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: #bfdbfe;
    font-size: 17px;
}

.footer-links a {
    color: var(--slate-300);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px 0;
    color: var(--slate-400);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .card-grid,
    .featured-grid,
    .compact-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .ranking-panel {
        position: static;
    }

    .detail-card {
        display: none;
    }
}

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

    .menu-button {
        display: grid;
        place-items: center;
    }

    .header-inner {
        height: 68px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        padding-bottom: 72px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-arrow {
        top: auto;
        bottom: 24px;
        width: 42px;
        height: 42px;
        font-size: 32px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: scale(1.04);
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .quick-search-panel {
        grid-template-columns: 1fr;
        margin-top: -28px;
        padding: 22px;
    }

    .home-search,
    .filter-bar {
        flex-direction: column;
    }

    .filter-bar {
        position: static;
    }

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

    .card-grid,
    .featured-grid,
    .compact-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

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

    .movie-card-desc {
        display: none;
    }

    .section-block {
        padding-top: 42px;
    }

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

    .small-hero {
        padding: 56px 0 62px;
    }

    .ranking-item {
        grid-template-columns: 104px 1fr;
        gap: 14px;
        padding: 14px;
    }

    .ranking-detail h2 {
        font-size: 18px;
    }

    .ranking-detail p {
        display: none;
    }

    .content-panel {
        padding: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 42px 0;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .card-grid,
    .featured-grid,
    .compact-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-hero h1,
    .title-row h1 {
        letter-spacing: -0.04em;
    }
}
