:root {
    --color-primary: #f97316;
    --color-secondary: #ec4899;
    --color-accent: #0ea5e9;
    --color-dark: #0f172a;
    --color-text: #111827;
    --color-muted: #64748b;
    --color-soft: #f8fafc;
    --color-line: #e5e7eb;
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 34%, #fdf2f8 100%);
    min-height: 100vh;
}

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;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
}

.site-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.26);
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

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

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #f3f4f6;
}

.nav-search input {
    width: 160px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 10px;
}

.nav-search button,
.btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
}

.nav-search button,
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.22);
}

.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.btn-muted {
    color: #374151;
    background: #f3f4f6;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #f3f4f6;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: #111827;
}

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

.hero-bg,
.hero-slide::before {
    position: absolute;
    inset: 0;
    content: "";
}

.hero-bg {
    background: radial-gradient(circle at 16% 20%, rgba(249, 115, 22, 0.42), transparent 30%), radial-gradient(circle at 84% 22%, rgba(236, 72, 153, 0.36), transparent 28%), linear-gradient(135deg, #0f172a, #581c87 62%, #831843);
}

.hero-track {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 610px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.08fr 0.72fr;
    align-items: center;
    gap: 48px;
    padding: 72px 20px 170px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide::before {
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.64), rgba(15, 23, 42, 0.72)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(2px) saturate(1.16);
    opacity: 0.45;
    transform: scale(1.05);
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 13px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.22);
}

.hero h1,
.page-hero h1 {
    margin: 20px 0 16px;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.9;
}

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

.hero-tags span,
.tag-row span,
.meta-pills span,
.detail-tags a {
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-poster {
    justify-self: end;
    width: min(360px, 100%);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-poster span,
.movie-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.32);
}

.hero-poster span {
    width: 84px;
    height: 84px;
    font-weight: 900;
}

.hero-search-card {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 92px;
    width: min(980px, calc(100% - 40px));
    transform: translateX(-50%);
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.hero-search-card strong {
    font-size: 18px;
}

.hero-search-card form {
    display: flex;
    padding: 6px;
    border-radius: 999px;
    background: #fff;
}

.hero-search-card input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 0;
    outline: 0;
}

.hero-search-card button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

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

.hero-fast-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-thumbs {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 20px;
    width: min(820px, calc(100% - 40px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.hero-thumb.is-active {
    background: rgba(255, 255, 255, 0.28);
}

.hero-thumb img {
    width: 42px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.hero-thumb span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.content-section,
.detail-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 52px 20px;
}

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

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--color-muted);
}

.section-heading a {
    color: var(--color-primary);
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

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

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

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

.movie-card__poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.74));
}

.movie-card__score,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.movie-card__score {
    right: 12px;
    background: #f59e0b;
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, #111827, #475569);
}

.movie-card__play {
    z-index: 3;
    width: 64px;
    height: 64px;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-weight: 900;
}

.movie-card:hover .movie-card__play {
    opacity: 1;
}

.movie-card__body {
    padding: 18px;
}

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

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

.movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.tag-row span,
.meta-pills span,
.detail-tags a {
    color: #0f172a;
    background: #f1f5f9;
}

.horizontal-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 260px);
    gap: 20px;
    overflow-x: auto;
    padding: 8px 2px 18px;
    scroll-snap-type: x mandatory;
}

.horizontal-cards .movie-card {
    scroll-snap-align: start;
}

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

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

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: end;
    padding: 16px;
    border-radius: 22px;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.35s ease;
}

.category-card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.88));
}

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

.category-card span,
.category-card em {
    position: relative;
    z-index: 2;
}

.category-card span {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.category-card em {
    margin-left: auto;
    font-style: normal;
    opacity: 0.84;
}

.page-hero {
    max-width: var(--max-width);
    margin: 28px auto 0;
    padding: 64px 20px;
    border-radius: 0 0 40px 40px;
    color: #fff;
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.58), transparent 32%), radial-gradient(circle at 88% 20%, rgba(236, 72, 153, 0.46), transparent 30%), linear-gradient(135deg, #111827, #581c87 60%, #831843);
}

.page-hero--compact {
    min-height: 310px;
}

.category-hero,
.ranking-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: center;
}

.hero-mini-grid {
    display: grid;
    gap: 12px;
}

.mini-card {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.mini-card img {
    width: 64px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-card span {
    font-weight: 900;
}

.mini-card em {
    font-style: normal;
    color: #fde68a;
    font-weight: 900;
}

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

.overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.overview-card > a {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 210px;
}

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

.overview-card > a span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.overview-card h2 {
    margin: 8px 0 10px;
}

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

.overview-card em {
    color: #475569;
    font-style: normal;
    font-weight: 700;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 14px;
    color: #334155;
    background: #fff;
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.pagination .is-current {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.search-panel {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.search-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 14px;
}

.search-row label {
    display: grid;
    gap: 8px;
    color: #475569;
    font-weight: 800;
}

.search-row input,
.search-row select {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    padding: 12px;
    outline: 0;
    background: #fff;
}

.search-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.search-summary {
    margin: 26px 0;
    color: #475569;
    font-weight: 900;
}

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

.breadcrumb a {
    color: var(--color-primary);
}

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

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.32);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.72));
    cursor: pointer;
    text-align: center;
}

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

.play-mark {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.32);
    font-size: 32px;
}

.detail-card,
.side-card {
    margin-top: 24px;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.detail-title-row h1 {
    margin: 16px 0 0;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.15;
}

.score-large {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #fff;
    background: #f59e0b;
    font-size: 24px;
}

.lead-text {
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
}

.text-block {
    margin-top: 24px;
}

.text-block h2,
.side-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.text-block p {
    margin: 0;
    color: #475569;
    line-height: 2;
}

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

.detail-side {
    position: sticky;
    top: 92px;
}

.detail-poster {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}

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

.side-card dd {
    margin: 0;
    text-align: right;
    font-weight: 900;
}

.site-footer {
    margin-top: 50px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-grid h3 {
    color: #fff;
    margin: 0 0 14px;
}

.footer-grid p,
.footer-grid li {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-tags {
    margin: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #9ca3af;
}

@media (max-width: 1040px) {
    .movie-grid,
    .rank-list,
    .rank-list--long {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .detail-side {
        position: static;
    }

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

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        padding: 18px;
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow-card);
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-search input {
        width: 100%;
    }

    .hero {
        min-height: 820px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 50px;
        padding-bottom: 250px;
    }

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

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

    .hero-fast-links {
        flex-wrap: wrap;
    }

    .hero-thumbs {
        grid-template-columns: repeat(5, 72px);
        overflow-x: auto;
        justify-content: start;
    }

    .hero-thumb span {
        display: none;
    }

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

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

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

    .overview-card {
        grid-template-columns: 140px 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .site-nav {
        padding: 0 14px;
    }

    .brand-text {
        font-size: 17px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .content-section,
    .detail-wrap,
    .page-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .movie-grid,
    .movie-grid--featured,
    .rank-list,
    .rank-list--long,
    .category-grid,
    .search-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .overview-card > a {
        min-height: 260px;
    }

    .detail-title-row,
    .footer-bottom {
        flex-direction: column;
    }
}
