:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --emerald: #34d399;
    --emerald-deep: #059669;
    --cyan: #22d3ee;
    --amber: #f59e0b;
    --rose: #fb7185;
    --shadow: 0 22px 70px rgba(2, 6, 23, 0.42);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 15% 8%, rgba(52, 211, 153, 0.22), transparent 32rem),
        radial-gradient(circle at 86% 20%, rgba(34, 211, 238, 0.16), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    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-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #00140d;
    box-shadow: 0 16px 35px rgba(52, 211, 153, 0.28);
}

.brand-text {
    font-size: 1.12rem;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link {
    color: var(--soft);
    font-size: 0.95rem;
    padding: 9px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-search,
.mobile-search,
.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
    padding: 6px;
}

.header-search input,
.mobile-search input,
.search-box input,
.filter-bar input,
.filter-bar select {
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    width: 190px;
    padding: 8px 8px 8px 12px;
}

.header-search button,
.mobile-search button,
.search-box button,
.btn,
.filter-reset {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 9px 16px;
    color: #00140d;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 16px 32px rgba(34, 211, 238, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-box button:hover,
.btn:hover,
.filter-reset:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.26);
}

.btn.secondary {
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    box-shadow: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.82);
    color: var(--text);
}

.mobile-panel {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel-strong);
}

.mobile-panel a {
    display: block;
    padding: 12px 4px;
    color: var(--soft);
}

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

.main-wrap,
.page-wrap,
.detail-wrap {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-carousel {
    width: min(1240px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    padding: 52px 0 36px;
    position: relative;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(6, 78, 59, 0.44)),
        radial-gradient(circle at 78% 26%, rgba(34, 211, 238, 0.26), transparent 27rem);
    box-shadow: var(--shadow);
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(12px);
}

.hero-stage::before {
    width: 300px;
    height: 300px;
    right: 10%;
    top: 8%;
    background: rgba(52, 211, 153, 0.14);
}

.hero-stage::after {
    width: 360px;
    height: 360px;
    left: -80px;
    bottom: -110px;
    background: rgba(34, 211, 238, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 40px;
    padding: 64px;
    opacity: 0;
    transform: translateX(22px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker,
.breadcrumb {
    color: var(--emerald);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-content h1,
.hero-content h2 {
    margin: 12px 0 0;
    max-width: 760px;
    font-size: clamp(2.45rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.hero-content h2 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.hero-content p {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: 1.05rem;
    line-height: 1.85;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-meta span,
.movie-tags span,
.detail-tags span,
.category-pill,
.info-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(6, 78, 59, 0.35);
    font-size: 0.82rem;
}

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

.hero-poster {
    position: relative;
    z-index: 2;
    justify-self: center;
    width: min(360px, 100%);
    aspect-ratio: 3 / 4.2;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(6, 78, 59, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    transform: rotate(3deg);
}

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.72));
}

.hero-poster-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
}

.hero-controls {
    position: absolute;
    left: 64px;
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-control {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    cursor: pointer;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.34);
    cursor: pointer;
}

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

.category-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 54px;
}

.category-pill {
    min-height: 54px;
    justify-content: center;
    border-color: rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.64);
    color: var(--soft);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 211, 153, 0.42);
    background: rgba(6, 78, 59, 0.38);
    color: var(--text);
}

.content-section {
    margin: 0 0 66px;
}

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

.section-heading h2,
.page-hero h1,
.detail-main h1,
.content-panel h2,
.player-section h2 {
    margin: 6px 0 0;
    font-size: clamp(1.8rem, 3.8vw, 3.1rem);
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.content-panel p,
.detail-lead,
.category-card p {
    color: var(--soft);
    line-height: 1.78;
}

.section-more {
    color: var(--emerald);
    font-weight: 800;
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.46));
    box-shadow: 0 14px 42px rgba(2, 6, 23, 0.28);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
}

.poster-shell {
    position: relative;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(52, 211, 153, 0.18), transparent 48%),
        linear-gradient(145deg, #1e293b, #064e3b 85%);
}

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

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

.poster-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.75));
}

.poster-year,
.poster-score,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.poster-year {
    left: 12px;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.76);
    color: var(--soft);
}

.poster-score {
    right: 12px;
    top: 12px;
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.rank-badge {
    left: 12px;
    top: 12px;
    background: linear-gradient(135deg, var(--rose), var(--amber));
    color: #fff7ed;
}

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

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.movie-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.35;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 0.82rem;
}

.page-hero {
    margin: 42px 0 34px;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(6, 78, 59, 0.32)),
        radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.2), transparent 24rem);
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 820px;
}

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

.category-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.66);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.38);
}

.category-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(34, 211, 238, 0.2));
    color: var(--emerald);
    font-size: 1.8rem;
    font-weight: 900;
}

.category-card h2,
.category-card h3 {
    margin: 0 0 8px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 16px;
    margin: 0 0 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.58);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.34);
    color: var(--text);
}

.filter-bar input {
    min-width: min(360px, 100%);
    flex: 1 1 260px;
}

.filter-bar select {
    flex: 0 0 150px;
}

.empty-state {
    display: none;
    padding: 32px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 24px;
}

.empty-state.show {
    display: block;
}

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

.breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    text-transform: none;
    letter-spacing: 0;
}

.detail-main {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(6, 78, 59, 0.26)),
        radial-gradient(circle at 82% 28%, rgba(34, 211, 238, 0.16), transparent 28rem);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 3 / 4.2;
    background: linear-gradient(145deg, #1e293b, #064e3b);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.detail-main h1 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.info-pill {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.72);
    color: var(--soft);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.player-section,
.content-panel {
    margin-top: 34px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.64);
}

.player-box {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.player-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.78)),
        radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.22), transparent 18rem);
    cursor: pointer;
    z-index: 2;
}

.player-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.play-button-core {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 999px;
    color: #00140d;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(52, 211, 153, 0.32);
}

.play-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.player-message {
    display: none;
    margin-top: 14px;
    color: #fecaca;
}

.player-message.show {
    display: block;
}

.content-panel h2,
.player-section h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.25rem);
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.detail-info-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.26);
}

.detail-info-grid strong {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

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

.top-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.62);
}

.top-num {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #00140d;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    font-weight: 900;
}

.top-row h3 {
    margin: 0 0 8px;
}

.top-row p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.74);
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--muted);
}

.footer-brand {
    color: var(--text);
    font-size: 1.05rem;
}

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

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

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

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

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-carousel {
        min-height: auto;
        padding-top: 28px;
    }

    .hero-stage {
        min-height: 720px;
        border-radius: 28px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
        padding: 34px;
        gap: 26px;
    }

    .hero-poster {
        width: min(250px, 78vw);
        justify-self: start;
        transform: rotate(0);
    }

    .hero-controls {
        left: 34px;
        bottom: 24px;
    }

    .category-strip,
    .category-overview {
        grid-template-columns: 1fr 1fr;
    }

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

    .detail-poster {
        max-width: 320px;
    }

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .header-inner,
    .main-wrap,
    .page-wrap,
    .detail-wrap,
    .hero-carousel,
    .footer-inner,
    .mobile-panel {
        width: min(100% - 22px, 1240px);
    }

    .brand-text {
        max-width: 178px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

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

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

    .hero-content h1,
    .hero-content h2 {
        letter-spacing: -0.05em;
    }

    .hero-actions,
    .detail-actions,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .movie-grid.compact-grid,
    .category-strip,
    .category-overview,
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        grid-template-columns: 66px 1fr;
        padding: 16px;
    }

    .category-icon {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .top-row {
        grid-template-columns: 52px 1fr;
    }

    .top-row .btn {
        grid-column: 1 / -1;
        text-align: center;
    }
}
