:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --card: rgba(15, 23, 42, 0.72);
    --card-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.18);
    --text: #ffffff;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --pink: #f472b6;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(59, 130, 246, 0.18), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 16px 42px rgba(34, 211, 238, 0.28);
}

.brand-text {
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: #cbd5e1;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: white;
    background: rgba(15, 23, 42, 0.78);
}

.mobile-nav {
    display: none;
    padding: 8px 22px 18px;
    border-top: 1px solid var(--line);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
}

.mobile-link.muted {
    color: #94a3b8;
}

.hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
}

.hero-track,
.hero-slide {
    min-height: 710px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: 48px;
    padding: 116px max(24px, calc((100vw - 1240px) / 2 + 24px)) 170px;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.64), rgba(2, 6, 23, 0.92)),
        var(--hero-bg);
    background-position: center;
    background-size: cover;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.02);
}

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

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero h2 {
    margin: 18px 0 0;
    font-size: clamp(1.8rem, 3vw, 3.3rem);
    line-height: 1.08;
    color: #e0f2fe;
}

.hero-desc {
    margin: 22px 0 0;
    max-width: 690px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.9;
}

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

.hero-tags {
    margin-top: 26px;
}

.hero-tags span,
.detail-tags span,
.card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(8, 47, 73, 0.45);
    font-size: 0.82rem;
    font-style: normal;
}

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

.primary-button,
.secondary-button,
.text-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 18px 48px rgba(34, 211, 238, 0.26);
}

.secondary-button,
.ghost-button {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
}

.secondary-button.small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.text-button {
    color: var(--cyan);
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.ghost-button:hover,
.movie-card:hover,
.movie-row:hover,
.category-tile:hover,
.ranking-card:hover {
    transform: translateY(-3px);
}

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

.hero-poster {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4.15;
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.7);
}

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

.hero-poster span,
.poster-play,
.play-dot {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.92);
    color: #001018;
    font-weight: 900;
}

.hero-poster span {
    left: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
}

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: min(1192px, calc(100vw - 48px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.64);
    backdrop-filter: blur(18px);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(148, 163, 184, 0.45);
}

.hero-dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-search {
    display: flex;
    overflow: hidden;
    min-height: 48px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: white;
    background: transparent;
}

.hero-search button {
    border: 0;
    padding: 0 18px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 800;
}

.hero-quick {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-quick a {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.9rem;
}

.site-section,
.inner-page,
.detail-page > section {
    width: min(1240px, calc(100vw - 48px));
    margin: 0 auto;
}

.site-section {
    padding: 76px 0 0;
}

.site-section.no-top {
    padding-top: 28px;
}

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

.section-heading p {
    margin: 0 0 8px;
    color: var(--cyan);
    font-weight: 800;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.section-heading > a {
    color: var(--cyan);
    font-weight: 800;
}

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

.category-tile,
.overview-cover {
    position: relative;
    min-height: 174px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    padding: 22px;
    background-image: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.92)), var(--tile-bg);
    background-position: center;
    background-size: cover;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
    transition: transform 0.2s ease;
}

.category-tile span,
.overview-cover span {
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile strong {
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.65;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.32);
    background: rgba(15, 23, 42, 0.92);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(2, 6, 23, 0.82));
}

.poster-play {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 10px 0 8px;
    font-size: 1rem;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--cyan);
}

.card-body p,
.story-card p,
.page-hero p,
.detail-copy p,
.overview-body p,
.ranking-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

.card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5em;
    margin: 0;
    font-size: 0.92rem;
}

.card-meta {
    gap: 6px;
}

.card-meta span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 0.76rem;
}

.tagline {
    margin-top: 12px;
    color: #94a3b8;
    font-size: 0.84rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.filter-box {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(14px);
}

.filter-box label {
    display: grid;
    gap: 7px;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.86rem;
}

.filter-box input,
.filter-box select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 13px;
    outline: 0;
    padding: 0 12px;
    color: white;
    background: rgba(2, 6, 23, 0.7);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: start;
}

.rank-panel,
.latest-panel,
.story-card,
.category-overview-card,
.ranking-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.rank-panel {
    padding: 12px;
}

.rank-line {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 52px;
    border-radius: 14px;
    padding: 0 12px;
    transition: background 0.2s ease;
}

.rank-line:hover {
    background: rgba(34, 211, 238, 0.1);
}

.rank-num {
    color: var(--cyan);
    font-weight: 900;
}

.rank-line em {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: normal;
}

.latest-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.movie-row {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 16px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.58);
    transition: transform 0.2s ease, background 0.2s ease;
}

.movie-row:hover {
    background: rgba(30, 41, 59, 0.72);
}

.row-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
}

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

.play-dot {
    right: 8px;
    bottom: 8px;
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
}

.row-body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.row-body strong,
.row-body small,
.row-body em {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.row-body small,
.row-body em {
    color: #94a3b8;
    font-style: normal;
}

.inner-page {
    padding-top: 54px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 48px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.92));
    box-shadow: var(--shadow);
}

.page-hero.compact {
    min-height: 270px;
    display: grid;
    align-content: center;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
    color: #94a3b8;
}

.crumbs a:hover {
    color: var(--cyan);
}

.category-overview-list {
    display: grid;
    gap: 22px;
    margin: 38px 0 90px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
}

.overview-cover {
    min-height: 250px;
}

.overview-body h2 {
    margin: 4px 0 10px;
    font-size: 1.8rem;
}

.overview-samples {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    transition: transform 0.2s ease;
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
}

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

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    min-width: 38px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #001018;
    background: var(--cyan);
    font-weight: 900;
}

.ranking-card h2 {
    margin: 6px 0 10px;
    font-size: 1.35rem;
}

.detail-page {
    padding-top: 46px;
}

.detail-head {
    padding-top: 26px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-top: 22px;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 16% 20%, rgba(34, 211, 238, 0.18), transparent 22rem),
        rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4.15;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

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

.detail-copy p {
    max-width: 780px;
    margin-top: 22px;
    font-size: 1.06rem;
}

.detail-tags {
    margin-top: 18px;
}

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

.player-section h2 {
    margin: 0 0 18px;
    font-size: 2rem;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    background: black;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.64));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    font-size: 2.1rem;
    box-shadow: 0 20px 56px rgba(34, 211, 238, 0.32);
}

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

.detail-content {
    display: grid;
    gap: 20px;
    padding-top: 30px;
}

.story-card {
    padding: 26px;
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.story-card p {
    margin: 0;
}

.detail-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-nav-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 13px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.68);
}

.related-section {
    padding-bottom: 84px;
}

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

.site-footer {
    margin-top: 88px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
    width: min(1240px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    gap: 18px;
    color: #94a3b8;
}

.footer-inner p {
    max-width: 740px;
    margin: 0;
    line-height: 1.75;
}

.footer-brand strong {
    color: white;
    font-size: 1.2rem;
}

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

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

.copyright {
    font-size: 0.9rem;
}

.is-hidden {
    display: none !important;
}

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

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

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

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero,
    .hero-track,
    .hero-slide {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding-top: 96px;
        padding-bottom: 210px;
    }

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

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

    .hero-quick {
        justify-content: flex-start;
    }

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

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

    .detail-poster {
        width: min(320px, 100%);
    }

    .ranking-card {
        grid-template-columns: 130px minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .nav-shell {
        height: 66px;
        padding: 0 16px;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .hero,
    .hero-track,
    .hero-slide {
        min-height: 820px;
    }

    .hero-slide {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-section,
    .inner-page,
    .detail-page > section,
    .footer-inner {
        width: min(100vw - 28px, 1240px);
    }

    .page-hero,
    .detail-hero,
    .story-card {
        padding: 22px;
        border-radius: 22px;
    }

    .movie-grid,
    .movie-grid.dense,
    .related-grid,
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body p {
        display: none;
    }

    .movie-row {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .rank-line {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-line em {
        display: none;
    }

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

    .hero-actions {
        display: grid;
    }
}
