:root {
    --red: #e8210a;
    --red-dark: #b81705;
    --gold: #c9a84c;
    --gold-soft: rgba(201, 168, 76, 0.12);
    --bg: #050505;
    --bg-soft: #0a0a0a;
    --card: #111111;
    --card-2: #151515;
    --border: #1a1a1a;
    --border-soft: rgba(255, 255, 255, 0.08);
    --text: #d4d4d4;
    --text-soft: #a8a8a8;
    --text-strong: #ffffff;
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.55);
    --shadow-red: 0 12px 35px rgba(232, 33, 10, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --max-w: 1300px;
    --single-w: 1000px;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(232, 33, 10, 0.07) 0%, rgba(5, 5, 5, 0) 28%),
        linear-gradient(180deg, #040404 0%, #060606 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    min-height: 100vh;
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* HEADER */
.site-header { background: #000; border-bottom: 2px solid var(--red); padding: 15px 0; position: sticky; top: 0; z-index: 2000; box-shadow: 0 5px 25px rgba(0,0,0,0.9); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-display); font-size: 2.2rem; color: #fff; text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase; }
.logo span { color: var(--red); }
.header-nav { display: flex; gap: 10px; }
.header-nav a { color: #fff; text-decoration: none; font-family: var(--font-display); font-size: 1.1rem; padding: 8px 16px; background: #111; border: 1px solid #333; border-radius: 4px; transition: 0.2s; }
.header-nav a:hover, .header-nav a.active { background: var(--red); border-color: var(--red); }

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 72px 20px 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(232, 33, 10, 0.2) 0%, rgba(5, 5, 5, 0) 42%),
        linear-gradient(180deg, #0a0505 0%, #050505 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 33, 10, 0.5), transparent);
}

.hero h1 {
    max-width: 980px;
    margin: 0 auto 12px;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 7vw, 5.2rem);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    margin: 0 auto;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* MAIN WRAPPER */
.movie-single-wrapper {
    max-width: var(--single-w);
    margin: 0 auto 56px;
    padding: 0 20px;
}

/* DEFAULT VIDEO CONTAINER */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 18px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* STANDARD EXTERNAL NOTICE BLOCK */
.video-container.external-player-notice {
    padding-bottom: 0;
    height: auto;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(232, 33, 10, 0.12) 0%, rgba(5, 5, 5, 0) 45%),
        linear-gradient(180deg, #090909 0%, #121212 100%);
    border: 1px solid rgba(232, 33, 10, 0.28);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.7),
        inset 0 0 60px rgba(232, 33, 10, 0.05);
    overflow: hidden;
}

.video-container.external-player-notice::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 33, 10, 0.9), transparent);
}

.external-player-box {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    text-align: center;
    padding: 38px 30px;
}

.external-player-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.05;
}

.external-player-box p {
    max-width: 670px;
    margin: 0 auto 14px;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.82;
}

.external-player-box p:last-of-type {
    margin-bottom: 20px;
}

.external-watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    min-height: 56px;
    padding: 15px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.16rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-red);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.external-watch-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 42px rgba(232, 33, 10, 0.52);
}

.external-watch-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* PREMIUM FAKE PLAYER */
.player-shell {
    margin: 0 0 18px;
}

.premium-player {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #0a0c10 0%, #08090d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
}

.player-click-area {
    display: block;
    text-decoration: none;
    color: inherit;
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #040404;
}

.player-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.08) saturate(1.02);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.player-click-area:hover .player-frame img {
    transform: scale(1.05);
    filter: brightness(0.72) contrast(1.1) saturate(1.05);
}

.player-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 42%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.68));
}

.player-top {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.player-badge,
.player-quality {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.player-center {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
}

.play-button {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;

    justify-content: center;
    margin-bottom: 14px;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    transition: transform 0.22s ease, background 0.22s ease;
}

.player-click-area:hover .play-button {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.16);
}

.player-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
}

.player-sub {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 14px 18px 16px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    margin-bottom: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}

.progress {
    width: 1%;
    height: 100%;
    background: linear-gradient(90deg, var(--red), #ff553e);
    border-radius: 999px;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.84rem;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-legal {
    padding: 18px 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.8;
}

/* REPORT SYSTEM */
.report-wrapper {
    text-align: center;
    margin-bottom: 34px;
}

.report-toggle-btn {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #999;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.08rem;
    letter-spacing: 1px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.report-toggle-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: transparent;
    transform: translateY(-1px);
}

.report-form-container {
    display: none;
    max-width: 620px;
    margin: 16px auto 0;
    padding: 22px;
    border-radius: var(--radius-md);
    text-align: left;
    background: linear-gradient(180deg, #101010 0%, #141414 100%);
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.report-form-container h3 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 1px;
    color: #fff;
}

.report-form-container > p {
    margin-bottom: 15px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.form-group label .req {
    color: var(--red);
}

.report-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid #292929;
    background: #0d0d0d;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.report-input:focus {
    border-color: rgba(232, 33, 10, 0.72);
    box-shadow: 0 0 0 3px rgba(232, 33, 10, 0.12);
}

.report-input[readonly] {
    background: #171717;
    color: #8a8a8a;
    cursor: not-allowed;
}

textarea.report-input {
    resize: vertical;
}

.error-msg {
    display: none;
    margin-top: 5px;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
}

.error-msg.visible {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--red);
}

.checkbox-group label {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.report-submit-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 18px;
    border: 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.16rem;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.report-submit-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.report-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

/* DETAILS CARD */
.movie-details-box {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #101010 0%, #121212 100%);
    border: 1px solid var(--border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plot-summary {
    margin-bottom: 25px;
    padding-left: 16px;
    border-left: 4px solid var(--red);
    color: #efefef;
    font-size: 1.14rem;
    line-height: 1.7;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #202020;
}

.meta-title {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.meta-content {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.55;
}

.share-container {
    margin-top: 24px;
    text-align: center;
}

/* PROSE */
.prose {
    position: relative;
    margin-bottom: 40px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    border: 1px solid var(--border);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.prose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 33, 10, 0.9), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.prose h2 {
    margin: 34px 0 15px;
    padding-left: 14px;
    border-left: 5px solid var(--red);
    font-family: var(--font-display);
    font-size: 2.15rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    margin: 24px 0 12px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.prose p {
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.88;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose strong {
    color: #fff;
}

.prose em {
    color: var(--gold);
    font-style: italic;
}

/* FAQ */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0d0d0d;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    background: linear-gradient(180deg, #111111 0%, #0f0f0f 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1;
}

.faq-item[open] summary {
    background: linear-gradient(180deg, rgba(232, 33, 10, 0.18), rgba(232, 33, 10, 0.08));
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item > div {
    padding: 16px 20px 18px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item > div p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.76;
}

/* FOOTER */
footer {
    margin-top: 64px;
    padding: 60px 20px 54px;
    text-align: center;
    background:
        linear-gradient(180deg, #030303 0%, #000000 100%);
    border-top: 1px solid rgba(232, 33, 10, 0.45);
}

.footer-logo {
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    line-height: 1;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--red);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.footer-links a {
    color: #767676;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

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

.footer-copy {
    color: #3f3f3f;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    margin-top: 18px;
}

.footer-legal {
    max-width: 900px;
    margin: 0 auto;
    color: #6d6d6d;
    font-size: 0.84rem;
    line-height: 1.8;
}

/* UTILITY */
.hidden {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .movie-single-wrapper {
        padding: 0 16px;
    }

    .prose {
        padding: 34px 24px;
    }

    .movie-details-box {
        padding: 24px;
    }

    .video-container.external-player-notice {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    /* הוחלף להתנהגות התפריט המבוקשת - הכל נפרס ולא נגלל הצידה */
    .header-inner {
        padding: 10px 12px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .logo {
        font-size: 1.9rem;
        text-align: center;
    }

    .header-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .header-nav a {
        flex: 1;
        text-align: center;
        font-size: 0.95rem;
        padding: 8px 4px;
    }

    /* שאר הנייד מהקובץ הראשון (ללא שינוי) */
    .hero {
        padding: 54px 16px 34px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .video-container.external-player-notice {
        min-height: 340px;
    }

    .external-player-box {
        padding: 30px 20px;
    }

    .external-watch-btn {
        min-width: 230px;
    }

    .player-top {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .play-button {
        width: 78px;
        height: 78px;
        font-size: 1.8rem;
    }

    .player-title {
        font-size: 1.38rem;
    }

    .player-sub {
        font-size: 0.9rem;
    }

    .player-controls {
        padding: 12px 14px 14px;
    }

    .controls-row {
        font-size: 0.78rem;
    }

    .player-legal {
        padding: 16px 18px 18px;
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    /* התאמת התפריט למסכים ממש קטנים כמו בקובץ גיבוי */
    .header-inner {
        padding: 10px 5px;
        gap: 10px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .header-nav {
        gap: 5px;
    }

    .header-nav a {
        font-size: 0.9rem;
        padding: 8px 2px;
    }

    /* שאר הנייד מהקובץ הראשון (ללא שינוי) */
    .hero {
        padding: 42px 14px 28px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }

    .video-container.external-player-notice {
        min-height: 300px;
    }

    .external-player-box {
        padding: 24px 16px;
    }

    .external-player-box h2 {
        font-size: 1.6rem;
    }

    .external-player-box p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .external-watch-btn {
        width: 100%;
        min-width: 0;
        font-size: 1.02rem;
        letter-spacing: 1.2px;
        padding: 14px 18px;
    }

    .movie-details-box {
        padding: 20px;
    }

    .plot-summary {
        font-size: 1.03rem;
    }

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

    .prose {
        padding: 28px 18px;
    }

    .prose h2 {
        font-size: 1.72rem;
    }

    .prose h3 {
        font-size: 1.34rem;
    }

    .prose p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .player-frame {
        min-height: 240px;
        aspect-ratio: auto;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .player-title {
        font-size: 1.18rem;
    }

    .player-sub {
        font-size: 0.84rem;
    }

    .left-controls,
    .right-controls {
        gap: 10px;
    }

    .player-badge,
    .player-quality {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.68rem;
    }

    .player-legal {
        font-size: 0.76rem;
        line-height: 1.72;
    }

    footer {
        padding: 48px 16px 42px;
    }

    .footer-logo {
        font-size: 2.2rem;
    }

    .footer-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        gap: 10px;
        padding: 0 4px 4px;
    }

    .footer-links::-webkit-scrollbar {
        display: none;
    }

    .footer-links a {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.82rem;
    }

    .footer-copy,
    .footer-legal {
        font-size: 0.74rem;
    }
}