/* ==========================================================================
   Rustic.GG — main stylesheet
   Palette sampled from the brand assets. Rust survival aesthetic:
   charcoal layers + gold accent + condensed stencil-flavoured display type.
   ========================================================================== */

:root {
    /* Colour */
    --bg:          #141414;
    --surface:     #1d1d1d;
    --surface-2:   #252525;
    --line:        #2d2d2d;
    --gold:        #fdad34;
    --gold-dim:    #c9871f;
    --gold-soft:   rgba(253, 173, 52, .12);
    --text:        #f2f2f2;
    --muted:       #a7a7a7;
    --good:        #46c46a;
    --bad:         #e0533d;

    /* Type */
    --display: "Oswald", "Arial Narrow", sans-serif;
    --body:    "Inter", system-ui, sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;

    /* Layout */
    --wrap: 1180px;
    --radius: 6px;
    --radius-lg: 12px;
    --gap: clamp(1rem, 2.5vw, 2rem);
    --header-h: 72px;
}

/* ── Reset / base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: .5px; }
.muted { color: var(--muted); }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.eyebrow {
    display: inline-block;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .8rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--gold); color: #111; padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    --bh: 44px;
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: var(--bh); padding: 0 1.3rem;
    font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    font-size: .95rem; border: 0; border-radius: var(--radius); cursor: pointer;
    transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { --bh: 52px; padding: 0 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: #1a1a1a; }
.btn-gold:hover { background: #ffba4d; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: var(--surface-2); color: var(--text); }
.btn-ghost:hover { background: #2e2e2e; }
.cta-icon { width: 20px; height: 20px; border-radius: 50%; }
.btn-steam { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.btn-steam:hover { border-color: var(--gold); color: var(--gold); }

/* Logged-in user menu (header) */
.user-menu { position: relative; }
.user-menu > summary {
    display: inline-flex; align-items: center; gap: .5rem; list-style: none; cursor: pointer;
    min-height: 44px; padding: 0 1rem;
    font-family: var(--display); font-weight: 600; font-size: .95rem;
    background: var(--surface-2); color: var(--text);
    border: 0; border-radius: var(--radius);
    transition: background .15s ease;
}
.user-menu > summary:hover { background: #2e2e2e; }
.user-menu > summary::-webkit-details-marker, .user-menu > summary::marker { display: none; }
.user-avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.user-name { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--text); letter-spacing: .5px; }
.user-dropdown {
    position: absolute; right: 0; top: calc(100% + .4rem); z-index: 200;
    min-width: 160px; background: var(--surface-2); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.4);
    display: none; flex-direction: column;
}
.user-menu[open] .user-dropdown { display: flex; }
.user-dropdown a { padding: .65rem 1rem; color: var(--muted); font-size: .9rem; transition: color .15s, background .15s; }
.user-dropdown a:hover { color: var(--text); background: var(--surface); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(20, 20, 20, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(18,18,18,.95); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
    width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center;
    background: var(--gold); color: #1a1a1a; border-radius: 9px;
    font-family: var(--display); font-weight: 700; font-size: 1.55rem; line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.brand-name {
    font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1;
    letter-spacing: .5px; color: var(--text);
}
.brand-tld { color: var(--gold); }
.primary-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.primary-nav a {
    color: var(--text); font-family: var(--display); font-weight: 500; text-transform: uppercase;
    letter-spacing: 1.5px; font-size: .95rem; padding: .4rem 0; position: relative;
}
.primary-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--gold); transition: width .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.active::after { width: 100%; }
.primary-nav a.active { color: var(--gold); }
.header-cta { display: flex; gap: .6rem; align-items: center; }

.nav-toggle {
    display: none; margin-left: auto; width: 44px; height: 44px;
    background: var(--surface-2); border: 0; border-radius: var(--radius); cursor: pointer;
    flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section:nth-of-type(even) { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-title { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }
.section-lead { color: var(--muted); margin-top: .75rem; }

.panel { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.panel-empty { color: var(--muted); padding: 2rem; text-align: center; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(3rem, 9vw, 7rem) 0; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-color: var(--bg);
    background-image:
        radial-gradient(900px 400px at 80% -10%, var(--gold-soft), transparent 60%),
        linear-gradient(90deg, rgba(15,15,15,.95) 0%, rgba(15,15,15,.8) 38%, rgba(15,15,15,.45) 70%, rgba(15,15,15,.72) 100%),
        linear-gradient(180deg, rgba(15,15,15,.25), rgba(15,15,15,.9)),
        url("/assets/img/banner-hero-2000.jpg");
    background-position: center, center, center, 60% 38%;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-title { font-size: clamp(3rem, 9vw, 6rem); text-transform: uppercase; line-height: .92; }
.hero-sub { color: var(--muted); max-width: 46ch; margin: 1.25rem 0 2rem; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── Signature: server status card ─────────────────────────────────────── */
.server-card {
    background: linear-gradient(180deg, var(--surface-2), #1c1c1c);
    border: 1px solid var(--line); border-left: 3px solid var(--gold);
    border-radius: var(--radius-lg); padding: 1.5rem;
}
.server-card-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 0 transparent; }
.status-dot.online { background: var(--good); animation: pulse 2s infinite; }
.status-dot.offline { background: var(--bad); }
.server-state { font-family: var(--mono); font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.server-name { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1.2rem; }
.server-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1rem; }
.stat { text-align: center; background: rgba(0,0,0,.25); border-radius: var(--radius); padding: .75rem .25rem; }
.stat-num { display: block; font-family: var(--mono); font-weight: 700; font-size: 1.7rem; color: var(--gold); }
.stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.pop-bar { height: 8px; background: rgba(0,0,0,.4); border-radius: 99px; overflow: hidden; margin-bottom: 1.2rem; }
.pop-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); transition: width .6s ease; }

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(70, 196, 106, .5); }
    70%  { box-shadow: 0 0 0 8px rgba(70, 196, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(70, 196, 106, 0); }
}

/* ── Server section ─────────────────────────────────────────────────────── */
.server-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gap); margin-bottom: var(--gap); }
.bm-widget { padding: 0; overflow: hidden; min-height: 320px; }
.bm-widget iframe { width: 100%; height: 360px; border: 0; display: block; }
.pop-history h3 { margin-bottom: 1rem; font-size: 1.1rem; text-transform: uppercase; }
.leaderboard h3 { margin-bottom: 1rem; text-transform: uppercase; }
.leaderboard-list { list-style: none; margin: 0; padding: 0; counter-reset: lb; }
.lb-row {
    display: grid; grid-template-columns: 2rem 1fr auto; align-items: center; gap: 1rem;
    padding: .75rem .5rem; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .95rem;
}
.lb-row::before { counter-increment: lb; content: counter(lb); color: var(--gold); font-weight: 700; }
.lb-row:last-child { border-bottom: 0; }
.lb-loading { color: var(--muted); grid-template-columns: 1fr; }

/* ── Shop ───────────────────────────────────────────────────────────────── */
.shop-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.shop-pill {
    font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem;
    background: var(--surface-2); color: var(--muted); border: 1px solid var(--line);
    padding: .45rem 1rem; border-radius: 99px; cursor: pointer;
}
.shop-pill.active { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--gap); }
.shop-card { display: flex; flex-direction: column; gap: .75rem; }
.shop-card .price { font-family: var(--mono); font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.shop-card h3 { font-size: 1.2rem; text-transform: uppercase; }
.shop-card .shop-desc { color: var(--muted); font-size: .9rem; flex: 1; }

.basket-fab {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--gold); color: #1a1a1a; display: grid; place-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
    transition: transform .15s ease, background .15s ease;
}
.basket-fab:hover { transform: translateY(-2px); background: #ffba4d; }
.basket-fab[hidden], .header-basket-btn[hidden] { display: none; }
.basket-fab-icon { width: 26px; height: 26px; display: block; }
.basket-count {
    position: absolute; top: -4px; right: -4px; min-width: 21px; height: 21px; padding: 0 5px;
    background: #1a1a1a; color: var(--gold); border: 2px solid var(--gold);
    border-radius: 99px; font-family: var(--mono); font-weight: 700; font-size: .76rem;
    line-height: 1; display: grid; place-items: center;
}
.basket {
    position: fixed; top: 0; right: 0; z-index: 110; height: 100%; width: min(380px, 90vw);
    background: var(--surface); border-left: 1px solid var(--line); padding: 1.5rem;
    display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s ease;
}
.basket:not([hidden]) { display: flex; transform: translateX(0); }
.basket-head { display: flex; justify-content: space-between; align-items: center; }
.basket-close { background: 0; border: 0; color: var(--muted); font-size: 1.8rem; cursor: pointer; }
.basket-items { list-style: none; margin: 1rem 0; padding: 0; flex: 1; overflow-y: auto; }
.basket-foot { border-top: 1px solid var(--line); padding-top: 1rem; }
.basket-total { display: flex; justify-content: space-between; margin-bottom: 1rem; font-family: var(--mono); }

/* ── News ───────────────────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.news-card { display: flex; flex-direction: column; }
.news-date { font-family: var(--mono); font-size: .8rem; color: var(--gold); letter-spacing: 1px; }
.news-title { font-size: 1.3rem; text-transform: uppercase; margin: .5rem 0; }
.news-excerpt { color: var(--muted); flex: 1; }
.news-more { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; margin-top: 1rem; }

/* ── Wiki ───────────────────────────────────────────────────────────────── */
.wiki-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--gap); align-items: start; }
.wiki-nav { position: sticky; top: calc(var(--header-h) + 1rem); }
.wiki-nav h4 { text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-size: .85rem; margin: 1rem 0 .5rem; }
.wiki-nav h4:first-child { margin-top: 0; }
.wiki-nav a { display: block; color: var(--muted); padding: .35rem 0; border-bottom: 1px solid var(--line); }
.wiki-nav a:last-of-type { border-bottom: 0; }
.wiki-nav a:hover, .wiki-nav a.active { color: var(--text); }
.wiki-nav a.active { padding-left: .5rem; border-left: 2px solid var(--gold); margin-left: -2px; }
.wiki-content { overflow: hidden; }
.wiki-content > h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.wiki-content h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: .75rem; }
.wiki-list { padding-left: 1.2rem; color: var(--muted); }
.wiki-list li { margin: .4rem 0; }
.callout { margin-top: 1.5rem; background: var(--gold-soft); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; border-radius: var(--radius); }
code { font-family: var(--mono); background: rgba(0,0,0,.4); padding: .1rem .4rem; border-radius: 4px; font-size: .9em; }

/* ── Wiki post body (CKEditor rich HTML) ─────────────────────────────── */
.post-body { color: var(--muted); line-height: 1.8; }
.post-body > *:first-child { margin-top: 0; }
.post-body h1, .post-body h2 { font-family: var(--display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); text-transform: uppercase; margin: 1.75rem 0 .75rem; color: var(--text); }
.post-body h3 { font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; margin: 1.25rem 0 .5rem; color: var(--text); letter-spacing: .5px; }
.post-body h4 { font-family: var(--display); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin: 1rem 0 .4rem; color: var(--gold); }
.post-body p { margin: .8rem 0; }
.post-body ul, .post-body ol { padding-left: 1.4rem; margin: .75rem 0; }
.post-body li { margin: .35rem 0; }
.post-body a { color: var(--gold); }
.post-body a:hover { text-decoration: underline; }
.post-body strong, .post-body b { color: var(--text); font-weight: 600; }
.post-body blockquote { border-left: 3px solid var(--gold); margin: 1.25rem 0; padding: .75rem 1.1rem; background: var(--gold-soft); border-radius: var(--radius); color: var(--text); font-style: normal; }
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.post-body img { border-radius: var(--radius); max-width: 100%; height: auto; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .9rem; }
.post-body th { background: var(--surface); text-align: left; padding: .6rem .9rem; text-transform: uppercase; letter-spacing: .5px; font-size: .78rem; color: var(--gold); border-bottom: 1px solid var(--line); font-family: var(--display); }
.post-body td { padding: .6rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.post-body tr:last-child td { border-bottom: none; }
.post-body pre { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; overflow-x: auto; font-family: var(--mono); font-size: .875rem; }
.post-body pre code { background: none; padding: 0; font-size: inherit; }

/* ── Wiki teaser cards (homepage) ────────────────────────────────────── */
.wiki-teaser { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--gap); }
.wiki-teaser-item { display: flex; flex-direction: column; gap: .4rem; transition: border-color .15s ease; }
.wiki-teaser-item:hover { border-color: var(--gold); }
.wiki-teaser-cat { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .75rem; color: var(--gold); }
.wiki-teaser-title { font-family: var(--display); font-size: 1rem; text-transform: uppercase; color: var(--text); line-height: 1.2; }

/* ── Shared "view all / open wiki" row ───────────────────────────────── */
.news-all { text-align: center; margin-top: 2rem; }

/* ── Support form ───────────────────────────────────────────────────────── */
.ticket-form { max-width: 720px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1rem; }
.field > span { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; margin-bottom: .4rem; }
.field input, .field textarea {
    width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--text); font-family: var(--body); font-size: 1rem; padding: .7rem .9rem;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hp { position: absolute; left: -9999px; }
.form-foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-status { margin: 0; font-size: .9rem; }
.form-status.ok { color: var(--good); }
.form-status.err { color: var(--bad); }

/* ── Join CTA banner (full-bleed) ───────────────────────────────────────── */
.cta { background: var(--bg); padding: clamp(2rem, 5vw, 4rem) 0; }
.cta-banner {
    position: relative; width: min(100% - 2.5rem, 1200px); margin-inline: auto;
    border-radius: var(--radius-lg); overflow: hidden;
}
.cta-img { display: block; width: 100%; height: auto; }
.cta-banner::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 55%, rgba(15, 15, 15, .9) 100%);
}
.cta-actions {
    position: absolute; left: 0; right: 0; bottom: clamp(1rem, 3vw, 2rem); z-index: 1;
    display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; padding: 0 1rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #101010; border-top: 1px solid var(--line); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--gap); padding-bottom: 2rem; }
.brand-footer { margin-bottom: .75rem; }
.footer-brand p { color: var(--muted); max-width: 30ch; }
.footer-links h4, .footer-connect h4 { text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }
.footer-links a { display: block; color: var(--muted); padding: .25rem 0; }
.footer-links a:hover { color: var(--text); }
.footer-connect { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.25rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

/* ── Focus visibility ───────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-bg {
        background-image:
            linear-gradient(180deg, rgba(15, 15, 15, .82), rgba(15, 15, 15, .93)),
            url("/assets/img/banner-hero-1100.jpg");
        background-position: center;
    }

    .hero-inner, .server-grid, .wiki-layout, .footer-grid { grid-template-columns: 1fr; }
    .wiki-nav { position: static; }
    .header-cta .btn span { display: none; }

    .nav-toggle { display: flex; }
    .header-cta { order: 3; }
    .primary-nav {
        position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0;
        background: var(--surface); border-bottom: 1px solid var(--line); margin: 0;
        padding: .5rem 1.25rem; transform: translateY(-120%); transition: transform .25s ease;
    }
    .primary-nav.open { transform: translateY(0); }
    .primary-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
    .field-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: .4rem; }
    .header-cta .btn-ghost { display: none; } /* keep only Connect on tiny screens */
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
