:root {
    --rose-900: #881337;
    --rose-700: #be123c;
    --rose-600: #e11d48;
    --amber-500: #f59e0b;
    --amber-100: #fef3c7;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
    --soft-shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 42%, #fff7ed 100%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(229, 231, 235, 0.78);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rose-700);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.site-logo::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.28);
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--gray-600);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--rose-700);
    background: #fff1f2;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--rose-700);
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 16px;
    gap: 8px;
    flex-wrap: wrap;
}

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

main {
    overflow: hidden;
}

.home-hero {
    position: relative;
    min-height: 640px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-900), #7c2d12);
}

.home-hero > h1 {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 170px;
    width: min(1180px, calc(100% - 48px));
    transform: translateX(-50%);
    margin: 0;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.hero-slider {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1.2s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(245, 158, 11, 0.25), transparent 28%),
        linear-gradient(90deg, rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.54) 48%, rgba(3, 7, 18, 0.2));
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 48%;
    width: min(1180px, calc(100% - 48px));
    transform: translate(-50%, -50%);
    padding-top: 90px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    color: #ffe4e6;
    background: rgba(225, 29, 72, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(38px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 52px rgba(0, 0, 0, 0.45);
}

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

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

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

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    box-shadow: 0 18px 45px rgba(225, 29, 72, 0.35);
}

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

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

.hero-control {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
    background: rgba(3, 7, 18, 0.34);
    font-size: 38px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-control.prev {
    left: 26px;
}

.hero-control.next {
    right: 26px;
}

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

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 56px;
    background: var(--white);
}

.hero-search-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 400px) 1.2fr;
    gap: 18px;
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    margin: -92px auto 0;
    padding: 22px;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-search-panel strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.hero-search-panel span {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
}

.search-box {
    display: block;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: none;
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
    border-color: rgba(225, 29, 72, 0.48);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.hero-pills,
.page-pills,
.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-pills a,
.page-pills a,
.footer-links a {
    padding: 9px 13px;
    color: var(--rose-700);
    background: #fff1f2;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.content-section,
.page-shell,
.detail-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.content-section {
    padding: 72px 0 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1,
.player-section h2,
.detail-content h2 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-link,
.text-link {
    color: var(--rose-700);
    background: #fff1f2;
}

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 72, 0.25);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #881337);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
}

.poster-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: var(--white);
    background: rgba(225, 29, 72, 0.86);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-title {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: var(--gray-900);
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover,
.rank-title:hover {
    color: var(--rose-700);
}

.movie-line {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 0;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-100);
    font-size: 12px;
}

.movie-meta a {
    color: var(--rose-700);
    font-weight: 800;
}

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

.tag-row span,
.detail-tags span {
    padding: 6px 9px;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    min-height: 150px;
    padding: 24px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-900), #b45309);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.category-card span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 24px;
    font-weight: 950;
}

.category-card em {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.6;
}

.rank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 50px 76px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 118px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    border-radius: 16px;
    font-weight: 950;
}

.rank-poster {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    background: var(--gray-200);
}

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

.rank-title {
    display: block;
    color: var(--gray-900);
    font-weight: 950;
    line-height: 1.35;
}

.rank-item p {
    margin: 6px 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.5;
}

.rank-item span {
    color: var(--rose-700);
    font-size: 12px;
    font-weight: 800;
}

.page-shell {
    padding: 34px 0 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 24px;
    color: var(--gray-500);
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--rose-700);
    font-weight: 800;
}

.page-hero {
    position: relative;
    margin-bottom: 30px;
    padding: 42px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-900), #78350f);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.page-search {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-top: 24px;
}

.page-pills {
    position: relative;
    z-index: 1;
    margin-top: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-row img {
    height: 118px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--gray-200);
}

.category-overview-card h2 {
    margin: 4px 0 10px;
    font-size: 24px;
}

.category-overview-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.category-movie-grid,
.library-grid {
    margin-top: 30px;
}

.detail-shell {
    padding: 30px 0 90px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f2937, var(--rose-900));
}

.detail-poster img {
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info .eyebrow {
    align-self: flex-start;
    color: var(--rose-700);
    background: #fff1f2;
    border-color: #ffe4e6;
}

.detail-info h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
}

.detail-one-line {
    margin: 18px 0 0;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0;
}

.detail-meta div {
    padding: 15px;
    background: var(--gray-100);
    border-radius: 18px;
}

.detail-meta dt {
    margin-bottom: 5px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.detail-meta dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 900;
}

.player-section,
.detail-content {
    margin-top: 32px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--soft-shadow);
}

.player-section h2,
.detail-content h2 {
    font-size: 28px;
}

.player-box {
    position: relative;
    margin-top: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--gray-950);
    border-radius: 24px;
}

.player-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-950);
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: var(--white);
    border: 0;
    background: radial-gradient(circle at 50% 35%, rgba(225, 29, 72, 0.28), rgba(3, 7, 18, 0.72));
    cursor: pointer;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-icon {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    box-shadow: 0 18px 46px rgba(225, 29, 72, 0.38);
}

.play-icon::after {
    content: "";
    position: absolute;
    left: 33px;
    top: 25px;
    border-left: 24px solid var(--white);
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.player-overlay strong {
    max-width: 80%;
    font-size: clamp(20px, 3vw, 34px);
    text-align: center;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.detail-content p {
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.9;
}

.related-section {
    width: 100%;
}

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

.site-footer {
    margin-top: 90px;
    padding: 54px 24px 28px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, var(--gray-950), var(--rose-900));
}

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

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

.copyright {
    width: min(1240px, 100%);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
}

[data-card].is-hidden,
.rank-item.is-hidden {
    display: none;
}

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

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

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

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

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

    .home-hero > h1 {
        bottom: 188px;
    }

    .hero-slider {
        height: 78vh;
    }

    .hero-control {
        display: none;
    }

    .category-grid,
    .category-overview-grid,
    .rank-list,
    .rank-list-wide,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .category-cover-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-poster img {
        min-height: auto;
        max-height: 560px;
    }
}

@media (max-width: 680px) {
    .nav-shell,
    .mobile-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-logo {
        font-size: 19px;
    }

    .content-section,
    .page-shell,
    .detail-shell {
        width: min(100% - 28px, 1240px);
    }

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

    .hero-content {
        width: calc(100% - 32px);
        top: 43%;
    }

    .hero-content p {
        font-size: 15px;
    }

    .home-hero > h1 {
        width: calc(100% - 32px);
        bottom: 216px;
    }

    .hero-dots {
        bottom: 158px;
    }

    .hero-search-panel {
        width: calc(100% - 28px);
        margin-top: -132px;
        padding: 18px;
    }

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

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

    .movie-meta {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .page-hero,
    .detail-hero,
    .player-section,
    .detail-content {
        padding: 22px;
        border-radius: 22px;
    }

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

    .rank-item {
        grid-template-columns: 42px 62px 1fr;
    }

    .category-cover-row img {
        height: 88px;
    }
}

@media (max-width: 420px) {
    .movie-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

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