:root {
    --bg: #05090d;
    --bg-elevated: #091117;
    --surface: rgba(13, 25, 32, .58);
    --surface-hover: rgba(18, 35, 43, .72);
    --surface-solid: #0d171e;
    --line: rgba(174, 223, 226, .1);
    --line-bright: rgba(174, 223, 226, .19);
    --accent: #37d6b8;
    --accent-hi: #75ead3;
    --accent-2: #57b5ff;
    --accent-3: #d7bd81;
    --ok: #4adea9;
    --warn: #e8c77a;
    --danger: #ff7f88;
    --text: #edf7f5;
    --text-dim: #9bb0b3;
    --text-mute: #657b80;
    --scroll-thumb: #183036;
    --scroll-thumb-hover: #28515a;
    --ease: cubic-bezier(.2, .8, .2, 1);
    --ease-spring: cubic-bezier(.2, 1.2, .3, 1);
    --radius: 18px;
}


* { -webkit-tap-highlight-color: transparent; }

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
    font-feature-settings: "ss01", "ss02", "cv01";
    letter-spacing: -.014em;
    min-height: 100vh;
}


body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(171, 224, 219, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(171, 224, 219, .025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

body > * { position: relative; z-index: 1; }

::selection { background: rgba(55, 214, 184, .3); color: #fff; }


* { scrollbar-width: thin; scrollbar-color: var(--scroll-thumb) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--scroll-thumb-hover); }


.font-display { letter-spacing: -.04em; }

h1, h2, h3 { letter-spacing: -.028em; }

.text-gradient {
    background: linear-gradient(112deg, #f2fbf8 0%, #9cf1de 48%, #76bcf4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-animated {
    background: linear-gradient(112deg, #f4fbf9, #72e5cb, #72bdf5, #d7bd81, #f4fbf9);
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 12s ease-in-out infinite;
}

@keyframes gradient-shift {
    to { background-position: 320% 50%; }
}


.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    animation: word-in .85s var(--ease) forwards;
}

@keyframes word-in {
    to { opacity: 1; transform: translateY(0); }
}


.eyebrow {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-mute);
}


.glass {
    background:
        linear-gradient(145deg, rgba(23, 43, 51, .66), rgba(8, 17, 23, .52));
    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter: blur(26px) saturate(145%);
    border: 1px solid var(--line);
    box-shadow:
        inset 0 1px 0 rgba(231, 255, 251, .08),
        inset 0 -1px 0 rgba(1, 8, 12, .45),
        0 22px 70px -42px rgba(0, 0, 0, .9);
}

.glass-strong {
    background:
        linear-gradient(145deg, rgba(21, 43, 49, .94), rgba(6, 14, 20, .92));
    backdrop-filter: blur(34px) saturate(155%);
    -webkit-backdrop-filter: blur(34px) saturate(155%);
    border: 1px solid var(--line-bright);
    box-shadow:
        inset 0 1px 0 rgba(226, 255, 249, .1),
        inset 0 -1px 0 rgba(1, 7, 10, .65),
        0 36px 100px -46px rgba(0, 0, 0, .95);
}


.card-hover {
    transition:
        transform .42s var(--ease),
        box-shadow .42s ease,
        border-color .42s ease,
        background-color .42s ease;
    will-change: transform;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(106, 228, 208, .34);
    background-color: var(--surface-hover);
    box-shadow:
        inset 0 1px 0 rgba(228, 255, 250, .12),
        0 28px 70px -38px rgba(55, 214, 184, .5),
        0 0 0 1px rgba(87, 181, 255, .08);
}


.card-clickable { cursor: pointer; }
.card-clickable:active { transform: translateY(-1px) scale(.997); }


.glow-border { position: relative; isolation: isolate; }

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(117, 234, 211, .9),
        rgba(87, 181, 255, .5),
        rgba(215, 189, 129, .25),
        transparent 72%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .42s ease;
    z-index: -1;
}

.glow-border:hover::before { opacity: 1; }


.aurora {
    position: absolute;
    border-radius: 9999px;
    filter: blur(90px);
    will-change: transform;
    pointer-events: none;
    opacity: .72;
}

.aurora-1 {
    width: 48rem;
    height: 48rem;
    top: -22rem;
    left: -16rem;
    background: radial-gradient(circle, rgba(35, 179, 153, .32), transparent 66%);
    animation: drift-1 24s ease-in-out infinite;
}

.aurora-2 {
    width: 42rem;
    height: 42rem;
    top: 16%;
    right: -18rem;
    background: radial-gradient(circle, rgba(60, 140, 202, .28), transparent 68%);
    animation: drift-2 31s ease-in-out infinite;
}

.aurora-3 {
    width: 38rem;
    height: 38rem;
    bottom: -18rem;
    left: 28%;
    background: radial-gradient(circle, rgba(171, 143, 81, .18), transparent 68%);
    animation: drift-3 38s ease-in-out infinite;
}

.liquid-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, transparent 35%, rgba(5, 9, 13, .62) 100%),
        linear-gradient(to bottom, transparent 45%, rgba(5, 9, 13, .72));
}

.liquid-noise {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1) 0 .55px, transparent .8px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .08) 0 .45px, transparent .7px);
    background-size: 5px 5px, 7px 7px;
    mix-blend-mode: soft-light;
}

@keyframes drift-1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(6%, 8%, 0) scale(1.15); }
    66%      { transform: translate3d(-5%, 3%, 0) scale(.9); }
}

@keyframes drift-2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); }
    40%      { transform: translate3d(-8%, -6%, 0) scale(1.2); }
    75%      { transform: translate3d(5%, -2%, 0) scale(.86); }
}

@keyframes drift-3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.08); }
    50%      { transform: translate3d(7%, -9%, 0) scale(.88); }
}


.top-glow::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: min(64rem, 92%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(55, 214, 184, .55),
        rgba(87, 181, 255, .5),
        transparent
    );
}


.fade-up { animation: fade-up .7s var(--ease) both; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-animate].is-visible { opacity: 1; transform: translateY(0); }

[data-animate="left"]  { transform: translateX(-28px); }
[data-animate="right"] { transform: translateX(28px); }
[data-animate="left"].is-visible,
[data-animate="right"].is-visible { transform: translateX(0); }

[data-animate="zoom"] { transform: scale(.94); }
[data-animate="zoom"].is-visible { transform: scale(1); }


.page-in { animation: page-in .42s var(--ease) both; }

@keyframes page-in {
    from { opacity: 0; transform: translateY(16px) scale(.994); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}


.modal-in { animation: modal-in .36s var(--ease-spring) both; }

@keyframes modal-in {
    from { opacity: 0; transform: translateY(22px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.backdrop-in { animation: backdrop-in .28s ease both; }

@keyframes backdrop-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.tab-in { animation: tab-in .3s var(--ease) both; }

@keyframes tab-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}


.pulse-dot { position: relative; }

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: inherit;
    animation: pulse-ring 2.4s cubic-bezier(.4, 0, .6, 1) infinite;
}

@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(2.8); opacity: 0; }
    100% { transform: scale(2.8); opacity: 0; }
}


.btn-shine {
    position: relative;
    overflow: hidden;
    transition: transform .26s var(--ease), box-shadow .26s ease, filter .26s ease;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 62%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, .3),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn-shine:hover {
    transform: translateY(-1.5px);
    filter: brightness(1.06);
}

.btn-shine:active { transform: translateY(0) scale(.98); }
.btn-shine:hover::after { animation: shine .95s var(--ease); }

@keyframes shine {
    from { left: -130%; }
    to   { left: 155%; }
}


.btn-ghost {
    border: 1px solid var(--line-bright);
    background: var(--surface);
    transition: background-color .24s ease, border-color .24s ease,
                transform .24s var(--ease);
}

.btn-ghost:hover {
    background: var(--surface-hover);
    border-color: rgba(117, 234, 211, .34);
    transform: translateY(-1px);
}

.btn-ghost:active { transform: translateY(0); }


.cs-toggle {
    position: relative;
    display: inline-block;
    width: 3.25rem;
    height: 1.75rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
    cursor: pointer;

    transition: background-color .36s var(--ease-spring),
                border-color .36s ease,
                box-shadow .36s ease;
}

.cs-toggle:focus-visible {
    outline: 2px solid rgba(117, 234, 211, .8);
    outline-offset: 3px;
}

.cs-toggle__knob {
    position: absolute;
    top: 50%;
    left: .1875rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -.625rem;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .45), 0 2px 8px rgba(0, 0, 0, .25);

    transform: translateX(0);
    transition: transform .36s var(--ease-spring);
    will-change: transform;
}

.cs-toggle[aria-checked="true"] {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-color: rgba(117, 234, 211, .55);
    box-shadow: 0 0 22px -5px rgba(55, 214, 184, .65);
}

.cs-toggle[aria-checked="true"] .cs-toggle__knob { transform: translateX(1.5rem); }

.cs-toggle[disabled] { opacity: .4; cursor: not-allowed; }


.guard-list { display: grid; gap: 1rem; }

.guard-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 1.375rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color .3s ease, background-color .3s ease;
}

.guard-card:hover {
    border-color: rgba(117, 234, 211, .28);
    background: var(--surface-hover);
}

.guard-card__body { min-width: 0; }

.guard-card__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .4375rem;
}

.guard-card__desc {
    font-size: .8125rem;
    line-height: 1.55;
    color: var(--text-dim);
}

.guard-card__state {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    margin-top: .625rem;
    font-size: .75rem;
    font-weight: 600;
}

.guard-card__state--on { color: var(--ok); }
.guard-card__state--off { color: var(--text-mute); }

.guard-badge {
    padding: .125rem .4375rem;
    border-radius: 6px;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid rgba(117, 234, 211, .32);
    background: rgba(55, 214, 184, .12);
    color: var(--accent-hi);
}


.attack-stat {
    padding: 1.375rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    transition: border-color .3s ease, transform .3s var(--ease);
}

.attack-stat:hover {
    border-color: rgba(248, 113, 113, .3);
    transform: translateY(-2px);
}

.attack-stat__label {
    font-size: .75rem;
    color: var(--text-mute);
    margin-bottom: .5rem;
}

.attack-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
}


.attack-card {
    position: relative;
    overflow: hidden;
    padding: 1.375rem 1.5rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(248, 113, 113, .06), rgba(255, 255, 255, .02));
    transition: border-color .3s ease, transform .3s var(--ease);
}

.attack-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--danger), var(--accent-2));
}

.attack-card:hover {
    border-color: rgba(248, 113, 113, .32);
    transform: translateY(-2px);
}

.attack-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.125rem;
}

.attack-card__domain {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text);
    overflow-wrap: anywhere;
}

.attack-card__time {
    margin-top: .25rem;
    font-size: .75rem;
    color: var(--text-mute);
}

.attack-card__badge {
    flex-shrink: 0;
    padding: .25rem .625rem;
    border-radius: 8px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border: 1px solid rgba(52, 211, 153, .3);
    background: rgba(52, 211, 153, .12);
    color: var(--ok);
}

.attack-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

@media (min-width: 768px) {
    .attack-card__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.attack-card__label {
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-mute);
    margin-bottom: .3125rem;
}

.attack-card__value {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
}


.attack-card__bar {
    margin-top: 1.25rem;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.attack-card__bar span {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--warn), var(--danger));
    transition: width .7s var(--ease);
}


.cs-tab {
    position: relative;
    padding: .8125rem .125rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-mute);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .24s ease;
    white-space: nowrap;
}

.cs-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s var(--ease);
}

.cs-tab:hover { color: var(--text-dim); }
.cs-tab.is-active { color: var(--text); }
.cs-tab.is-active::after { transform: scaleX(1); }


.cs-pill {
    padding: .5rem 1rem;
    border-radius: 10px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-dim);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: color .24s ease, background-color .24s ease, border-color .24s ease;
}

.cs-pill:hover { color: var(--text); background: var(--surface); }

.cs-pill.is-active {
    color: #fff;
    background: linear-gradient(180deg, rgba(55, 214, 184, .24), rgba(55, 214, 184, .1));
    border-color: rgba(117, 234, 211, .34);
    box-shadow: 0 0 20px -8px rgba(55, 214, 184, .6);
}


.skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border-radius: 6px;
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .06),
        transparent
    );
    animation: sweep 1.6s ease-in-out infinite;
}

@keyframes sweep { to { transform: translateX(100%); } }

.skeleton-line { height: .75rem; }
.skeleton-line + .skeleton-line { margin-top: .5rem; }


.cs-row { transition: background-color .18s ease; }
.cs-row:hover { background-color: rgba(255, 255, 255, .03); }

.cs-row-clickable { cursor: pointer; }

.premium-nav {
    background: rgba(5, 12, 17, .68);
    backdrop-filter: blur(28px) saturate(145%);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
    border-bottom: 1px solid rgba(174, 223, 226, .1);
    box-shadow: 0 12px 50px -38px rgba(0, 0, 0, .9);
}

.hero-shell {
    isolation: isolate;
}

.hero-shell::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: min(48rem, 86vw);
    height: min(28rem, 62vw);
    left: 50%;
    top: 4rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 42% 40%, rgba(55, 214, 184, .18), transparent 52%),
        radial-gradient(circle at 64% 46%, rgba(87, 181, 255, .16), transparent 58%);
    filter: blur(20px);
}

.metric-card {
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(19, 38, 45, .64), rgba(8, 17, 22, .58));
}

.kpi-card {
    min-height: 8rem;
}

.kpi-card--featured {
    background:
        linear-gradient(145deg, rgba(37, 20, 23, .7), rgba(8, 17, 22, .58));
    border-color: rgba(248, 113, 113, .18);
}

.kpi-value.kpi-error {
    color: var(--danger) !important;
    font-size: 1.25rem;
    cursor: help;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
}

.premium-panel {
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(20, 40, 47, .7), rgba(7, 15, 20, .66));
    border: 1px solid var(--line);
    box-shadow:
        inset 0 1px 0 rgba(232, 255, 250, .07),
        0 30px 80px -52px rgba(0, 0, 0, .95);
}

.dashboard-shell {
    background: rgba(5, 9, 13, .18);
}

.dashboard-sidebar {
    background:
        linear-gradient(180deg, rgba(10, 21, 27, .9), rgba(5, 12, 17, .84));
    backdrop-filter: blur(30px) saturate(145%);
    -webkit-backdrop-filter: blur(30px) saturate(145%);
    border-right: 1px solid var(--line);
    box-shadow: 24px 0 80px -58px rgba(0, 0, 0, .95);
}

.dashboard-header {
    background: rgba(6, 14, 19, .76);
    backdrop-filter: blur(28px) saturate(145%);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
    border-bottom: 1px solid var(--line);
}

.nav-link {
    border: 1px solid transparent;
    color: var(--text-dim);
    transition:
        color .22s ease,
        background-color .22s ease,
        border-color .22s ease,
        transform .22s var(--ease);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(117, 234, 211, .06);
    border-color: rgba(117, 234, 211, .1);
}

.nav-link.active {
    color: #eafff9;
    background:
        linear-gradient(90deg, rgba(55, 214, 184, .16), rgba(87, 181, 255, .08));
    border-color: rgba(117, 234, 211, .2);
    box-shadow: inset 3px 0 0 rgba(117, 234, 211, .8);
}

/* Свёрнутый сайдбар: 64px, только иконки, подписи скрыты и доступны
   через нативный title-тултип на hover. Состояние переключается
   JS-классом is-collapsed и хранится в localStorage (core.js). */
.dashboard-sidebar.is-collapsed {
    width: 4.5rem;
}

.dashboard-sidebar.is-collapsed .sidebar-label {
    display: none;
}

.dashboard-sidebar.is-collapsed .nav-link {
    justify-content: center;
    padding-left: .75rem;
    padding-right: .75rem;
}

.dashboard-sidebar.is-collapsed .sidebar-head {
    flex-direction: column;
    padding-left: .75rem;
    padding-right: .75rem;
    gap: .75rem;
}

.dashboard-sidebar.is-collapsed #sidebar-toggle {
    transform: rotate(180deg);
}

.modal > div:last-child {
    background:
        linear-gradient(145deg, rgba(19, 38, 46, .97), rgba(6, 14, 19, .98));
    border-color: rgba(174, 223, 226, .16);
    box-shadow:
        inset 0 1px 0 rgba(234, 255, 251, .09),
        0 45px 140px -45px rgba(0, 0, 0, .98);
}

input,
select,
textarea {
    background-color: rgba(5, 13, 18, .72) !important;
    border-color: rgba(174, 223, 226, .13) !important;
    color: var(--text) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(117, 234, 211, .52) !important;
    box-shadow: 0 0 0 3px rgba(55, 214, 184, .1) !important;
}

table thead {
    background: rgba(2, 9, 13, .25);
}

table tbody tr {
    border-color: rgba(174, 223, 226, .07) !important;
}

@media (max-width: 1023px) {
    .dashboard-sidebar {
        box-shadow: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .aurora-1, .aurora-2, .aurora-3,
    .text-gradient-animated,
    .pulse-dot::after,
    .btn-shine:hover::after,
    .skeleton::after,
    .reveal-word {
        animation: none !important;
    }

    .reveal-word { opacity: 1; transform: none; }

    .fade-up, .page-in, .modal-in, .backdrop-in, .tab-in {
        animation: none !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .card-hover:hover, .btn-shine:hover, .btn-ghost:hover,
    .attack-card:hover, .attack-stat:hover { transform: none; }

    .attack-card__bar span { transition: none; }

    .cs-toggle, .cs-toggle__knob, .cs-tab::after { transition: none !important; }
}
