/* ==========================================
   GLOBAL FLEET & TRADE - THEME
========================================== */

:root {
    --header-height: 70px;
    --footer-height: 58px;

    --page-width: 1280px;
    --page-padding: 32px;

    --bg-page: #f4f4f2;
    --bg-dark: #0b1625;
    --border-dark: #24384d;

    --text-main: #f4f6f9;
    --text-muted: rgba(244, 246, 249, .72);

    --gold: #d8a43f;
    --gold-light: #f1c85e;
    --panel-text: #e8edf2;
    --panel-title: #f4f0e8;

    --panel-bg:
        radial-gradient(circle at top, rgba(216, 159, 63, .08), transparent 34%),
        linear-gradient(180deg, rgba(10, 21, 34, .92), rgba(5, 13, 23, .95));

    --panel-border: rgba(216, 159, 63, .62);
    --panel-border-soft: rgba(216, 159, 63, .30);

    --panel-shadow:
        0 30px 90px rgba(0, 0, 0, .52),
        inset 0 1px 0 rgba(255, 255, 255, .07),
        inset 0 0 80px rgba(216, 159, 63, .045);
}


/* ==========================================
   RESET / BASIS
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    padding-top: var(--header-height);
    padding-bottom: var(--footer-height);

    background: var(--bg-page);
    color: #111827;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

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

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

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

button {
    border: none;
    background: none;
}


/* ==========================================
   SEITENBREITE STANDARD
========================================== */

.site-content {
    width: 100%;
    max-width: var(--page-width);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));

    margin: 0 auto;
    padding: 40px var(--page-padding);
}


/* ==========================================
   HEADER
========================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;

    height:var(--header-height);

    display:grid;
    grid-template-columns:300px 1fr 300px;
    align-items:center;

    padding:0 30px;

    background:var(--bg-dark);
    border-bottom:1px solid var(--border-dark);

    box-shadow:
		0 18px 45px rgba(0, 0, 0, .75),
        0 8px 22px rgba(0, 0, 0, .55),
        0 1px 0 rgba(216, 164, 63, .30),
        inset 0 -1px 0 rgba(216, 164, 63, .08);
}

.header-logo {
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;

    color: var(--text-main);
}

.brand img,
.brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;

    display: block;
    object-fit: contain;
}

.brand-title {
    color: var(--text-main);

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;

    text-transform: uppercase;
    white-space: nowrap;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.header-nav a {
    position: relative;

    display: inline-block;

    color: var(--text-main);

    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;

    text-transform: uppercase;

    transition: color .18s ease;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.header-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;

    width: 100%;
    height: 2px;

    background: var(--gold);
    border-radius: 10px;

    box-shadow: 0 0 8px rgba(216, 164, 63, .55);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .18s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--gold);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    transform: scaleX(1);
}



.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.header-action-btn {
    position: relative;

    height: 34px;
    min-width: 124px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 1;

    text-transform: uppercase;

    border-radius: 4px;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .14);

    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease,
        background .16s ease,
        color .16s ease;
}

.header-action-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 12px 24px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .20);
}

/* Grün: Anmelden / Spiel */
.header-action-login,
.header-action-play {
    color: #eafff1;

    background:
        linear-gradient(
            180deg,
            rgba(43, 135, 85, .95),
            rgba(17, 78, 49, .98)
        );

    border: 1px solid rgba(106, 220, 150, .55);
}

.header-action-login:hover,
.header-action-play:hover {
    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(58, 158, 103, .98),
            rgba(21, 96, 60, 1)
        );

    border-color: rgba(139, 245, 177, .78);
}

/* Orange/Gold: Registrieren */
.header-action-register {
    color: #1a1106;

    background:
        linear-gradient(
            180deg,
            #f1c85e 0%,
            #d89f3f 100%
        );

    border: 1px solid rgba(255, 221, 132, .68);
}

.header-action-register:hover {
    color: #120c04;

    background:
        linear-gradient(
            180deg,
            #ffdc7a 0%,
            #e3aa43 100%
        );

    border-color: rgba(255, 235, 165, .92);
}

/* Abmelden: dezent rotbraun */
.header-action-logout {
    color: #ffecec;

    background:
        linear-gradient(
            180deg,
            rgba(132, 57, 45, .95),
            rgba(82, 32, 28, .98)
        );

    border: 1px solid rgba(230, 120, 96, .48);
}

.header-action-logout:hover {
    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(158, 70, 54, .98),
            rgba(100, 38, 32, 1)
        );

    border-color: rgba(255, 150, 124, .72);
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;

    height: var(--footer-height);

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    padding: 0 30px;

    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);

    box-shadow:
        0 -18px 45px rgba(0, 0, 0, .75),
        0 -8px 22px rgba(0, 0, 0, .55),
        0 -2px 0 rgba(216, 164, 63, .45),
        inset 0 -1px 0 rgba(216, 164, 63, .08);
}

.footer-copy {
    color: var(--text-muted);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: .4px;
    line-height: 1;

    white-space: nowrap;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

/* ==========================================
   FOOTER SOCIAL ICONS
========================================== */

.footer-socials {
    position: absolute;
    left: 50%;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    transform: translate(-50%, -50%);

    white-space: nowrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--text-main);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: .8px;
    line-height: 1;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color .18s ease,
        opacity .18s ease,
        transform .18s ease;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.footer-social-link img {
    width: 26px;
    height: 26px;

    display: block;
    flex: 0 0 32px;

    object-fit: contain;
}

.footer-social-link span {
    color: inherit;
}

.footer-social-link:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

.footer-social-link:hover img {
    opacity: .88;
}

/* ==========================================
   FOOTER NAVIGATION
========================================== */

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-nav a {
    position: relative;

    display: inline-block;

    color: var(--text-main);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: .8px;
    line-height: 1;

    text-transform: uppercase;
    text-decoration: none;

    transition: color .18s ease;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.footer-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .18s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}


/* ==========================================
   GLOBALE PANEL-RAHMEN
========================================== */

.page-frame {
    position: relative;

    width: min(1180px, calc(100% - 48px));
    margin-bottom: 48px;
    padding: 46px 48px 34px;

    color: var(--panel-text);

    background: var(--panel-bg);

    border: 1px solid var(--panel-border);
    border-radius: 10px;

    box-shadow: var(--panel-shadow);

    overflow: hidden;
}

.page-frame::before {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid var(--panel-border-soft);
    border-radius: 8px;

    pointer-events: none;
}

.page-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .025),
            transparent
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, .04),
            transparent 42%
        );

    pointer-events: none;
}


/* ==========================================
   GLOBALE RAHMEN-ECKEN
========================================== */

.frame-corner {
    position: absolute;
    z-index: 4;

    width: 42px;
    height: 42px;

    pointer-events: none;
    border-color: rgba(216, 159, 63, .92);
}

.frame-corner-tl {
    top: 10px;
    left: 10px;

    border-top: 2px solid rgba(216, 159, 63, .92);
    border-left: 2px solid rgba(216, 159, 63, .92);
    border-top-left-radius: 10px;
}

.frame-corner-tr {
    top: 10px;
    right: 10px;

    border-top: 2px solid rgba(216, 159, 63, .92);
    border-right: 2px solid rgba(216, 159, 63, .92);
    border-top-right-radius: 10px;
}

.frame-corner-bl {
    bottom: 10px;
    left: 10px;

    border-bottom: 2px solid rgba(216, 159, 63, .92);
    border-left: 2px solid rgba(216, 159, 63, .92);
    border-bottom-left-radius: 10px;
}

.frame-corner-br {
    right: 10px;
    bottom: 10px;

    border-right: 2px solid rgba(216, 159, 63, .92);
    border-bottom: 2px solid rgba(216, 159, 63, .92);
    border-bottom-right-radius: 10px;
}


/* ==========================================
   WIEDERKEHRENDE ICON-OBJEKTE
========================================== */

.icon-symbol-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-symbol-box-img {
    width: 28px;
    height: 28px;

    display: block;
    object-fit: contain;
}


/* ==========================================
   GLOBALER BOX-HEADER
========================================== */

.box-head {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 980px;
    margin: 0 auto 38px;

    text-align: center;
}

.headline-with-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.headline-with-icons h1,
.box-head > h1 {
    margin: 0;

    color: var(--panel-title);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.18;

    text-transform: uppercase;

    text-shadow: 0 3px 14px rgba(0, 0, 0, .55);
}

.headline-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: block;
    object-fit: contain;
}

.box-subline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-top: 10px;

    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.box-subline span {
    display: block;

    width: 92px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 159, 63, .75),
            transparent
        );
}

.box-head p {
    width: 100%;
    max-width: 800px;
    margin: 18px auto 0;

    color: rgba(232, 237, 242, .84);
    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   GFT - Registrierung geschlossen
   ========================================================= */

.register-closed-page {
    width: 100%;
    min-height: calc(100vh - 112px);
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 24px;

    background:
        radial-gradient(circle at center, rgba(217, 164, 55, 0.10) 0%, transparent 42%),
        linear-gradient(rgba(4, 8, 12, 0.45), rgba(4, 8, 12, 0.78)),
        url("/assets/backgrounds/startscreen.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.register-closed-overlay {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
}

.register-closed-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;

    padding: 54px 68px 48px;

    background:
        linear-gradient(180deg, rgba(8, 17, 28, 0.97), rgba(5, 11, 18, 0.99));

    border: 1px solid rgba(217, 164, 55, 0.78);

    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.60),
        inset 0 0 38px rgba(217, 164, 55, 0.04);

    text-align: center;
    color: #e9edf1;
}

.register-closed-card::before,
.register-closed-card::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    pointer-events: none;
    border-color: #d6a53f;
    border-style: solid;
    opacity: 0.95;
}

.register-closed-card::before {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

.register-closed-card::after {
    right: 10px;
    bottom: 10px;
    border-width: 0 1px 1px 0;
}

.register-closed-decoration {
    margin-bottom: 14px;
    color: #d6a53f;
    font-size: 24px;
    text-shadow: 0 0 18px rgba(214, 165, 63, 0.45);
}

.register-closed-card h1 {
    margin: 0;
    color: #f4f0e6;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 32px);
    font-weight: 400;

    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.register-closed-subtitle {
    margin: 18px auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #d6a53f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.register-closed-subtitle::before,
.register-closed-subtitle::after {
    content: "";
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 165, 63, 0.65));
}

.register-closed-subtitle::after {
    background: linear-gradient(90deg, rgba(214, 165, 63, 0.65), transparent);
}

.register-closed-card p {
    max-width: 580px;
    margin: 0 auto 16px;

    color: #d8dde3;
    font-size: 18px;
    line-height: 1.65;
}

.register-closed-note {
    color: #aeb8c2 !important;
    font-size: 16px !important;
}

.register-closed-actions {
    margin-top: 36px;

    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.register-closed-login,
.register-closed-home {
    min-width: 190px;
    box-sizing: border-box;
    padding: 14px 22px;

    border-radius: 3px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease;
}

.register-closed-login {
    color: #08111c;
    background: linear-gradient(180deg, #f0c75b, #d59c2e);
    border: 1px solid #f3d47a;
    box-shadow: 0 8px 22px rgba(214, 165, 63, 0.18);
}

.register-closed-home {
    color: #e9edf1;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(214, 165, 63, 0.55);
}

.register-closed-login:hover,
.register-closed-home:hover {
    transform: translateY(-1px);
}

.register-closed-login:hover {
    box-shadow: 0 10px 28px rgba(214, 165, 63, 0.28);
}

.register-closed-home:hover {
    background: rgba(214, 165, 63, 0.08);
    border-color: rgba(214, 165, 63, 0.85);
}


/* Mobile */
@media (max-width: 720px) {
    .register-closed-page {
        min-height: calc(100vh - 112px);
        padding: 48px 16px;
    }

    .register-closed-card {
        padding: 42px 26px 36px;
    }

    .register-closed-card h1 {
        font-size: 30px;
        letter-spacing: 0.12em;
    }

    .register-closed-subtitle {
        gap: 10px;
        letter-spacing: 0.18em;
    }

    .register-closed-subtitle::before,
    .register-closed-subtitle::after {
        width: 38px;
    }

    .register-closed-card p {
        font-size: 16px;
    }

    .register-closed-login,
    .register-closed-home {
        width: 100%;
    }
}

/* =========================================================
   GFT PUBLIC MOBILE PATCH
   Header, Hamburger und Footer nur für öffentliche Seiten.
   Game-Engine / world.css wird nicht berührt.
   ========================================================= */

.mobile-menu-toggle {
    display: none;
}

.header-mobile-panel {
    display: contents;
}

@media (max-width: 900px) {
    :root {
        --header-height: 64px;
    }

    html,
    body {
        width: 100%;
        min-height: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: var(--header-height) !important;
        padding-bottom: 0 !important;
        background: #050d18 !important;
    }

    .site-header {
        height: var(--header-height) !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        padding: 0 14px !important;
    }

    .header-logo {
        min-width: 0;
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand img,
    .brand-logo {
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
        object-fit: contain;
    }

    .brand-title {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 15px !important;
        letter-spacing: 1.5px !important;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        border: 1px solid rgba(216, 164, 63, .55);
        border-radius: 4px;
        background: rgba(255, 255, 255, .035);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        display: block;
        background: #f1c85e;
        border-radius: 10px;
        transition: transform .18s ease, opacity .18s ease;
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-mobile-panel {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 999;
        display: none;
        padding: 16px 14px 18px;
        background: linear-gradient(180deg, rgba(8, 18, 30, .99), rgba(4, 11, 20, .99));
        border-bottom: 1px solid rgba(216, 164, 63, .38);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .05);
    }

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

    .header-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .header-nav a {
        width: 100%;
        padding: 15px 10px;
        text-align: center;
        font-size: 14px !important;
        letter-spacing: 1.4px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .header-nav a::after {
        display: none !important;
    }

    .header-actions {
        width: 100% !important;
        margin-top: 14px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .header-action-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 42px !important;
    }

    .site-footer {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 10 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 128px !important;
        padding: 20px 14px 22px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "socials"
            "links"
            "copy" !important;
        gap: 16px !important;
        background: linear-gradient(180deg, #07111f 0%, #050d18 100%) !important;
        border-top: 1px solid rgba(216, 164, 63, 0.35) !important;
        box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(216, 164, 63, 0.12) !important;
        text-align: center !important;
    }

    .footer-socials {
        grid-area: socials !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        white-space: normal !important;
    }

    .footer-social-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        gap: 0 !important;
        overflow: hidden;
    }

    .footer-social-link img,
    .footer-social-icon {
        width: 28px !important;
        height: 28px !important;
        flex: 0 0 28px !important;
        object-fit: contain !important;
    }

    .footer-social-link span {
        display: none !important;
    }

    .footer-nav {
        grid-area: links !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px 22px !important;
    }

    .footer-nav a {
        color: #e8edf2 !important;
        font-size: 12px !important;
        line-height: 1 !important;
        letter-spacing: 1.2px !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .footer-nav a::after {
        display: none !important;
    }

    .footer-copy {
        grid-area: copy !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        color: rgba(232, 237, 242, 0.72) !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        letter-spacing: 0.4px !important;
        text-align: center !important;
        white-space: normal !important;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding: 0 12px !important;
    }

    .brand img,
    .brand-logo {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }

    .brand-title {
        font-size: 13px !important;
        letter-spacing: 1.1px !important;
    }

    .header-mobile-panel {
        padding: 14px 12px 16px !important;
    }

    .site-footer {
        min-height: 124px !important;
        padding: 18px 12px 20px !important;
        gap: 14px !important;
    }

    .footer-socials {
        gap: 16px !important;
    }

    .footer-social-link,
    .footer-social-link img,
    .footer-social-icon {
        width: 26px !important;
        height: 26px !important;
    }

    .footer-nav {
        gap: 10px 16px !important;
    }

    .footer-nav a,
    .footer-copy {
        font-size: 11px !important;
    }
}


 
.skip-link{position:fixed;top:8px;left:8px;z-index:99999;padding:10px 14px;color:#08111c;background:#f1c85e;border-radius:3px;transform:translateY(-140%)}
.skip-link:focus{transform:translateY(0)}
@media (min-width:901px) and (max-width:1250px){.site-header{grid-template-columns:240px 1fr 250px;padding:0 18px}.header-nav{gap:20px}.header-nav a{font-size:13px}.header-action-btn{min-width:108px;padding:0 10px}.brand-title{font-size:15px;letter-spacing:1.4px}}
