:root {
    --bg: #ffffff;
    --soft: #f8fafc;
    --soft-blue: #eff6ff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --slate: #0f172a;
    --slate-2: #1e293b;
    --green: #16a34a;
    --amber: #d97706;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.is-nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #fff;
    background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

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

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.35);
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 22px;
}

.brand-text em {
    margin-top: 3px;
    color: #cbd5e1;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

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

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

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 4px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e293b;
}

.mobile-nav-link {
    display: block;
    padding: 14px 24px;
}

.hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

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

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

.hero-bg,
.detail-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.1);
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 28%, rgba(37, 99, 235, 0.42), transparent 34%), linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.82) 44%, rgba(15, 23, 42, 0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    min-height: 660px;
    gap: 48px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.inner-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2.4vw, 24px);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 12px;
    font-weight: 800;
}

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

.hero-tags span,
.detail-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(12px);
}

.hero-actions,
.detail-copy .btn {
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-ghost {
    margin-left: 12px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.9);
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.48);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: #fff;
}

.feature-strip {
    margin-top: -56px;
    position: relative;
    z-index: 12;
}

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

.feature-card {
    min-height: 126px;
    padding: 22px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.feature-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.feature-card span {
    color: var(--muted);
    font-weight: 600;
}

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

.soft-bg {
    background: linear-gradient(180deg, var(--soft), var(--soft-blue));
}

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

.section-head h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.section-more,
.text-link {
    color: var(--blue);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.15);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76));
    opacity: 0.86;
}

.play-dot,
.rank-badge,
.movie-region {
    position: absolute;
    z-index: 2;
}

.play-dot {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.9);
    color: #fff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-region {
    left: 10px;
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    right: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #f59e0b;
    color: #fff;
    font-weight: 900;
}

.movie-info {
    padding: 14px;
}

.movie-info h2 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card:hover .movie-info h2 {
    color: var(--blue);
}

.movie-one-line {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.movie-meta span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-tile {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 22px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.category-tile:hover img {
    opacity: 0.92;
    transform: scale(1.08);
}

.category-tile span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.88));
}

.category-tile strong,
.category-tile em {
    position: absolute;
    left: 18px;
    right: 18px;
    z-index: 2;
    color: #fff;
}

.category-tile strong {
    bottom: 58px;
    font-size: 24px;
    font-weight: 900;
}

.category-tile em {
    bottom: 18px;
    color: #dbeafe;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

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

.movie-card-wide {
    display: grid;
    grid-template-columns: 138px 1fr;
}

.movie-card-wide .movie-cover {
    aspect-ratio: 3 / 4;
    height: 100%;
}

.movie-card-wide .movie-info h2 {
    font-size: 18px;
}

.inner-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f172a);
}

.inner-hero {
    padding: 82px 0;
}

.inner-hero.compact {
    padding: 52px 0;
}

.inner-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 84% 20%, rgba(59, 130, 246, 0.34), transparent 32%), radial-gradient(circle at 8% 80%, rgba(14, 165, 233, 0.18), transparent 28%);
}

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

.inner-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 19px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
}

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

.filter-panel {
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
}

.search-box,
.select-box {
    display: grid;
    gap: 6px;
    color: #334155;
    font-weight: 900;
}

.search-box {
    flex: 1 1 320px;
}

.select-box {
    min-width: 150px;
}

.search-box input,
.select-box select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.select-box select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-empty {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--muted);
    font-weight: 800;
    text-align: center;
}

.catalog-grid .movie-card[hidden] {
    display: none;
}

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

.category-panel {
    display: grid;
    grid-template-columns: 230px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 220px;
    background: #0f172a;
}

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

.category-panel-body {
    padding: 26px;
}

.category-panel h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
}

.category-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    font-weight: 650;
}

.detail-hero {
    min-height: 560px;
}

.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.58));
}

.detail-hero-inner {
    position: relative;
    z-index: 3;
    padding: 52px 0 66px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

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

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 64px);
}

.detail-one-line {
    margin: 20px 0 0;
    color: #dbeafe;
    font-size: 22px;
    font-weight: 700;
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e0f2fe;
    font-size: 13px;
    font-weight: 800;
}

.detail-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 24px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.74));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-button {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding: 0 0 0 4px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 30px;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.46);
}

.player-overlay strong {
    max-width: 90%;
    font-size: 24px;
    font-weight: 900;
}

.text-panel,
.side-card {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.text-panel h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
}

.text-panel p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    font-weight: 560;
}

.side-card {
    position: sticky;
    top: 100px;
    margin-top: 0;
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    margin: 0;
}

.side-card dt {
    color: var(--muted);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: var(--ink);
    font-weight: 760;
}

.side-card a {
    color: var(--blue);
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    padding: 54px 0 34px;
}

.footer-brand {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
}

.site-footer p {
    margin: 0;
    max-width: 460px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.back-top {
    border: 0;
    color: #cbd5e1;
    background: transparent;
    font-weight: 800;
}

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

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

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

    .hero-content {
        grid-template-columns: 1fr 280px;
    }
}

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

    .nav-toggle {
        display: block;
    }

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

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 46px 0 78px;
    }

    .hero-poster {
        display: none;
    }

    .feature-strip {
        margin-top: 0;
        padding: 18px 0 0;
        background: var(--soft);
    }

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

    .category-panel-grid,
    .detail-main-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-layout {
        grid-template-columns: 180px 1fr;
    }

    .side-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text em {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 640px;
    }

    .hero p,
    .detail-one-line {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
    }

    .btn-ghost {
        margin-left: 0;
    }

    .page-section {
        padding: 46px 0;
    }

    .section-head {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 12px;
    }

    .feature-grid,
    .category-grid,
    .movie-grid,
    .rank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .movie-info {
        padding: 10px;
    }

    .movie-info h2 {
        min-height: 40px;
        font-size: 14px;
    }

    .movie-one-line {
        font-size: 12px;
    }

    .tag-row span {
        font-size: 11px;
    }

    .movie-card-wide {
        grid-template-columns: 110px 1fr;
    }

    .inner-hero {
        padding: 54px 0;
    }

    .filter-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .select-box {
        min-width: 0;
    }

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

    .detail-poster {
        width: 190px;
    }

    .detail-hero-inner {
        padding: 32px 0 42px;
    }

    .player-button {
        width: 66px;
        height: 66px;
    }

    .player-overlay strong {
        font-size: 18px;
    }

    .text-panel,
    .side-card {
        padding: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
