:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --radius: 1rem;
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 18px 55px rgba(37, 99, 235, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--secondary-50) 0%, #ffffff 48%, var(--secondary-50) 100%);
    line-height: 1.65;
}

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: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    color: #ffffff;
}

.site-header.is-scrolled,
.site-header.menu-open {
    color: var(--secondary-900);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand {
    font-size: 1.25rem;
    white-space: nowrap;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-500), #7c3aed);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
    font-size: 0.8rem;
}

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

.desktop-nav a {
    font-weight: 650;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary-500);
    opacity: 1;
}

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

.header-search input,
.mobile-search input,
.hero-search input,
.filter-field input,
.filter-field select,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--secondary-900);
    outline: none;
    padding: 11px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-field input:focus,
.filter-field select:focus,
.filter-panel select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
    background: #ffffff;
}

.header-search button,
.mobile-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    background: var(--primary-600);
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
}

.site-header.is-scrolled .menu-button,
.site-header.menu-open .menu-button {
    background: var(--secondary-100);
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    background: #ffffff;
    color: var(--secondary-900);
    border-top: 1px solid var(--secondary-200);
    padding: 12px 16px 18px;
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.10);
}

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

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

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

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 18%, rgba(59, 130, 246, 0.38), transparent 28%), linear-gradient(135deg, #020617 0%, #172554 45%, #3b0764 100%);
}

.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-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: blur(2px) saturate(1.08);
}

.hero-bg.image-hidden,
.hero-poster img.image-hidden,
.poster-shell img.image-hidden,
.rank-poster img.image-hidden {
    opacity: 0;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.70) 46%, rgba(59, 7, 100, 0.56) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 640px;
    padding-top: 130px;
    padding-bottom: 130px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 390px;
    align-items: center;
    gap: 60px;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 0.9rem;
}

.hero .eyebrow,
.detail-hero .eyebrow,
.page-hero-rank .eyebrow {
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 18px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
}

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-700);
    background: var(--secondary-100);
}

.hero-tags span,
.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 28px;
}

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    padding: 13px 22px;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.36);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 12px 20px;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #1d4ed8, #581c87);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    aspect-ratio: 2 / 3;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-search-card {
    position: relative;
    z-index: 5;
    margin-top: -82px;
    display: grid;
    gap: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.hero-search input {
    border-radius: 18px;
    padding: 15px 18px;
}

.hero-search button {
    border-radius: 18px;
    padding: 15px 24px;
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-quick-links a {
    color: var(--secondary-700);
    background: var(--secondary-100);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
}

.hero-quick-links a:hover {
    color: var(--primary-700);
    background: var(--primary-50);
}

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

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

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

.section {
    padding: 58px 0;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
    color: var(--secondary-900);
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 720px;
}

.section-link {
    color: var(--primary-700);
    background: var(--primary-50);
    padding: 10px 16px;
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.poster-link {
    position: relative;
    display: block;
}

.poster-shell {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 22%), linear-gradient(135deg, #1d4ed8, #7c3aed 58%, #0f172a);
}

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

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

.year-badge,
.rank-mark {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
}

.year-badge {
    right: 12px;
}

.rank-mark {
    left: 12px;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.movie-body {
    padding: 16px;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--primary-700);
    font-size: 0.82rem;
    font-weight: 800;
}

.movie-body h3,
.rank-copy h3 {
    margin: 8px 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.movie-body h3 a:hover,
.rank-copy h3 a:hover {
    color: var(--primary-700);
}

.movie-body p,
.rank-copy p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.movie-card-compact .movie-body h3 {
    font-size: 1rem;
}

.movie-card-compact .movie-body p {
    display: none;
}

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

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

.category-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 24px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.16);
}

.category-kicker {
    color: var(--primary-600);
    font-weight: 800;
    font-size: 0.86rem;
}

.category-card h3 {
    margin: 8px 0;
    font-size: 1.35rem;
}

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

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a {
    color: var(--secondary-700);
    background: var(--secondary-100);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.category-samples a:hover {
    color: var(--primary-700);
    background: var(--primary-50);
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: auto 92px 1fr;
    gap: 16px;
    align-items: center;
    border-radius: 20px;
    background: #ffffff;
    padding: 14px;
    box-shadow: var(--shadow-card);
}

.list-rank {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
}

.list-dot {
    background: var(--primary-600);
}

.rank-poster {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #1d4ed8, #581c87);
}

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

.page-hero,
.detail-hero {
    padding: 126px 0 62px;
    color: var(--secondary-900);
    background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 45%, #f5f3ff 100%);
}

.page-hero-rank,
.detail-hero {
    color: #ffffff;
    background: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.48), transparent 28%), linear-gradient(135deg, #020617 0%, #172554 52%, #3b0764 100%);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-hero p {
    max-width: 760px;
    color: var(--secondary-600);
    font-size: 1.1rem;
}

.page-hero-rank p,
.detail-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: inherit;
    opacity: 0.78;
    font-weight: 700;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px 180px;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.filter-field label {
    display: block;
    margin: 0 0 7px;
    color: var(--secondary-700);
    font-size: 0.85rem;
    font-weight: 800;
}

.filter-panel select {
    border-radius: 16px;
}

.empty-state {
    display: none;
    margin: 24px 0;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

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

.detail-head {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

.detail-copy h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.detail-copy p {
    max-width: 780px;
    font-size: 1.1rem;
}

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

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

.player-card {
    border-radius: 28px;
    background: #020617;
    padding: 10px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.26), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-500), #7c3aed);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42);
    font-size: 1.6rem;
    padding-left: 4px;
}

.play-overlay strong {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

.play-overlay em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
}

.player-status {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    color: #ffffff;
    pointer-events: none;
    font-weight: 700;
}

.player-status:empty {
    display: none;
}

.content-panel {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: clamp(24px, 4vw, 42px);
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
}

.content-panel h2:not(:first-child) {
    margin-top: 30px;
}

.content-panel p {
    margin: 0;
    color: var(--secondary-700);
    font-size: 1.05rem;
}

.site-footer {
    margin-top: 40px;
    color: var(--secondary-300);
    background: var(--secondary-900);
}

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

.footer-brand {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1rem;
}

.site-footer p {
    margin: 0;
    max-width: 390px;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: var(--secondary-300);
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 18px 16px;
    text-align: center;
    color: var(--secondary-500);
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-button {
        display: flex;
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }

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

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

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

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .header-inner {
        height: 66px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 840px;
    }

    .hero-inner {
        min-height: 630px;
        padding-top: 100px;
        padding-bottom: 210px;
        grid-template-columns: 1fr;
    }

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

    .hero-search-card {
        margin-top: -150px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        bottom: 210px;
    }

    .section-head {
        display: block;
    }

    .section-link {
        margin-top: 14px;
    }

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

    .movie-body {
        padding: 13px;
    }

    .movie-body p,
    .tag-row {
        font-size: 0.82rem;
    }

    .rank-item {
        grid-template-columns: 34px 76px 1fr;
        gap: 11px;
        padding: 11px;
    }

    .rank-copy p,
    .rank-copy .tag-row {
        display: none;
    }

    .list-rank {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 470px) {
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-grid-large {
        grid-template-columns: 1fr;
    }

    .ghost-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        width: 100%;
    }
}
