:root {
    --rose: #f43f5e;
    --rose-dark: #be123c;
    --orange: #fb923c;
    --amber: #fbbf24;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #fff7ed;
    --card: rgba(255, 255, 255, 0.86);
    --line: rgba(244, 63, 94, 0.14);
    --shadow: 0 20px 50px rgba(190, 18, 60, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.24), transparent 34rem),
        radial-gradient(circle at top right, rgba(244, 63, 94, 0.18), transparent 32rem),
        linear-gradient(135deg, #fff7ed 0%, #fff1f2 45%, #fff7ed 100%);
}

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

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

main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.25);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text strong,
.footer-logo {
    display: block;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 15px;
    border-radius: 14px;
    color: #374151;
    font-weight: 650;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: white;
    background: linear-gradient(90deg, #fb7185, #fb923c);
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.2);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(244, 63, 94, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--rose-dark);
    border-radius: 99px;
    transition: all 0.25s ease;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
}

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

.mobile-nav-main,
.mobile-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-category-link {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--rose-dark);
    background: rgba(244, 63, 94, 0.08);
    font-size: 13px;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #f43f5e 0%, #fb923c 55%, #fbbf24 100%);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.7), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 115px 24px 190px;
    color: white;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: #fde68a;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 700px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}

.hero-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.primary-btn {
    min-height: 46px;
    padding: 0 24px;
    color: white;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    box-shadow: 0 14px 28px rgba(244, 63, 94, 0.25);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(244, 63, 94, 0.34);
}

.ghost-btn {
    min-height: 46px;
    padding: 0 22px;
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

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

.dark-btn {
    color: var(--rose-dark);
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.14);
}

.small-btn {
    min-height: 38px;
    padding: 0 17px;
    font-size: 14px;
}

.hero-poster {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    top: 105px;
    z-index: 3;
    width: 260px;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(3deg);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

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

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

.hero-search-card {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    width: min(1180px, calc(100% - 48px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-search-card strong {
    color: var(--rose-dark);
    font-size: 20px;
}

.hero-search-card span {
    color: #4b5563;
    font-weight: 650;
}

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

.hero-search-form input,
.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: 999px;
    padding: 0 16px;
    outline: none;
    background: white;
    color: var(--ink);
}

.hero-search-form input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.hero-search-form button {
    border: 0;
    min-width: 86px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    font-weight: 800;
    cursor: pointer;
}

.hero-category-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-category-links a {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--rose-dark);
    background: rgba(244, 63, 94, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.content-section,
.detail-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
}

.intro-band,
.filter-panel,
.page-hero {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.intro-band {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.intro-copy h2,
.section-heading h2,
.filter-panel h2,
.page-hero h1,
.detail-panel h1,
.detail-content h2 {
    margin: 0;
    color: #111827;
    letter-spacing: -0.03em;
}

.intro-copy p,
.section-heading p,
.filter-panel p,
.page-hero p,
.detail-one-line,
.detail-content p,
.category-card p,
.overview-body p {
    color: var(--muted);
    line-height: 1.8;
}

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

.section-heading h2 {
    font-size: clamp(26px, 4vw, 38px);
}

.text-link {
    color: var(--rose-dark);
}

.text-link:hover {
    color: var(--rose);
    transform: translateX(2px);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(244, 63, 94, 0.18);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: white;
    background: rgba(244, 63, 94, 0.92);
    font-weight: 800;
    font-size: 12px;
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.card-body {
    padding: 15px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
}

.card-meta span {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.1);
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

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

.tag-row span {
    color: var(--rose-dark);
    background: rgba(244, 63, 94, 0.08);
}

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

.category-card,
.category-overview-card {
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.category-card {
    padding: 18px;
}

.category-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    min-height: 160px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.82), rgba(251, 146, 60, 0.84));
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 160px;
    opacity: 0.78;
}

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

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: white;
    font-size: 25px;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.category-card ul,
.category-overview-card ul {
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
}

.category-card li,
.category-overview-card li {
    margin-top: 8px;
}

.category-card li a,
.category-overview-card li a {
    color: #374151;
}

.category-card li a:hover,
.category-overview-card li a:hover {
    color: var(--rose-dark);
}

.filter-panel {
    max-width: 1280px;
    margin: 38px auto 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 24px;
    align-items: center;
}

.filter-panel p {
    margin-bottom: 0;
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 10px;
}

.page-hero {
    max-width: 1280px;
    margin: 42px auto 0;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    background:
        radial-gradient(circle at 90% 10%, rgba(251, 146, 60, 0.2), transparent 18rem),
        rgba(255, 255, 255, 0.84);
}

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

.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.hero-side-list {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.08);
}

.hero-side-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--rose-dark);
}

.hero-side-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(244, 63, 94, 0.1);
}

.hero-side-list em {
    color: var(--muted);
    font-style: normal;
}

.category-overview-grid {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 360px 1fr;
}

.overview-visual {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}

.overview-visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.overview-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
}

.overview-visual b {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 1;
    color: white;
    font-size: 28px;
}

.overview-body {
    padding: 26px;
}

.overview-body h2 {
    margin: 0;
    font-size: 30px;
}

.overview-body li a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 58px 1fr 140px 80px 80px;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
}

.rank-row img {
    width: 58px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-row b {
    color: var(--rose-dark);
    font-size: 20px;
}

.rank-row em {
    color: var(--orange);
    font-style: normal;
    font-weight: 800;
}

.rank-title {
    font-weight: 800;
}

.detail-wrap {
    padding-top: 32px;
}

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

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

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 24px;
    align-items: stretch;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #050505;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
    min-height: 420px;
}

.video-shell video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    background: black;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: white;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.22), rgba(0, 0, 0, 0.28));
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 5px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 18px 38px rgba(244, 63, 94, 0.38);
    font-size: 36px;
}

.play-overlay b {
    font-size: 18px;
}

.video-shell.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-panel {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.detail-panel h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
}

.detail-meta {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.detail-meta div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(244, 63, 94, 0.06);
}

.detail-meta dt {
    color: var(--muted);
}

.detail-meta dd {
    margin: 0;
    font-weight: 800;
}

.detail-tags a {
    color: var(--rose-dark);
    background: rgba(244, 63, 94, 0.08);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 26px;
}

.detail-content article {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.detail-content h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 42px;
    color: #e5e7eb;
    background: #111827;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1.3fr;
    gap: 28px;
}

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

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

.footer-links strong {
    color: #fb7185;
    margin-bottom: 5px;
}

.footer-links a {
    color: #d1d5db;
}

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

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

.footer-category-links strong {
    grid-column: 1 / -1;
}

.no-match {
    grid-column: 1 / -1;
    padding: 24px;
    border-radius: 20px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.76);
    text-align: center;
}

@media (max-width: 1120px) {
    .hero-poster {
        display: none;
    }

    .hero-content {
        padding-right: 24px;
    }

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

    .category-overview-card,
    .player-layout,
    .detail-content,
    .page-hero {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: block;
    }

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

    .hero-content {
        padding-top: 98px;
        padding-bottom: 260px;
    }

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

    .hero-search-form,
    .filter-controls,
    .filter-panel,
    .intro-band,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .intro-band {
        display: grid;
    }

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

    .rank-row {
        grid-template-columns: 38px 48px 1fr;
    }

    .rank-row span:not(.rank-title),
    .rank-row em {
        display: none;
    }

    .video-shell,
    .video-shell video {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .content-section,
    .detail-wrap,
    .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .movie-grid,
    .listing-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 38px;
    }

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

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

    .page-hero {
        margin-left: 16px;
        margin-right: 16px;
    }
}
