:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --brand: #f97316;
    --brand-dark: #c2410c;
    --brand-soft: #ffedd5;
    --accent: #f59e0b;
    --shadow: 0 20px 45px rgba(154, 52, 18, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 30%, #fffaf0 100%);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 8% 10%, rgba(251, 146, 60, 0.22), transparent 26%),
        radial-gradient(circle at 92% 0%, rgba(245, 158, 11, 0.18), transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(254, 215, 170, 0.28), transparent 30%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(251, 146, 60, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(154, 52, 18, 0.08);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #d97706, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 16px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

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

.main-nav > a,
.nav-drop > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 700;
    color: #374151;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.nav-drop {
    position: relative;
}

.drop-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 190px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-drop:hover .drop-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 700;
}

.drop-panel a:hover {
    color: var(--brand-dark);
    background: #fff7ed;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.search-form input,
.big-search input,
.inline-filter input {
    width: 220px;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 10px 10px 10px 14px;
}

.search-form button,
.big-search button {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #1c1917;
}

.hero-stack {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: center;
    gap: 48px;
    padding: 92px max(32px, calc((100vw - 1200px) / 2)) 88px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.68), rgba(28, 25, 23, 0.42)),
        linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(6px);
}

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

.eyebrow {
    margin: 0 0 14px;
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 0;
    color: #ffedd5;
    font-size: 20px;
    line-height: 1.8;
}

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

.primary-btn,
.ghost-btn,
.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35);
}

.ghost-btn {
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 237, 213, 0.3);
}

.primary-btn:hover,
.ghost-btn:hover,
.more-link:hover,
.movie-card:hover,
.rank-mini:hover,
.category-tile:hover,
.related-card:hover,
.category-overview-card:hover,
.rank-item:hover {
    transform: translateY(-4px);
}

.hero-poster {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 4;
    width: min(1200px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-controls > button,
.hero-dots button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #f59e0b;
}

.category-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(251, 146, 60, 0.15);
}

.strip-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 18px 0;
}

.strip-inner a {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    color: #9a3412;
    font-weight: 800;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.content-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 0;
}

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

.section-title h2,
.page-hero h1,
.text-block h2,
.player-section h2,
.info-card h2,
.side-card h2 {
    margin: 0;
    color: #111827;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-title p {
    max-width: 520px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    box-shadow: 0 26px 58px rgba(154, 52, 18, 0.18);
}

.card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
}

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

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

.poster-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.play-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.card-body {
    padding: 18px;
}

.card-meta {
    margin: 0 0 8px;
    color: #b45309;
    font-size: 13px;
    font-weight: 800;
}

.card-body h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

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

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

.tag-row span {
    padding: 5px 8px;
    border-radius: 8px;
    color: #9a3412;
    font-size: 12px;
    font-weight: 800;
    background: #ffedd5;
}

.large-tags span {
    font-size: 13px;
    background: rgba(255, 237, 213, 0.16);
    border: 1px solid rgba(255, 237, 213, 0.24);
    color: #ffedd5;
}

.rank-section {
    margin-top: 72px;
    padding: 68px 0;
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.88), rgba(254, 243, 199, 0.72));
}

.rank-panel {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

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

.rank-mini {
    display: grid;
    grid-template-columns: 44px 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(154, 52, 18, 0.1);
    transition: transform 0.2s ease;
}

.rank-mini span:first-child,
.rank-number {
    color: #f97316;
    font-size: 28px;
    font-weight: 950;
}

.rank-mini img,
.rank-item img {
    width: 82px;
    height: 82px;
    border-radius: 16px;
    object-fit: cover;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
}

.rank-mini strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-mini em,
.rank-text em,
.rank-text small {
    color: var(--muted);
    font-style: normal;
}

.more-link {
    margin-top: 28px;
    color: #ffffff;
    background: #1f2937;
}

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

.category-tile,
.category-overview-card {
    display: block;
    min-height: 170px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #fff7ed);
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile span,
.category-head h2 {
    display: block;
    margin: 0 0 12px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 950;
}

.category-tile p,
.category-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.category-sample {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.category-sample a {
    padding: 9px 10px;
    border-radius: 12px;
    color: #7c2d12;
    background: #fff7ed;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 42px auto 0;
    padding: 58px;
    border-radius: 34px;
    background: linear-gradient(135deg, #1c1917, #7c2d12 55%, #f97316);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

.inline-filter,
.big-search {
    display: flex;
    gap: 10px;
    width: min(620px, 100%);
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
}

.inline-filter input,
.big-search input {
    flex: 1;
    width: auto;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 64px 92px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
    transition: transform 0.2s ease;
}

.rank-text {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.rank-text strong {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-text small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background-image: var(--detail-bg);
    background-size: cover;
    background-position: center;
}

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.78), rgba(28, 25, 23, 0.48)),
        linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(0, 0, 0, 0.32));
    backdrop-filter: blur(8px);
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: center;
    gap: 46px;
    padding: 64px 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.36);
}

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

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

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

.detail-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.detail-line {
    max-width: 760px;
    margin: 24px 0;
    color: #ffedd5;
    font-size: 20px;
    line-height: 1.8;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
    align-content: start;
}

.player-section,
.text-block,
.info-card,
.side-card {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.16);
    box-shadow: var(--shadow);
}

.player-section h2,
.text-block h2,
.info-card h2,
.side-card h2 {
    margin-bottom: 18px;
    font-size: 26px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    aspect-ratio: 16 / 9;
}

.watch-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #111827;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.58));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 26px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

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

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

.text-block p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 2;
}

.info-card p {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid #ffedd5;
    color: #4b5563;
}

.info-card p:last-child {
    border-bottom: 0;
}

.info-card span {
    color: #9a3412;
    font-weight: 900;
}

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

.related-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: #fff7ed;
    transition: transform 0.2s ease;
}

.related-card img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
}

.related-card span {
    font-weight: 900;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-footer {
    margin-top: 90px;
    color: #ffedd5;
    background: linear-gradient(180deg, #7c2d12, #1c1917);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 26px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 36px;
}

.footer-inner strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 26px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 12px;
}

.footer-links a {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.copyright {
    margin: 0;
    padding: 20px 16px 28px;
    text-align: center;
    color: #fed7aa;
    border-top: 1px solid rgba(254, 215, 170, 0.12);
}

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

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

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

    .hero-poster {
        display: none;
    }

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

@media (max-width: 760px) {
    .header-inner {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .brand {
        font-size: 20px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin: 0;
        padding: 12px 0 4px;
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-drop .drop-panel {
        position: static;
        display: grid;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: #fff7ed;
    }

    .hero-slider,
    .hero-stack {
        min-height: 600px;
    }

    .hero-slide {
        padding: 84px 20px 96px;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

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

    .section-title {
        display: block;
    }

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

    .rank-mini em {
        display: none;
    }

    .page-hero {
        padding: 32px;
    }

    .detail-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-cover {
        width: min(260px, 80vw);
    }

    .rank-item {
        grid-template-columns: 48px 76px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-text small {
        display: none;
    }

    .footer-links {
        justify-content: start;
    }
}
