@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    color-scheme: dark;
    --bg: #08111f;
    --surface: rgba(10, 22, 39, .88);
    --surface-solid: #0d1a2c;
    --surface-soft: rgba(21, 39, 63, .72);
    --line: rgba(150, 178, 214, .18);
    --line-strong: rgba(150, 178, 214, .32);
    --text: #eef5ff;
    --muted: #96a8bf;
    --primary: #2f8cff;
    --primary-hover: #59a4ff;
    --primary-soft: rgba(47, 140, 255, .15);
    --success: #2dd4a8;
    --danger: #ff647c;
    --warning: #ffbf5b;
    --shadow: 0 24px 70px rgba(0, 0, 0, .42);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shell: min(1440px, calc(100% - 48px));
}

html[data-theme='light'] {
    color-scheme: light;
    --bg: #eef4fa;
    --surface: rgba(255, 255, 255, .9);
    --surface-solid: #fff;
    --surface-soft: rgba(239, 246, 253, .86);
    --line: rgba(50, 74, 103, .15);
    --line-strong: rgba(50, 74, 103, .28);
    --text: #10233b;
    --muted: #60728a;
    --primary: #0877ed;
    --primary-hover: #0063c9;
    --primary-soft: rgba(8, 119, 237, .12);
    --shadow: 0 24px 70px rgba(36, 68, 105, .19);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; }
svg { display: block; width: 1.25rem; height: 1.25rem; fill: currentColor; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--surface-solid);
    color: var(--text);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.map-page { min-height: 100dvh; overflow: hidden; }
.map-canvas { position: fixed; inset: 0; z-index: 0; background: #0a1525; }
.map-shade {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 10, 20, .86) 0%, rgba(3, 10, 20, .54) 37%, rgba(3, 10, 20, .08) 72%),
        linear-gradient(180deg, rgba(3, 10, 20, .5) 0%, transparent 28%, rgba(3, 10, 20, .18) 100%);
}
html[data-theme='light'] .map-shade {
    background:
        linear-gradient(90deg, rgba(229, 239, 249, .92) 0%, rgba(229, 239, 249, .62) 38%, rgba(229, 239, 249, .06) 75%),
        linear-gradient(180deg, rgba(229, 239, 249, .65), transparent 28%);
}

.topbar {
    position: relative;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(91, 164, 255, .35);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(47, 140, 255, .26), rgba(47, 140, 255, .08));
    color: #6ab0ff;
    box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.top-actions { display: flex; align-items: center; gap: 9px; }
.icon-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--muted);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(16px);
    transition: .2s ease;
}
.icon-button:hover, .icon-button:focus-visible { color: var(--text); border-color: var(--line-strong); transform: translateY(-1px); }
.theme-icon-sun { display: none; }
html[data-theme='light'] .theme-icon-sun { display: block; }
html[data-theme='light'] .theme-icon-moon { display: none; }

.search-stage {
    position: relative;
    z-index: 500;
    display: flex;
    min-height: calc(100dvh - 140px);
    align-items: center;
    padding-bottom: 11vh;
    pointer-events: none;
}
.search-card { width: min(650px, 56vw); pointer-events: auto; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #72b4ff; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; border-radius: 2px; background: currentColor; box-shadow: 0 0 14px currentColor; }
.search-card h1 { max-width: 640px; margin: 0; font-size: clamp(39px, 4.2vw, 67px); line-height: 1.03; letter-spacing: -.055em; text-wrap: balance; }
.lead { max-width: 600px; margin: 22px 0 32px; color: var(--muted); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.7; }

.ip-form { max-width: 620px; }
.ip-form > label { display: block; margin: 0 0 9px 3px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.input-group {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    transition: border-color .2s, box-shadow .2s;
}
.input-group:focus-within { border-color: rgba(47, 140, 255, .72); box-shadow: var(--shadow), 0 0 0 4px rgba(47, 140, 255, .12); }
.input-icon { display: grid; width: 45px; place-items: center; color: var(--muted); }
.input-group input { min-width: 0; height: 51px; padding: 0 8px; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 17px; font-weight: 600; letter-spacing: .02em; }
.input-group input::placeholder { color: color-mix(in srgb, var(--muted) 65%, transparent); font-weight: 400; }
.search-button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #2587f8, #086ce0);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(8, 108, 224, .3);
    transition: .2s ease;
}
.search-button:hover, .search-button:focus-visible { background: linear-gradient(135deg, #4b9eff, #1178eb); transform: translateY(-1px); }
.search-button:disabled { opacity: .7; cursor: wait; transform: none; }
.form-meta { display: flex; justify-content: space-between; align-items: center; padding: 10px 4px 0; color: var(--muted); font-size: 11px; }
.text-button { display: inline-flex; align-items: center; gap: 6px; padding: 5px; border: 0; background: transparent; color: #72b4ff; font-size: 11px; font-weight: 700; cursor: pointer; }
.text-button svg { width: 15px; height: 15px; }

.result-panel {
    position: fixed;
    z-index: 700;
    right: 24px;
    bottom: 24px;
    width: min(430px, calc(100% - 48px));
    padding: 27px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(24px) scale(.97);
    pointer-events: none;
    backdrop-filter: blur(24px);
    transition: opacity .28s ease, transform .28s ease;
}
.result-panel.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.panel-close { position: absolute; top: 17px; right: 18px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-soft); color: var(--muted); font-size: 23px; line-height: 1; cursor: pointer; }
.result-heading { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); }
.result-panel h2 { margin: 13px 42px 4px 0; font-size: 27px; letter-spacing: -.04em; word-break: break-word; }
.result-location { margin: 0 0 23px; color: var(--muted); font-size: 13px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.result-grid div { min-width: 0; padding: 12px 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.result-grid dt { margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.result-grid dd { margin: 0; overflow: hidden; color: var(--text); font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.accuracy-note { margin: 17px 2px 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.ip-marker { position: relative; width: 20px; height: 20px; border: 3px solid #fff; border-radius: 50%; background: var(--primary); box-shadow: 0 4px 18px rgba(0, 80, 190, .6); }
.ip-marker::before { content: ''; position: absolute; inset: -12px; border: 2px solid rgba(47, 140, 255, .45); border-radius: 50%; animation: markerPulse 2s infinite; }
@keyframes markerPulse { 0% { transform: scale(.45); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }

.loading-overlay { position: fixed; z-index: 1200; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; background: rgba(3, 9, 18, .5); color: #fff; font-size: 13px; font-weight: 700; backdrop-filter: blur(5px); }
.loading-overlay[hidden] { display: none; }
.spinner { width: 23px; height: 23px; border: 3px solid rgba(255, 255, 255, .25); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.toast-region { position: fixed; z-index: 1500; top: 95px; right: 24px; display: grid; width: min(380px, calc(100% - 32px)); gap: 10px; pointer-events: none; }
.toast { display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--surface-solid); color: var(--text); box-shadow: var(--shadow); font-size: 12px; line-height: 1.5; pointer-events: auto; animation: toastIn .25s ease; }
.toast::before { content: ''; flex: 0 0 auto; width: 9px; height: 9px; margin-top: 4px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.toast.is-error::before { background: var(--danger); box-shadow: 0 0 10px var(--danger); }
.toast.is-success::before { background: var(--success); box-shadow: 0 0 10px var(--success); }
.toast.is-leaving { opacity: 0; transform: translateX(16px); transition: .2s; }
@keyframes toastIn { from { opacity: 0; transform: translateX(16px); } }

.map-credit { position: fixed; z-index: 600; right: 17px; bottom: 7px; color: var(--muted); font-size: 9px; }
.map-credit a { text-decoration: none; }
.leaflet-control-attribution { display: none; }
.leaflet-control-zoom { margin-right: 20px !important; margin-bottom: 20px !important; border: 1px solid var(--line-strong) !important; border-radius: 13px !important; overflow: hidden; box-shadow: var(--shadow) !important; }
.leaflet-control-zoom a { border: 0 !important; background: var(--surface-solid) !important; color: var(--text) !important; }
.leaflet-control-zoom a + a { border-top: 1px solid var(--line) !important; }
.noscript-message { position: fixed; z-index: 3000; inset: auto 20px 20px; padding: 15px; border-radius: 12px; background: var(--danger); color: #fff; text-align: center; }

/* Wspólne ekrany administracyjne */
.app-page { min-height: 100dvh; background: radial-gradient(circle at 12% -10%, rgba(47, 140, 255, .22), transparent 35%), var(--bg); }
.page-shell { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.admin-header { border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(18px); }
.admin-header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; }
.admin-actions { display: flex; align-items: center; gap: 9px; }
.button, .button-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
}
.button:hover, .button-link:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.button-primary { border-color: transparent; background: var(--primary); color: #fff; }
.button-danger { border-color: rgba(255, 100, 124, .25); background: rgba(255, 100, 124, .1); color: var(--danger); }
.button svg, .button-link svg { width: 16px; height: 16px; }
.admin-main { padding-block: 44px 65px; }
.page-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.page-kicker { margin: 0 0 7px; color: var(--primary-hover); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-title { margin: 0; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.05em; }
.page-subtitle { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.stat-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 13px 35px rgba(0,0,0,.09); }
.stat-label { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.stat-label svg { width: 17px; height: 17px; color: var(--primary-hover); }
.stat-value { display: block; margin-top: 15px; font-size: 29px; font-weight: 800; letter-spacing: -.04em; }
.content-card { border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.card-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px; border-bottom: 1px solid var(--line); }
.admin-search { display: grid; flex: 1; max-width: 650px; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.field { width: 100%; min-height: 43px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: var(--surface-soft); color: var(--text); font-size: 13px; }
.field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 13px 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { padding: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--primary-soft); }
.data-table .ip-cell { color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; }
.country-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 8px; background: var(--surface-soft); color: var(--text); font-size: 10px; font-weight: 700; }
.row-actions { display: flex; justify-content: flex-end; }
.delete-button { display: grid; width: 35px; height: 35px; padding: 0; place-items: center; border: 1px solid rgba(255, 100, 124, .2); border-radius: 10px; background: rgba(255, 100, 124, .07); color: var(--danger); cursor: pointer; }
.delete-button svg { width: 15px; height: 15px; }
.map-link { color: var(--primary-hover); text-decoration: none; }
.empty-state { padding: 70px 20px; color: var(--muted); text-align: center; }
.empty-state strong { display: block; margin-bottom: 7px; color: var(--text); font-size: 16px; }
.pagination { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.pagination-links { display: flex; gap: 6px; }
.page-link { display: grid; min-width: 34px; height: 34px; padding: 0 8px; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); text-decoration: none; }
.page-link:hover, .page-link.is-active { border-color: var(--primary); background: var(--primary-soft); color: var(--text); }
.flash { margin-bottom: 18px; padding: 13px 15px; border: 1px solid rgba(45, 212, 168, .24); border-radius: 13px; background: rgba(45, 212, 168, .09); color: var(--success); font-size: 12px; font-weight: 700; }

.dialog { width: min(440px, calc(100% - 32px)); padding: 0; border: 1px solid var(--line-strong); border-radius: 20px; background: var(--surface-solid); color: var(--text); box-shadow: var(--shadow); }
.dialog::backdrop { background: rgba(3, 9, 18, .72); backdrop-filter: blur(5px); }
.dialog-body { padding: 25px; }
.dialog-body h2 { margin: 0 0 8px; font-size: 21px; }
.dialog-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 9px; padding: 17px 25px; border-top: 1px solid var(--line); }

.login-page { display: grid; min-height: 100dvh; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 0, rgba(47, 140, 255, .27), transparent 38%), var(--bg); }
.login-card { width: min(430px, 100%); padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.login-card .brand { margin-bottom: 35px; }
.login-card h1 { margin: 0; font-size: 29px; letter-spacing: -.04em; }
.login-card > p { margin: 9px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; margin: 0 0 8px 2px; color: var(--muted); font-size: 11px; font-weight: 700; }
.login-card .field { min-height: 50px; }
.login-submit { width: 100%; min-height: 50px; margin-top: 8px; font-size: 13px; }
.form-error { margin: 0 0 18px; padding: 12px 13px; border: 1px solid rgba(255, 100, 124, .25); border-radius: 11px; background: rgba(255, 100, 124, .09); color: var(--danger); font-size: 12px; line-height: 1.5; }
.form-success { margin: 0 0 18px; padding: 12px 13px; border: 1px solid rgba(45, 212, 168, .24); border-radius: 11px; background: rgba(45, 212, 168, .09); color: var(--success); font-size: 12px; }
.back-link { display: block; margin-top: 21px; color: var(--muted); font-size: 11px; text-align: center; text-decoration: none; }

@media (max-width: 900px) {
    :root { --shell: min(100% - 32px, 720px); }
    .map-shade { background: linear-gradient(180deg, rgba(3, 10, 20, .74) 0%, rgba(3, 10, 20, .45) 58%, rgba(3, 10, 20, .18) 100%); }
    html[data-theme='light'] .map-shade { background: linear-gradient(180deg, rgba(229,239,249,.87), rgba(229,239,249,.5) 62%, rgba(229,239,249,.12)); }
    .search-stage { align-items: flex-start; padding-top: 12vh; }
    .search-card { width: 100%; max-width: 650px; }
    .search-card h1 { font-size: clamp(38px, 9vw, 59px); }
    .result-panel { right: 16px; bottom: 16px; width: min(430px, calc(100% - 32px)); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    :root { --shell: calc(100% - 24px); }
    .map-page { overflow-y: auto; }
    .topbar { height: 76px; }
    .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
    .brand small { display: none; }
    .icon-button { width: 40px; height: 40px; border-radius: 12px; }
    .search-stage { min-height: calc(100dvh - 76px); padding-top: 8vh; padding-bottom: 150px; }
    .search-card h1 { font-size: clamp(36px, 12vw, 50px); }
    .lead { margin: 17px 0 25px; font-size: 14px; }
    .input-group { grid-template-columns: auto minmax(0, 1fr); }
    .search-button { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
    .input-icon { width: 38px; }
    .input-group input { height: 48px; font-size: 15px; }
    .form-meta { align-items: flex-start; gap: 8px; }
    .result-panel { right: 8px; bottom: 8px; width: calc(100% - 16px); max-height: min(610px, calc(100dvh - 16px)); padding: 23px; overflow-y: auto; border-radius: 23px; }
    .result-grid { grid-template-columns: 1fr 1fr; }
    .result-grid dd { white-space: normal; }
    .toast-region { top: 82px; right: 16px; }
    .leaflet-control-zoom { margin-right: 12px !important; margin-bottom: 12px !important; }
    .map-credit { display: none; }

    .page-shell { width: calc(100% - 24px); }
    .admin-header-inner { min-height: 68px; }
    .admin-header .brand span:last-child { display: none; }
    .admin-actions .button-link span, .admin-actions .button span { display: none; }
    .admin-main { padding-block: 30px 45px; }
    .page-title-row { display: block; }
    .page-title-row > .button-link { margin-top: 17px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
    .stat-card { padding: 15px; border-radius: 16px; }
    .stat-value { margin-top: 11px; font-size: 24px; }
    .content-card { border-radius: 20px; overflow: visible; background: transparent; box-shadow: none; border: 0; }
    .card-toolbar { display: block; padding: 0 0 14px; border: 0; }
    .admin-search { max-width: none; }
    .card-toolbar > .button-link { width: 100%; margin-top: 9px; }
    .table-wrap { overflow: visible; }
    .data-table, .data-table tbody, .data-table tr, .data-table td { display: block; width: 100%; }
    .data-table thead { display: none; }
    .data-table tbody { display: grid; gap: 10px; }
    .data-table tr { padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
    .data-table td { display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 10px; padding: 7px 0; border: 0; word-break: break-word; }
    .data-table td::before { content: attr(data-label); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
    .data-table .actions-cell { padding-top: 13px; border-top: 1px solid var(--line); margin-top: 6px; }
    .row-actions { justify-content: flex-start; }
    .pagination { border: 0; padding: 16px 0; }
    .pagination > span { display: none; }
    .pagination-links { width: 100%; justify-content: center; }
    .login-card { padding: 25px 21px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
