:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --yellow-400: #facc15;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #ffe4e6;
    --card: #ffffff;
    --soft-shadow: 0 18px 45px rgba(225, 29, 72, 0.12);
    --deep-shadow: 0 28px 70px rgba(31, 41, 55, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, var(--rose-50) 0%, #ffffff 40%, var(--orange-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 241, 242, 0.92);
    border-bottom: 1px solid rgba(251, 113, 133, 0.18);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.08);
    backdrop-filter: blur(18px);
}

.navbar {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.32);
    font-size: 14px;
}

.brand-name,
.footer-brand {
    font-size: 24px;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input {
    width: 190px;
    border: 1px solid rgba(251, 113, 133, 0.38);
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: width 0.25s ease, box-shadow 0.25s ease;
}

.nav-search input:focus {
    width: 230px;
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.nav-search button,
.mobile-search button,
.hero-search button,
.primary-btn {
    border: none;
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-500));
    box-shadow: 0 14px 26px rgba(244, 63, 94, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(244, 63, 94, 0.34);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 228, 230, 0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

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

.mobile-panel {
    display: none;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
}

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

.mobile-panel-inner {
    padding: 14px 0 18px;
}

.mobile-link {
    display: block;
    padding: 11px 0;
    color: #374151;
    font-weight: 700;
}

.mobile-link.is-active {
    color: var(--rose-500);
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.mobile-search input {
    flex: 1;
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 88px;
    background: linear-gradient(105deg, var(--rose-100), #fce7f3 50%, var(--orange-100));
}

.hero-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.24;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-orb-left {
    top: -120px;
    left: -80px;
    background: var(--rose-300);
}

.hero-orb-right {
    right: -90px;
    bottom: -130px;
    background: var(--orange-400);
    animation-delay: 1.2s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(0.96);
    }
    50% {
        transform: scale(1.08);
    }
}

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

.hero-copy {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: var(--rose-500);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 760px;
    margin: 20px auto 0;
    color: #4b5563;
    font-size: 20px;
}

.hero-search {
    display: flex;
    max-width: 620px;
    margin: 28px auto 0;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(14px);
}

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

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.hero-pills a,
.category-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 15px;
    color: #be123c;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 113, 133, 0.25);
    font-weight: 800;
    transition: all 0.2s ease;
}

.hero-pills a:hover,
.category-tabs a:hover {
    color: #ffffff;
    background: var(--rose-500);
    transform: translateY(-2px);
}

.hero-stage {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 8.2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--deep-shadow);
    background: #111827;
}

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

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

.hero-feature-link,
.hero-feature-link img,
.hero-shadow {
    position: absolute;
    inset: 0;
}

.hero-feature-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-feature-link:hover img {
    transform: scale(1.06);
}

.hero-shadow {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.42) 45%, rgba(17, 24, 39, 0.9));
}

.hero-play {
    position: absolute;
    inset: 0;
    width: 82px;
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--rose-500);
    background: rgba(255, 255, 255, 0.92);
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.28);
    transition: transform 0.25s ease;
}

.hero-feature-link:hover .hero-play {
    transform: scale(1.12);
}

.hero-feature-copy {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #ffffff;
}

.hero-feature-copy strong {
    display: block;
    margin: 10px 0 8px;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.15;
}

.hero-feature-copy em {
    display: block;
    max-width: 720px;
    color: #f3f4f6;
    font-style: normal;
}

.hero-chip,
.card-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.28);
    transition: all 0.2s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
}

.section {
    padding: 58px 0;
}

.section-soft {
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.8), rgba(255, 247, 237, 0.92));
}

.section-warm {
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.9), rgba(253, 242, 248, 0.94));
}

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

.section-head h2,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #111827;
}

.more-link {
    color: var(--rose-500);
    font-weight: 900;
}

.more-link-orange {
    color: var(--orange-500);
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    min-width: 0;
}

.card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(225, 29, 72, 0.18);
}

.card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), var(--orange-100));
}

.card-image-wide {
    aspect-ratio: 16 / 10;
}

.card-image-poster {
    aspect-ratio: 3 / 4.15;
}

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

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

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
    opacity: 0.86;
}

.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
}

.card-body {
    padding: 17px 18px 18px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #1f2937;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-link:hover h3 {
    color: var(--rose-500);
}

.card-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
}

.card-meta span {
    border-radius: 999px;
    padding: 4px 8px;
    background: #f9fafb;
}

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff, var(--rose-50));
    border: 1px solid rgba(251, 113, 133, 0.2);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(244, 63, 94, 0.2);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-400), var(--orange-400));
    box-shadow: 0 16px 30px rgba(244, 63, 94, 0.22);
}

.category-tile strong {
    display: block;
    margin-top: 16px;
    font-size: 22px;
}

.category-tile p {
    position: relative;
    z-index: 1;
    color: var(--muted);
}

.category-tile img {
    position: absolute;
    right: -18px;
    bottom: -26px;
    width: 130px;
    height: 170px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.18;
    transform: rotate(9deg);
}

.rank-panel {
    display: grid;
    gap: 12px;
    border-radius: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.rank-panel-large {
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    border-radius: 18px;
    padding: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: var(--rose-50);
    transform: translateX(4px);
}

.rank-medal {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #6b7280;
    background: #f3f4f6;
    font-weight: 900;
}

.rank-gold,
.rank-silver,
.rank-bronze {
    color: #ffffff;
}

.rank-gold {
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
}

.rank-silver {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
}

.rank-bronze {
    background: linear-gradient(135deg, #fdba74, #fb923c);
}

.rank-item img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info strong {
    color: #1f2937;
}

.rank-info em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.rank-views {
    color: var(--rose-500);
    font-weight: 900;
}

.page-hero {
    padding: 58px 0;
    background: linear-gradient(105deg, var(--rose-100), #fce7f3 55%, var(--orange-100));
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.compact-filter {
    grid-template-columns: 2fr 1fr 1fr;
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #374151;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(251, 113, 133, 0.26);
    border-radius: 14px;
    padding: 11px 12px;
    background: #fff;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.empty-state {
    display: none;
    border-radius: 22px;
    padding: 32px;
    color: var(--muted);
    background: #ffffff;
    text-align: center;
    box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
    display: block;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-hero {
    position: relative;
    padding: 54px 0;
    background: linear-gradient(105deg, var(--rose-100), #fce7f3 55%, var(--orange-100));
    overflow: hidden;
}

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

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--deep-shadow);
    background: linear-gradient(135deg, var(--rose-100), var(--orange-100));
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.2;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
}

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

.detail-lead {
    max-width: 820px;
    margin: 18px 0 18px;
    color: #4b5563;
    font-size: 19px;
}

.detail-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.detail-meta span,
.tag-list span {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.76);
    color: #be123c;
    font-weight: 800;
    border: 1px solid rgba(251, 113, 133, 0.2);
}

.primary-btn {
    display: inline-flex;
    margin-top: 16px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #0f172a;
    box-shadow: var(--deep-shadow);
    aspect-ratio: 16 / 9;
}

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

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--rose-500);
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.56));
    transition: opacity 0.25s ease;
}

.play-cover span {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
    font-size: 36px;
}

.player-shell.is-playing .play-cover {
    opacity: 0;
    pointer-events: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
}

.content-card,
.side-card {
    border-radius: 28px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

.content-card h2,
.side-card h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 24px;
}

.content-card h2:not(:first-child) {
    margin-top: 28px;
}

.content-card p {
    margin: 0 0 15px;
    color: #4b5563;
    font-size: 17px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    margin: 0;
}

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

.side-card dd {
    margin: 0;
    color: #1f2937;
}

.site-footer {
    margin-top: 60px;
    padding: 42px 0 24px;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    border-top: 1px solid #f3f4f6;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p {
    max-width: 620px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: var(--muted);
    font-weight: 800;
}

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

.footer-bottom {
    margin-top: 28px;
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 1060px) {
    .nav-links,
    .nav-search {
        display: none;
    }

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

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

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

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

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

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

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

    .brand-name {
        font-size: 20px;
    }

    .hero {
        padding: 48px 0 58px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 22px;
    }

    .hero-search input {
        width: 100%;
        padding: 12px 14px;
    }

    .hero-stage {
        aspect-ratio: 4 / 4.4;
        border-radius: 24px;
    }

    .hero-feature-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hero-play {
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .section {
        padding: 42px 0;
    }

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

    .movie-grid-wide,
    .movie-grid-poster,
    .editor-grid,
    .category-grid,
    .category-grid-large,
    .filter-panel,
    .compact-filter {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 38px 78px minmax(0, 1fr);
    }

    .rank-item img {
        width: 78px;
        height: 58px;
    }

    .rank-views {
        display: none;
    }

    .detail-hero {
        padding: 36px 0;
    }

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

    .play-cover span {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .content-card,
    .side-card {
        padding: 20px;
        border-radius: 22px;
    }

    .side-card dl {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
