:root {
    --bg: #fff7fb;
    --panel: #ffffff;
    --ink: #17111f;
    --muted: #6b6274;
    --line: rgba(120, 72, 140, 0.16);
    --pink: #ec4899;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --shadow: 0 24px 70px rgba(88, 28, 135, 0.16);
    --soft-shadow: 0 14px 36px rgba(88, 28, 135, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 34rem),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 48%, #fff7fb 100%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.38);
}

.logo-text {
    font-size: 1.35rem;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: #54485f;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    cursor: pointer;
    padding: 11px;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

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

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: #170d24;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image:
        linear-gradient(90deg, rgba(18, 8, 28, 0.92), rgba(18, 8, 28, 0.58), rgba(18, 8, 28, 0.74)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-backdrop {
    position: absolute;
    inset: auto 8% -22% 35%;
    height: 420px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.48), rgba(139, 92, 246, 0.38));
    filter: blur(70px);
}

.hero-content {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.46fr);
    gap: 56px;
    align-items: center;
    padding: 96px 0 112px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #be185d;
    background: linear-gradient(90deg, rgba(252, 231, 243, 0.96), rgba(237, 233, 254, 0.96));
}

.hero-copy h1 {
    max-width: 760px;
    margin: 22px 0 20px;
    font-size: clamp(3rem, 8vw, 6.9rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.hero-copy p,
.page-hero p,
.detail-main-info p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.82;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.hero-tags span,
.hero-tags a,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 750;
    color: #7c2d72;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.52);
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.34);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(139, 92, 246, 0.24);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
    transition: transform 0.35s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.hero-toolbar {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: min(1240px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-dots {
    display: flex;
    gap: 9px;
}

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

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

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

.hero-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.16);
}

.search-panel,
.content-section,
.page-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.search-panel {
    transform: translateY(-42px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-panel h2 {
    margin: 0 0 6px;
    font-size: 1.65rem;
}

.search-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.search-box input {
    width: 100%;
    height: 54px;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 999px;
    padding: 0 20px;
    color: var(--ink);
    background: #fff7fb;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.search-box input:focus {
    border-color: rgba(236, 72, 153, 0.45);
    box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.13);
}

.content-section {
    padding: 34px 0 54px;
}

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

.section-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, #111827, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-more {
    min-height: 42px;
    color: #8b1c6f;
    background: #ffffff;
    border: 1px solid rgba(236, 72, 153, 0.18);
}

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

.category-tile,
.overview-card a {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 242, 248, 0.96));
    border: 1px solid rgba(236, 72, 153, 0.12);
    box-shadow: var(--soft-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.category-tile strong,
.overview-card h2 {
    font-size: 1.35rem;
    color: #831843;
}

.category-tile span,
.overview-card p {
    color: var(--muted);
    line-height: 1.65;
}

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

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

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

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

.movie-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(236, 72, 153, 0.12);
    box-shadow: var(--soft-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: #241832;
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(20, 8, 28, 0.86));
}

.poster-meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.poster-meta span,
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 34px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.movie-info {
    padding: 17px 16px 18px;
}

.movie-info h3 {
    margin: 0 0 10px;
    min-height: 2.7em;
    font-size: 1.05rem;
    line-height: 1.35;
}

.movie-info p {
    margin: 0;
    min-height: 4.8em;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.tag-row {
    min-height: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0;
}

.tag-row span {
    padding: 5px 9px;
    color: #9d174d;
    background: #fce7f3;
    border: 0;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.card-bottom strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, #f59e0b, var(--pink));
}

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

.ranking-panel,
.detail-card,
.player-card {
    border-radius: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(236, 72, 153, 0.12);
    box-shadow: var(--soft-shadow);
}

.ranking-panel h2,
.detail-card h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.mini-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(90deg, #fff7fb, #ffffff);
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 14px;
}

.mini-card strong,
.mini-card small {
    display: block;
}

.mini-card strong {
    line-height: 1.35;
    margin-bottom: 5px;
}

.mini-card small {
    color: var(--muted);
}

.mini-rank {
    display: inline-flex;
    margin-right: 6px;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.filter-button {
    border: 0;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #6b214d;
    font-weight: 850;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.12);
    cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.sub-page {
    padding-top: 34px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    margin-top: 26px;
    padding: 54px;
    border-radius: 36px;
    background: linear-gradient(135deg, #3b0764, #be185d, #4f46e5);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 820px;
    margin: 18px 0 14px;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.small-hero p {
    max-width: 760px;
}

.ranking-hero {
    background-image:
        linear-gradient(90deg, rgba(18, 8, 28, 0.88), rgba(18, 8, 28, 0.52)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.page-hero-overlay,
.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right top, rgba(236, 72, 153, 0.28), transparent 34rem);
}

.page-hero-content,
.detail-hero-content {
    position: relative;
    z-index: 1;
}

.overview-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 18px;
}

.overview-posters img {
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    object-fit: cover;
}

.page-search {
    max-width: 560px;
    margin: 0 0 24px;
}

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

.detail-page {
    padding-bottom: 40px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background-image:
        linear-gradient(90deg, rgba(18, 8, 28, 0.95), rgba(18, 8, 28, 0.68), rgba(18, 8, 28, 0.82)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.detail-hero-content {
    width: min(1240px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    padding: 56px 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
}

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

.detail-main-info {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    width: 260px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.detail-main-info h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

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

.detail-meta-row span,
.detail-meta-row strong {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-meta-row strong {
    color: #ffffff;
    background: linear-gradient(90deg, #f59e0b, var(--pink));
}

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

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

.player-card {
    padding: 12px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #07050b;
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #07050b;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(7, 5, 11, 0.14), rgba(7, 5, 11, 0.68));
    cursor: pointer;
    transition: opacity 0.25s ease;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 20px 46px rgba(236, 72, 153, 0.38);
}

.player-overlay strong {
    font-size: 1.25rem;
}

.detail-card p {
    margin: 0;
    color: #50445c;
    font-size: 1.05rem;
    line-height: 1.92;
}

.site-footer {
    margin-top: 24px;
    color: #d8c9e6;
    background: #170d24;
}

.footer-grid {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 34px;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 36px;
}

.footer-logo {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-grid p {
    max-width: 420px;
    margin: 0;
    line-height: 1.8;
}

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

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(236, 72, 153, 0.45);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bca9ce;
}

@media (max-width: 1180px) {
    .full-grid,
    .ranking-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .mobile-menu-button {
        display: block;
    }

    .hero-content,
    .detail-main-info,
    .split-section,
    .detail-layout,
    .search-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        min-height: 760px;
        padding-top: 72px;
        gap: 28px;
    }

    .hero-carousel {
        min-height: 760px;
    }

    .hero-poster {
        width: min(320px, 82vw);
        margin: 0 auto;
    }

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

    .sticky-panel {
        position: static;
    }

    .reverse-on-mobile > aside {
        order: 2;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        height: 66px;
    }

    .logo-text {
        font-size: 1.08rem;
    }

    .hero-copy h1,
    .detail-main-info h1,
    .page-hero h1 {
        letter-spacing: -0.055em;
    }

    .hero-copy p,
    .page-hero p,
    .detail-main-info p {
        font-size: 1rem;
    }

    .search-panel,
    .page-hero,
    .ranking-panel,
    .detail-card {
        border-radius: 24px;
        padding: 22px;
    }

    .content-section {
        padding: 24px 0 38px;
    }

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

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

    .movie-info h3 {
        font-size: 0.96rem;
    }

    .movie-info p {
        font-size: 0.86rem;
    }
}

@media (max-width: 460px) {
    .full-grid,
    .ranking-grid,
    .compact-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }
}
