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

:root {
    --bg: #06100c;
    --bg-2: #0b1712;
    --surface: #111b16;
    --surface-2: #17241d;
    --text: #eef5f0;
    --text-muted: #9cad9f;
    --line: rgba(214, 231, 220, 0.11);
    --accent: #5f8f73;
    --accent-ink: #08100c;
    --alert: #b8cebe;
    --radius: 0;
    --sidebar-width: 248px;
    --layout-max: 1620px;
    --layout-gutter: clamp(18px, 2.1vw, 36px);
    --section-head-height: 28px;
    --section-head-padding-x: 10px;
    --section-head-border: 1px solid rgba(95, 143, 115, 0.42);
    --section-head-bg: rgba(95, 143, 115, 0.12);
    --focus-ring: 0 0 0 2px rgba(95, 143, 115, 0.48), 0 0 0 5px rgba(12, 24, 18, 0.56);
    --scrollbar-track: rgba(10, 18, 14, 0.94);
    --scrollbar-thumb: rgba(94, 133, 110, 0.72);
    --scrollbar-thumb-hover: rgba(121, 163, 138, 0.84);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    font-size: clamp(16px, calc(15.4px + 0.18vw), 19px);
    background: #06100c;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
    scrollbar-width: thin;
}

* {
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
    scrollbar-width: thin;
}

/* WebKit scrollbar theme */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--scrollbar-thumb), rgba(73, 108, 88, 0.88));
    border: 1px solid rgba(195, 221, 204, 0.12);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--scrollbar-thumb-hover), rgba(96, 136, 112, 0.92));
}

body {
    color: var(--text);
    min-height: 100vh;
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 82% -10%, rgba(88, 124, 100, 0.16), transparent 36%),
        radial-gradient(circle at 12% 24%, rgba(161, 191, 170, 0.05), transparent 34%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    letter-spacing: 0.01em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.22;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0) 4px
    );
    mix-blend-mode: soft-light;
    opacity: 0.2;
    animation: su-scanline 14s linear infinite;
}

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

/* Keep link rendering consistent across all sections (no browser-default underlines). */
.server-live-name-link,
.latest-vote-player-link,
.global-top-name-link,
.player-meta-link,
.tile-server-btn,
.global-top-more {
    text-decoration: none;
}

.player-forum-export {
    display: grid;
    gap: 18px;
}

.player-forum-export-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.player-forum-export-head strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.player-forum-export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.player-forum-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(160, 189, 244, 0.16);
    background:
        linear-gradient(180deg, rgba(11, 17, 31, 0.96), rgba(8, 12, 22, 0.96)),
        radial-gradient(circle at top right, rgba(120, 154, 134, 0.12), transparent 35%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.player-forum-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.player-forum-card-head strong {
    color: var(--text);
    font-size: 0.98rem;
    letter-spacing: 0.06em;
}

.player-forum-preview {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(179, 147, 194, 0.22);
    background: rgba(4, 7, 14, 0.92);
}

.player-forum-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.player-forum-code-list {
    display: grid;
    gap: 10px;
}

.player-forum-code-block {
    display: grid;
    gap: 6px;
}

.player-forum-code-block span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.player-forum-code-block textarea {
    width: 100%;
    min-height: 72px;
    resize: vertical;
    border: 1px solid rgba(160, 189, 244, 0.18);
    background: rgba(7, 10, 18, 0.96);
    color: #d9e6ff;
    padding: 10px 12px;
    font: 0.78rem/1.45 'Consolas', 'Monaco', monospace;
}

@media (max-width: 860px) {
    .player-forum-export-head {
        flex-direction: column;
    }
}

:where(a, button, input, select, textarea, [role="button"]) {
    transition: border-color 140ms ease, background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

:where(a, button, input, select, textarea, [role="button"]):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

:where(a, button, [role="button"]):active {
    transform: translateY(1px);
}

::selection {
    background: rgba(95, 143, 115, 0.28);
    color: #ffffff;
}

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

.app-shell {
    position: relative;
    min-height: 100vh;
}

.app-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--sidebar-width);
    background:
        radial-gradient(circle at 50% 100%, rgba(95, 143, 115, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(95, 143, 115, 0.06) 82%, rgba(95, 143, 115, 0.14) 100%),
        linear-gradient(180deg, rgba(13, 17, 24, 0.98), rgba(9, 12, 18, 0.98)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 6px,
            rgba(0, 0, 0, 0) 6px 12px
        );
    border-right: 1px solid var(--line);
    pointer-events: none;
    z-index: 0;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar-width);
    padding: 18px 16px;
    height: 100dvh;
    background:
        linear-gradient(180deg, rgba(13, 17, 24, 0.98), rgba(9, 12, 18, 0.98)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 6px,
            rgba(0, 0, 0, 0) 6px 12px
        );
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
    z-index: 120;
    clip-path: none;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 6px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo {
    display: block;
    width: min(100%, 230px);
    height: auto;
    max-height: min(16vh, 116px);
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(95, 143, 115, 0.18));
}

.brand-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-copy {
    width: 100%;
}

@media (max-height: 980px) {
    .sidebar {
        gap: 16px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .brand {
        gap: 8px;
        padding-bottom: 10px;
    }

    .brand-logo {
        max-height: min(13vh, 92px);
    }

    .side-nav {
        gap: 5px;
    }

    .sidebar-player-search-input {
        height: 38px;
    }

    .sidebar-foot {
        padding-top: 10px;
    }
}

@media (max-height: 860px) {
    .brand-logo {
        max-height: min(10vh, 72px);
    }

    .sidebar-player-search {
        gap: 5px;
    }

    .sidebar-player-search-result {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

.side-nav {
    display: grid;
    gap: 7px;
}

.sidebar-player-search {
    display: grid;
    gap: 7px;
}

.sidebar-player-search-label {
    color: #d7deea;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sidebar-player-search-box {
    display: grid;
    gap: 8px;
}

.sidebar-player-search-input-wrap {
    position: relative;
}

.sidebar-player-search-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(95, 143, 115, 0.9);
    font: 700 0.9rem 'Teko', sans-serif;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.sidebar-player-search-input {
    width: 100%;
    height: 42px;
    padding: 0 54px 0 30px;
    border: 1px solid rgba(95, 143, 115, 0.24);
    background: linear-gradient(180deg, rgba(17, 22, 33, 0.96), rgba(10, 14, 22, 0.98));
    color: #f3f6fb;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.sidebar-player-search-input::placeholder {
    color: #7f8aa1;
}

.sidebar-player-search-input:hover,
.sidebar-player-search-input:focus {
    border-color: rgba(95, 143, 115, 0.54);
    background: linear-gradient(180deg, rgba(20, 27, 40, 0.98), rgba(12, 17, 27, 1));
}

.sidebar-player-search-clear {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    color: #aab5ca;
    font: 700 0.56rem 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: none;
}

.sidebar-player-search-clear.is-visible {
    display: inline-flex;
}

.sidebar-player-search-results {
    border: 1px solid rgba(95, 143, 115, 0.2);
    background: linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(10, 14, 22, 0.98));
}

.sidebar-player-search-results[hidden] {
    display: none !important;
}

.sidebar-player-search-state {
    padding: 10px 11px;
    color: #8e9bb3;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sidebar-player-search-list {
    display: grid;
}

.sidebar-player-search-result {
    display: grid;
    gap: 3px;
    padding: 10px 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-player-search-result:first-child {
    border-top: 0;
}

.sidebar-player-search-result:hover,
.sidebar-player-search-result.is-active {
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.16), rgba(95, 143, 115, 0.03));
}

.sidebar-player-search-name {
    color: #f5f7fb;
    font: 700 0.88rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1;
}

.sidebar-player-search-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #9aa6bd;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sidebar-player-search-server {
    color: #c7d9ce;
}

.sidebar-player-search-kills {
    color: #b9c8e6;
}

.side-subnav {
    border: 0;
    margin: 0;
    padding: 0;
}

.side-subnav > summary {
    list-style: none;
}

.side-subnav > summary::-webkit-details-marker {
    display: none;
}

.side-link {
    position: relative;
    padding: 10px 12px;
    color: #c2cbdb;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.side-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
}

.side-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
}

.side-link.is-active {
    color: #ffffff;
    border-color: rgba(95, 143, 115, 0.5);
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.2), rgba(95, 143, 115, 0.03));
}

.side-link.is-active::before {
    background: var(--accent);
}

.side-link-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.side-subnav-caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    transition: transform 140ms ease;
}

.side-subnav[open] .side-subnav-caret {
    transform: rotate(225deg);
}

.side-subnav-list {
    margin-top: 5px;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 8px;
    display: grid;
    gap: 5px;
}

.side-sublink {
    display: block;
    padding: 7px 9px;
    color: #aebad2;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
}

.side-sublink:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.03);
}

.side-sublink.is-active {
    color: #ffffff;
    border-color: rgba(95, 143, 115, 0.42);
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.18), rgba(95, 143, 115, 0.02));
}

.sidebar-foot {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.sidebar-foot a {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.sidebar-network-btn {
    margin-top: 8px;
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(128, 147, 179, 0.3);
    background: linear-gradient(180deg, rgba(15, 23, 38, 0.84), rgba(10, 15, 26, 0.92));
    color: #d7e2f8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.sidebar-network-btn:hover {
    border-color: rgba(160, 186, 235, 0.42);
    background: linear-gradient(180deg, rgba(19, 30, 50, 0.9), rgba(12, 19, 33, 0.94));
}

.sidebar-network-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f2cd5a;
    box-shadow: 0 0 0 4px rgba(242, 205, 90, 0.14);
    flex: 0 0 auto;
}

.sidebar-network-dot.is-online {
    background: #7ae8ab;
    box-shadow: 0 0 0 4px rgba(122, 232, 171, 0.16);
}

.sidebar-network-dot.is-offline {
    background: #f48f8f;
    box-shadow: 0 0 0 4px rgba(244, 143, 143, 0.16);
}

.app-main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar,
.content-area,
.footer-wrap {
    width: min(100%, var(--layout-max));
    margin: 0 auto;
    padding-inline: var(--layout-gutter);
}

.topbar {
    padding-top: 24px;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar h1 {
    margin: 0;
    font: 700 clamp(2rem, 4vw, 2.8rem) 'Teko', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.topbar p {
    margin: 2px 0 0;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 600 0.78rem 'Rajdhani', sans-serif;
    padding: 8px 11px;
    margin-bottom: 10px;
}

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

.content-area {
    flex: 1;
    display: block;
    padding-top: 0;
    padding-bottom: 36px;
}

.hero-main {
    --hero-height-desktop: 332px;
    --hero-pad-y: clamp(16px, 2.1vw, 24px);
    --hero-pad-x: clamp(18px, 2.8vw, 34px);
    position: relative;
    overflow: hidden;
    width: calc(100% + (var(--layout-gutter) * 2));
    margin-left: calc(var(--layout-gutter) * -1);
    margin-right: calc(var(--layout-gutter) * -1);
    border: 1px solid var(--line);
    border-left: none;
    border-right: none;
    height: var(--hero-height-desktop);
    padding: var(--hero-pad-y) var(--hero-pad-x);
    background:
        radial-gradient(circle at 12% 18%, rgba(95, 143, 115, 0.3), transparent 28%),
        radial-gradient(circle at 78% 0%, rgba(116, 178, 255, 0.16), transparent 26%),
        linear-gradient(102deg, rgba(95, 143, 115, 0.24), transparent 40%),
        linear-gradient(165deg, rgba(14, 18, 25, 0.985), rgba(6, 9, 14, 0.98));
    box-shadow: 0 34px 56px rgba(0, 0, 0, 0.55);
}

.hero-main::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(95, 143, 115, 0.14) 45%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 26%);
    opacity: 0.9;
}

.hero-main-video {
    background:
        linear-gradient(165deg, rgba(10, 14, 20, 0.78), rgba(6, 9, 14, 0.86));
}

.hero-main-video .hero-main-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.06) contrast(1.04) brightness(0.72);
    transform: scale(1.1);
    transform-origin: center center;
}

.hero-home .hero-main-media {
    filter: saturate(1.04) contrast(1.04) brightness(0.5);
}

.hero-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding-top: clamp(20px, 2.4vw, 30px);
    padding-bottom: clamp(18px, 1.8vw, 24px);
    padding-right: clamp(150px, 15vw, 220px);
}

.hero-home .kicker {
    margin: 0;
    width: 100%;
    font-size: clamp(0.76rem, 0.64rem + 0.16vw, 0.9rem);
}

.hero-home .kicker,
.hero-home h2,
.hero-home > p,
.hero-home .actions-row {
    top: auto;
}

.hero-home h2 {
    max-width: min(860px, 100%);
    font-size: clamp(1.7rem, 4.1vw, 3.15rem);
    line-height: 0.84;
    margin-top: 0;
}

.hero-home > p {
    margin-top: 0;
    font-size: clamp(0.84rem, 0.24vw + 0.76rem, 0.95rem);
}

.hero-home .actions-row {
    margin-top: 2px;
    gap: 8px;
}

.hero-home .btn-primary,
.hero-home .btn-ghost {
    min-height: 36px;
    padding: 0 30px 0 12px;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
}

.hero-main-video::before {
    z-index: 1;
}

.hero-main-video::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(180deg, rgba(95, 143, 115, 0.15), rgba(0, 0, 0, 0.06) 26%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.92;
}

.hero-home::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.22) 46%, rgba(0, 0, 0, 0.44) 100%),
        linear-gradient(180deg, rgba(95, 143, 115, 0.1), rgba(0, 0, 0, 0.18) 26%, rgba(0, 0, 0, 0.42) 100%);
    opacity: 0.96;
}

.hero-main-video > :not(.hero-main-media):not(.hero-home-orbit):not(.hero-badge-stack) {
    position: relative;
    z-index: 2;
}

.hero-home-orbit {
    position: absolute;
    top: clamp(-128px, -8.4vw, -54px);
    right: clamp(-286px, -16.5vw, -150px);
    width: clamp(375px, 45vw, 750px);
    height: clamp(375px, 45vw, 750px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.42;
    transform-origin: 50% 50%;
    transform: rotate(-24deg) scaleY(0.9);
    animation: none;
    will-change: transform;
}

.hero-home-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 197, 164, 0.34) 0%, rgba(184, 154, 104, 0.16) 44%, transparent 74%);
    filter: blur(22px);
    opacity: 0.52;
}

.hero-home-orbit::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg,
            rgba(0, 0, 0, 0) 0deg 14deg,
            rgba(226, 184, 214, 0.94) 14deg 82deg,
            rgba(0, 0, 0, 0) 82deg 110deg,
            rgba(196, 124, 178, 0.88) 110deg 168deg,
            rgba(0, 0, 0, 0) 168deg 196deg,
            rgba(214, 150, 196, 0.82) 196deg 258deg,
            rgba(0, 0, 0, 0) 258deg 286deg,
            rgba(95, 143, 115, 0.78) 286deg 346deg,
            rgba(0, 0, 0, 0) 346deg 360deg);
    -webkit-mask: radial-gradient(circle, transparent 0 52%, #000 53% 74%, transparent 75% 100%);
    mask: radial-gradient(circle, transparent 0 52%, #000 53% 74%, transparent 75% 100%);
    opacity: 0.88;
    filter:
        drop-shadow(0 0 18px rgba(226, 184, 214, 0.28))
        drop-shadow(0 0 34px rgba(196, 124, 178, 0.2));
    animation: heroOrbitSpin 18s linear infinite;
    will-change: transform;
}

@keyframes heroOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge-stack {
    position: absolute;
    right: 10px;
    top: clamp(46px, 5.2vw, 64px);
    z-index: 3;
    display: grid;
    gap: 6px;
    justify-items: end;
}

.hero-discreet-badge {
    position: relative;
    z-index: 3;
    min-height: 22px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 14, 22, 0.08);
    color: rgba(245, 249, 255, 0.56);
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.48);
}

.hero-main-video .hero-badge-stack {
    position: absolute;
}

@media (prefers-reduced-motion: reduce) {
    .hero-main-video .hero-main-media {
        filter: saturate(1.02) contrast(1.02) brightness(0.68);
    }
}

/* Keep orbit rotation visible even if system reduced-motion is enabled. */
.hero-home-orbit::after {
    animation: heroOrbitSpin 18s linear infinite !important;
}

.hero-main h2 {
    margin: 0;
    max-width: 900px;
    font: 700 clamp(2rem, 6vw, 4.2rem) 'Teko', sans-serif;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-impact-word {
    color: var(--accent);
    text-shadow: 0 0 14px rgba(95, 143, 115, 0.26);
}

.hero-main > p {
    margin: 12px 0 0;
    max-width: 760px;
    color: #b8c2d6;
    font-size: 1.02rem;
}

.kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font: 700 0.82rem 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kicker::after {
    content: "";
    flex: 1;
    min-width: 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.34), rgba(136, 164, 219, 0.08));
}

.global-top-list-head .kicker::after {
    display: none;
}

.global-top-list-head,
.latest-votes-head,
.network-head,
.server-fun-commands-head,
.server-activity-head {
    position: relative;
}

.global-top-list-head .kicker,
.latest-votes-head .kicker,
.network-head .kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    min-height: var(--section-head-height);
    padding: 0 var(--section-head-padding-x);
    border: var(--section-head-border);
    background: var(--section-head-bg);
}

.actions-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 36px 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.82rem 'Rajdhani', sans-serif;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-icon {
    width: 19px;
    height: 19px;
    min-width: 19px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.24;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-icon-download {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v7M5.5 7.5 8 10l2.5-2.5M3 12.5h10' fill='none' stroke='%23160910' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-icon-discord {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.3 4.5c1.7-1.2 5.7-1.2 7.4 0 .7 1 1.2 2.1 1.4 3.3-.5.7-1.2 1.3-2.1 1.8-.2-.4-.4-.7-.7-1.1-.9.2-1.8.2-2.7.2s-1.8 0-2.7-.2c-.2.4-.5.7-.7 1.1-.9-.4-1.6-1-2.1-1.8.2-1.2.7-2.3 1.4-3.3zM6.3 7.2a.8.8 0 1 0 0-1.6.8.8 0 0 0 0 1.6zm3.4 0a.8.8 0 1 0 0-1.6.8.8 0 0 0 0 1.6z' fill='%23f1f4fb'/%3E%3C/svg%3E");
}

.btn-primary {
    color: var(--accent-ink);
    background: var(--accent);
    border-color: #9bbba5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
    color: #f1f4fb;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-1px);
}

.btn-primary:hover {
    background: #c87ab4;
    border-color: #b4cfbd;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.38);
}

.hero-connect,
.hero-status-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mono {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
    color: #f0f4fd;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.86rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(0.76rem, 0.7rem + 0.12vw, 0.94rem);
}

.status-pill.pending {
    color: #f3d9eb;
    border-color: rgba(95, 143, 115, 0.45);
    background: rgba(95, 143, 115, 0.16);
}

.network-overview {
    margin-top: 14px;
    width: calc(100% + (var(--layout-gutter) * 2));
    margin-left: calc(var(--layout-gutter) * -1);
    margin-right: calc(var(--layout-gutter) * -1);
}

.snapshot-strip {
    margin-top: 0;
    width: calc(100% + (var(--layout-gutter) * 2));
    margin-left: calc(var(--layout-gutter) * -1);
    margin-right: calc(var(--layout-gutter) * -1);
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
}

.snapshot-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(95, 143, 115, 0.14), rgba(16, 22, 31, 0.92) 42%),
        linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(10, 14, 22, 0.96));
    padding: 12px;
    display: grid;
    gap: 2px;
    overflow: hidden;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.snapshot-card:hover {
    border-color: rgba(149, 178, 233, 0.42);
    background:
        linear-gradient(160deg, rgba(89, 146, 232, 0.2), rgba(16, 22, 31, 0.9) 42%),
        linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(10, 14, 22, 0.96));
    transform: translateY(-1px);
}

.snapshot-card:focus-within {
    border-color: rgba(179, 140, 215, 0.52);
    box-shadow: inset 0 0 0 1px rgba(179, 140, 215, 0.18);
}

.snapshot-card.is-loading,
.global-top-row.is-loading,
.server-fun-command-card.is-loading {
    position: relative;
    overflow: hidden;
}

.snapshot-card.is-loading::before,
.global-top-row.is-loading::before,
.server-fun-command-card.is-loading::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    animation: su-loading-shimmer 1.4s ease-in-out infinite;
    pointer-events: none;
}

.snapshot-card + .snapshot-card {
    margin-left: -1px;
}

.snapshot-card::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 6px;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.11;
    pointer-events: none;
}

.snapshot-card--servers::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='8' y='10' width='48' height='18' rx='3' fill='none' stroke='white' stroke-width='2'/%3E%3Crect x='8' y='36' width='48' height='18' rx='3' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='16' cy='19' r='2' fill='white'/%3E%3Ccircle cx='16' cy='45' r='2' fill='white'/%3E%3C/svg%3E");
}

.snapshot-card--accounts::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='24' cy='24' r='10' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M8 52c0-9 7-14 16-14s16 5 16 14' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='46' cy='24' r='7' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M38 52c1-6 5-9 10-9 4 0 7 2 8 5' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.snapshot-card--players::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='20' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='32' cy='32' r='6' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M32 12v8M32 44v8M12 32h8M44 32h8' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.snapshot-card--kills::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 48l14-14 6 6 18-18' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M42 22h10v10' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.snapshot-card--penalties::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M22 16h20l4 10H18l4-10z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 28h36v20H14z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M24 36h16' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.snapshot-card strong {
    font: 700 clamp(1.5rem, 3.8vw, 2.3rem) 'Teko', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
}

.snapshot-card span {
    color: #d3d9e8;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.global-top-list {
    width: calc(100% + (var(--layout-gutter) * 2));
    margin: 10px calc(var(--layout-gutter) * -1) 0;
    padding: 8px var(--layout-gutter) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-votes-section {
    width: calc(100% + (var(--layout-gutter) * 2));
    margin: 10px calc(var(--layout-gutter) * -1) 0;
    padding: 8px var(--layout-gutter) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-discord-section {
    width: calc(100% + (var(--layout-gutter) * 2));
    margin: 12px calc(var(--layout-gutter) * -1) 0;
    padding: 0 var(--layout-gutter);
}

.home-americas-notice {
    width: calc(100% + (var(--layout-gutter) * 2));
    margin: 12px calc(var(--layout-gutter) * -1) 0;
    padding: 0 var(--layout-gutter);
}

.home-americas-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(128, 147, 179, 0.22);
    background:
        radial-gradient(circle at 10% 18%, rgba(89, 146, 232, 0.05), transparent 28%),
        radial-gradient(circle at 84% 84%, rgba(95, 143, 115, 0.035), transparent 30%),
        linear-gradient(160deg, rgba(13, 19, 29, 0.78), rgba(10, 14, 22, 0.88));
    padding: 18px 20px;
    overflow: hidden;
}

.home-americas-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 35%, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.home-americas-flag-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-americas-flag {
    width: 42px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.home-americas-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

.home-americas-copy h3 {
    margin: 0;
    color: #f4f7fb;
    font: 700 clamp(1.35rem, 2.6vw, 1.9rem) 'Teko', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 0.95;
}

.home-americas-update {
    margin: -2px 0 0;
    color: #9fb0cb;
    font: 700 0.74rem 'Rajdhani', sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-americas-copy p:last-child {
    margin: 0;
    color: #d6dcea;
}

.home-americas-button {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-inline: 2px;
    border-radius: 999px;
    border: 1px solid rgba(126, 179, 255, 0.34);
    background: linear-gradient(180deg, rgba(126, 179, 255, 0.14), rgba(126, 179, 255, 0.08));
    color: #eef5ff;
    font: 700 0.84rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
}

.home-americas-suffix {
    color: #8fc1ff;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.home-discord-card {
    position: relative;
    border: 1px solid rgba(128, 147, 179, 0.22);
    background:
        radial-gradient(circle at 88% 14%, rgba(126, 179, 255, 0.08), transparent 40%),
        radial-gradient(circle at 16% 82%, rgba(95, 143, 115, 0.09), transparent 44%),
        linear-gradient(160deg, rgba(88, 122, 176, 0.07), rgba(10, 16, 27, 0.93) 46%),
        linear-gradient(180deg, rgba(12, 19, 32, 0.94), rgba(8, 12, 22, 0.96));
    padding: clamp(18px, 2.4vw, 26px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.home-discord-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.home-discord-card h3 {
    margin: 4px 0 0;
    font: 700 clamp(1.5rem, 2.7vw, 2.3rem) 'Teko', sans-serif;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8eefb;
}

.home-discord-card > p {
    margin: 10px 0 0;
    max-width: 760px;
    color: #a9b7d0;
    font: 600 0.95rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.home-discord-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-discord-actions .btn-primary,
.home-discord-actions .btn-ghost {
    min-height: 34px;
    padding-right: 32px;
}

.latest-votes-head {
    padding: 12px 0 8px;
}

.latest-votes-head::before {
    content: none;
}

.latest-votes-tip {
    margin: 8px 0 0;
    color: #c0cbe0;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
}

.latest-votes-tip code {
    color: #f3f6fb;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1px 5px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.66rem;
}

.latest-votes-list {
    display: grid;
    gap: 6px;
}

.latest-vote-row {
    min-height: 56px;
    padding: 6px 8px;
    display: grid;
    grid-template-columns: 76px 78px minmax(0, 1fr) minmax(100px, auto) 94px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(128, 154, 205, 0.24);
    background: linear-gradient(180deg, rgba(17, 26, 44, 0.74), rgba(11, 18, 31, 0.88));
    transition: border-color 140ms ease, background 140ms ease;
}

.latest-vote-row:hover {
    border-color: rgba(149, 176, 229, 0.38);
    background: linear-gradient(180deg, rgba(20, 31, 53, 0.8), rgba(13, 21, 36, 0.9));
}

.latest-vote-shot {
    width: 76px;
    height: 42px;
    border: 1px solid rgba(127, 152, 200, 0.3);
    background-color: #0b0f16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

.latest-vote-main {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.home-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
    min-width: 24px;
    line-height: 1;
    margin-right: 5px;
    vertical-align: middle;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 11, 20, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.country-flag-img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    background: transparent;
    box-shadow: none;
}

.latest-vote-badge {
    min-height: 22px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 700 0.58rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d9e2f5;
    background: rgba(255, 255, 255, 0.04);
}

.latest-vote-badge.up {
    border-color: rgba(127, 232, 150, 0.65);
    background: rgba(127, 232, 150, 0.18);
    color: #e3ffe8;
}

.latest-vote-badge.down {
    border-color: rgba(255, 124, 124, 0.65);
    background: rgba(255, 124, 124, 0.18);
    color: #ffe4e4;
}

.latest-vote-map {
    color: #f3f6fb;
    font: 700 0.86rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.latest-vote-player,
.latest-vote-server,
.latest-vote-time {
    color: #9fb0cc;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.latest-vote-player {
    display: inline-flex;
    align-items: center;
}

.latest-vote-server,
.latest-vote-time {
    justify-self: end;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.latest-vote-player-link {
    color: #dce8ff;
}

.latest-vote-player-link:hover {
    color: #f1f6ff;
    text-decoration: none;
}

.latest-vote-player,
.global-top-server,
.network-status-map,
.server-fun-commands-note {
    color: #bfd0ea;
}

.latest-vote-player-link:focus-visible,
.global-top-name-link:focus-visible,
.server-live-name-link:focus-visible,
.player-meta-link:focus-visible {
    border-radius: 2px;
    box-shadow: var(--focus-ring);
}

.global-top-list-head {
    padding: 12px 0 8px;
}

.global-top-list-head::before {
    content: none;
}

.global-top-list-body {
    display: grid;
    gap: 6px;
}

.global-top-row {
    min-height: 52px;
    padding: 6px 8px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) minmax(90px, auto) 80px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(128, 154, 205, 0.24);
    background: linear-gradient(180deg, rgba(17, 26, 44, 0.74), rgba(11, 18, 31, 0.88));
    transition: border-color 140ms ease, background 140ms ease;
}

.global-top-row:hover {
    border-color: rgba(149, 176, 229, 0.38);
    background: linear-gradient(180deg, rgba(20, 31, 53, 0.8), rgba(13, 21, 36, 0.9));
}

.global-top-row:focus-within {
    border-color: rgba(179, 140, 215, 0.52);
    background: linear-gradient(180deg, rgba(24, 34, 58, 0.84), rgba(14, 22, 39, 0.92));
}

.global-top-row.is-hidden {
    display: none;
}

.global-top-rank {
    color: #a8b4cb;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
}

.global-top-label {
    color: #9eabc2;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.global-top-name {
    color: #f3f6fb;
    font: 700 0.86rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.global-top-name-link {
    display: inline-flex;
    align-items: center;
    color: #f3f6fb;
}

.global-top-name-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.global-top-main {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.global-top-name-row {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.global-top-merged-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    min-height: 18px;
    padding: 0 6px;
    border: 1px solid rgba(110, 183, 255, 0.28);
    background: rgba(48, 96, 162, 0.16);
    color: #dcecff;
    font: 700 0.54rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.global-top-merged-badge .lni {
    font-size: 0.62rem;
}

.global-top-meter {
    display: block;
    height: 4px;
    border: 1px solid rgba(121, 149, 202, 0.25);
    background: rgba(3, 7, 14, 0.66);
}

.global-top-meter i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 214, 154, 0.95), rgba(75, 160, 219, 0.95));
}

.global-top-server {
    position: relative;
    color: #9babc6;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    justify-self: end;
    text-align: right;
}

.global-top-server.is-merged {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}

.global-top-global-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.5' fill='none' stroke='%237bc9ff' stroke-width='1.4'/%3E%3Cpath d='M2.8 8h10.4M8 2.5c1.6 1.5 2.5 3.4 2.5 5.5S9.6 12 8 13.5M8 2.5C6.4 4 5.5 5.9 5.5 8s.9 4 2.5 5.5' fill='none' stroke='%237bc9ff' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.95;
}

.global-top-server-tooltip {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 280px;
    max-width: min(420px, 78vw);
    padding: 9px 10px;
    border: 1px solid rgba(135, 165, 219, 0.3);
    background: rgba(10, 15, 25, 0.98);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    display: grid;
    gap: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    z-index: 20;
}

.global-top-row:hover .global-top-server-tooltip,
.global-top-row:focus-within .global-top-server-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.global-top-server-tooltip-title {
    color: #cfe0ff;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.global-top-server-tooltip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.global-top-server-tooltip-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 0 7px;
    border: 1px solid rgba(132, 154, 199, 0.24);
    background: rgba(18, 28, 44, 0.86);
    color: #e8f0ff;
    font: 700 0.58rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.global-top-kills {
    color: #dce4f4;
    font: 700 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    justify-self: end;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.global-top-actions {
    padding-top: 8px;
}

.global-top-empty {
    min-height: 32px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    color: #bac6dc;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.global-top-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #dce4f4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    cursor: pointer;
    transform: translateY(0);
}

.global-top-more:hover {
    border-color: rgba(95, 143, 115, 0.52);
    background: rgba(95, 143, 115, 0.12);
    color: #fff7fc;
    transform: translateY(-1px);
}

.favmaps-filters {
    margin-top: 10px;
}

.favmaps-fallback-note {
    margin-top: 8px;
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 214, 116, 0.45);
    background: rgba(255, 214, 116, 0.1);
    color: #f2d79b;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.favmaps-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.favmaps-filter-item {
    display: grid;
    gap: 4px;
}

.favmaps-filter-item span {
    color: #a6b3cc;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.favmaps-filter-item select {
    min-width: 160px;
    min-height: 30px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 20, 0.8);
    color: #eaf0fc;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.favmaps-filter-btn {
    min-height: 30px;
    padding: 0 12px;
    align-self: end;
    border: 1px solid rgba(95, 143, 115, 0.5);
    background: rgba(95, 143, 115, 0.12);
    color: #f5deee;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    cursor: pointer;
}

.favmaps-list {
    display: grid;
    gap: 2px;
}

.favmap-row {
    grid-template-columns: 46px 92px minmax(0, 1fr) minmax(72px, auto);
    min-height: 52px;
}

.favmap-shot {
    width: 92px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: #0b0f16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.favmap-shot-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    justify-self: start;
}

.favmap-shot-trigger:focus-visible {
    outline: 1px solid rgba(139, 181, 154, 0.82);
    outline-offset: 3px;
}

.favmap-shot-trigger:hover .favmap-shot,
.favmap-shot-trigger:focus-visible .favmap-shot {
    border-color: rgba(139, 181, 154, 0.52);
    box-shadow: 0 0 0 1px rgba(139, 181, 154, 0.16);
}

.favmap-main {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.favmap-title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.favmap-download-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 18px;
    padding: 0 6px;
    border: 1px solid rgba(139, 181, 154, 0.34);
    background: rgba(139, 181, 154, 0.1);
    color: #f1d2e5;
    font: 700 0.58rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.favmap-download-link .btn-icon {
    width: 11px;
    height: 11px;
    min-width: 11px;
    position: static;
    right: auto;
    top: auto;
    transform: none;
    opacity: 0.82;
}

.favmap-download-link .btn-icon-download {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v7M5.5 7.5 8 10l2.5-2.5M3 12.5h10' fill='none' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.favmap-download-link:hover {
    color: #f5deee;
    text-decoration: none;
    border-color: rgba(139, 181, 154, 0.58);
    background: rgba(139, 181, 154, 0.16);
}

.favmap-name {
    color: #f3f6fb;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.favmap-bars {
    height: 8px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.favmap-bar-like {
    background: rgba(127, 232, 150, 0.48);
}

.favmap-bar-dislike {
    background: rgba(255, 124, 124, 0.4);
}

.favmap-meta {
    color: #d7e0f2;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.favmap-stats {
    min-width: 72px;
    display: grid;
    gap: 4px;
    justify-items: end;
    align-content: center;
}

.favmap-meta-approval {
    color: #eff4ff;
}

.favmap-meta-score {
    color: #b9c8df;
}

.bans-filters {
    margin-top: 10px;
}

.bans-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
}

.bans-filter-item {
    display: grid;
    gap: 4px;
}

.bans-filter-item span {
    color: #a6b3cc;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bans-filter-item select {
    min-width: 170px;
    min-height: 30px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 20, 0.8);
    color: #eaf0fc;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.bans-toggle {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #dce4f4;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bans-filter-btn {
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(95, 143, 115, 0.5);
    background: rgba(95, 143, 115, 0.12);
    color: #f5deee;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    cursor: pointer;
}

.bans-table-wrap {
    overflow-x: auto;
}

.bans-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.bans-table th,
.bans-table td {
    padding: 8px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.bans-table th {
    color: #a8b4cb;
    font: 700 0.64rem 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.bans-table td {
    color: #dce4f4;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    vertical-align: middle;
}

.bans-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}

.bans-table tbody tr:hover {
    background: rgba(95, 143, 115, 0.08);
}

.bans-player {
    color: #f3f6fb;
}

.bans-player-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
    transition: color 140ms ease;
}

.bans-player-link:hover {
    color: #ffffff;
}

.bans-server-pill {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(95, 143, 115, 0.42);
    background: rgba(95, 143, 115, 0.12);
    color: #d1e2d7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    white-space: nowrap;
}

.bans-type {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    white-space: nowrap;
}

.bans-type.ban {
    border-color: rgba(255, 124, 124, 0.72);
    background: rgba(255, 124, 124, 0.18);
    color: #ffe3e3;
}

.bans-type.temp {
    border-color: rgba(255, 191, 120, 0.68);
    background: rgba(255, 191, 120, 0.16);
    color: #ffe9cd;
}

.bans-type.kick {
    border-color: rgba(116, 178, 255, 0.72);
    background: rgba(116, 178, 255, 0.17);
    color: #e0efff;
}

.bans-reason {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.02);
    color: #ced8eb;
    font: 700 0.64rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    white-space: normal;
}

.bans-reason .q3-color-0 { color: #111111; }
.bans-reason .q3-color-1 { color: #ff4b4b; }
.bans-reason .q3-color-2 { color: #59ff7a; }
.bans-reason .q3-color-3 { color: #ffe45c; }
.bans-reason .q3-color-4 { color: #63a9ff; }
.bans-reason .q3-color-5 { color: #7be7ff; }
.bans-reason .q3-color-6 { color: #ff6de1; }
.bans-reason .q3-color-7 { color: #f0f4ff; }
.bans-reason .q3-color-8 { color: #ff934d; }
.bans-reason .q3-color-9 { color: #a98aff; }

.bans-reason.vpn {
    border-color: rgba(146, 178, 160, 0.62);
    background: rgba(146, 178, 160, 0.15);
}

.bans-reason.ping {
    border-color: rgba(121, 203, 255, 0.62);
    background: rgba(121, 203, 255, 0.14);
}

.bans-reason.staff {
    border-color: rgba(169, 182, 205, 0.45);
    background: rgba(255, 255, 255, 0.02);
}

.bans-source {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #d9e4f8;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bans-source.auto {
    border-color: rgba(115, 193, 255, 0.62);
    background: rgba(115, 193, 255, 0.16);
}

.bans-source.staff {
    border-color: rgba(152, 190, 166, 0.62);
    background: rgba(152, 190, 166, 0.16);
}

/* Global adaptive sizing for badge/pill/tag elements across pages */
.status-pill,
.tile-badge,
.favmaps-filter-item span,
.favmaps-filter-item select,
.favmaps-filter-btn,
.favmap-name,
.favmap-meta,
.bans-server-pill,
.bans-type,
.bans-reason,
.bans-source,
.rules-hero-tag,
.rules-card-id,
.download-meta-pill,
.favmaps-fallback-note,
.bans-toggle {
    font-size: clamp(0.72rem, 0.66rem + 0.15vw, 0.98rem);
}

.bans-pagination {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bans-snapshot-strip .snapshot-card::after {
    opacity: 0.14;
}

.bans-snapshot-strip .snapshot-card--servers::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 14h40v12H12zM12 38h40v12H12z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M18 20h8M18 44h8' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.bans-snapshot-strip .snapshot-card--accounts::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='22' r='10' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 52c2-10 10-16 18-16s16 6 18 16' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.bans-snapshot-strip .snapshot-card--players::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 10l18 10v12c0 11-7 18-18 22-11-4-18-11-18-22V20z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M32 22v16M24 30h16' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.bans-snapshot-strip .snapshot-card--kills::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M16 48l32-32M20 20l24 24' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='16' cy='48' r='4' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='48' cy='16' r='4' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.bans-snapshot-strip .snapshot-card--penalties::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='14' y='16' width='36' height='32' rx='3' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M24 16v-4a8 8 0 0 1 16 0v4' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M24 32h16' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.bans-page-info {
    color: #a7b5ce;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bans-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: #dce4f4;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rules-hero-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rules-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 1.9em;
    padding: 0 0.75em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #dce4f4;
    font: 700 clamp(0.74rem, 0.68rem + 0.14vw, 0.98rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rules-tag-icon {
    width: 0.92em;
    height: 0.92em;
    min-width: 0.92em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rules-tag-icon-respect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.2' fill='none' stroke='%23f3f6fb' stroke-width='1.6'/%3E%3C/svg%3E");
}

.rules-tag-icon-balance {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M4 6h8' stroke='%23f3f6fb' stroke-width='1.6'/%3E%3C/svg%3E");
}

.rules-tag-icon-objective {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.2' fill='none' stroke='%23f3f6fb' stroke-width='1.6'/%3E%3Ccircle cx='8' cy='8' r='1.2' fill='%23f3f6fb'/%3E%3C/svg%3E");
}

.rules-snapshot {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 900px) {
    .rules-snapshot {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1100px) {
    .rules-snapshot {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

.rules-snapshot .snapshot-card {
    min-height: 124px;
}

.rules-snapshot .snapshot-card .snapshot-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rules-snapshot .snapshot-card::after {
    display: none;
}

.rules-principle-mark {
    position: absolute;
    right: 10px;
    bottom: 9px;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.22;
    pointer-events: none;
}

.rules-principle-mark-respect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 9l17 8v12c0 12-7 20-17 25-10-5-17-13-17-25V17z' fill='none' stroke='white' stroke-width='2.4'/%3E%3Cpath d='M24 31l6 6 10-11' fill='none' stroke='white' stroke-width='2.4'/%3E%3C/svg%3E");
}

.rules-principle-mark-balance {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 12v36M16 22h32' fill='none' stroke='white' stroke-width='2.4'/%3E%3Cpath d='M14 22l6 10 6-10M44 22l6 10 6-10' fill='none' stroke='white' stroke-width='2.4'/%3E%3C/svg%3E");
}

.rules-principle-mark-objective {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='20' fill='none' stroke='white' stroke-width='2.4'/%3E%3Ccircle cx='32' cy='32' r='10' fill='none' stroke='white' stroke-width='2.4'/%3E%3Ccircle cx='32' cy='32' r='2.8' fill='white'/%3E%3C/svg%3E");
}

.rules-list {
    margin-top: 12px;
}

.rules-grid {
    display: grid;
    gap: 10px;
}

@media (min-width: 900px) {
    .rules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rules-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(140deg, rgba(95, 143, 115, 0.12), rgba(255, 255, 255, 0.02) 35%),
        linear-gradient(180deg, rgba(14, 19, 27, 0.95), rgba(10, 14, 21, 0.95));
    min-height: 82px;
    padding: 10px 12px;
    display: grid;
    gap: 5px;
}

.rules-card-head {
    display: flex;
    align-items: center;
    gap: 7px;
}

.rules-glyph {
    width: 14px;
    height: 14px;
    min-width: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.92;
}

.rules-glyph-shield {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2l5 2.5V8c0 3-1.8 4.9-5 6-3.2-1.1-5-3-5-6V4.5L8 2z' fill='none' stroke='%23f3f6fb' stroke-width='1.4'/%3E%3C/svg%3E");
}
.rules-glyph-balance {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 6h10' stroke='%23f3f6fb' stroke-width='1.4'/%3E%3C/svg%3E");
}
.rules-glyph-gavel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 12l4-4M6 6l3 3M9 3l4 4' stroke='%23f3f6fb' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
}
.rules-glyph-users {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='6' cy='6' r='2.2' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Ccircle cx='11' cy='7' r='1.8' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M2.7 13c.6-1.8 1.9-2.8 3.3-2.8s2.6 1 3.1 2.8' fill='none' stroke='%23f3f6fb' stroke-width='1.2'/%3E%3C/svg%3E");
}
.rules-glyph-id {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='2.3' y='3.2' width='11.4' height='9.6' rx='1.5' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Ccircle cx='5.3' cy='7.3' r='1.1' fill='none' stroke='%23f3f6fb' stroke-width='1.1'/%3E%3Cpath d='M7.8 7h3.5M7.8 9h3.5' stroke='%23f3f6fb' stroke-width='1.1'/%3E%3C/svg%3E");
}
.rules-glyph-megaphone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h3l5-3v6l-5-3h-3z' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}
.rules-glyph-chat {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 3.5h11v7h-7L4 13v-2.5H2.5z' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}
.rules-glyph-target {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.2' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}
.rules-glyph-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 2v12M5 3h7L10.7 5 12 7H5z' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}
.rules-glyph-bug {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2.6' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M8 5V3M5.4 6.1 4 4.7M10.6 6.1 12 4.7M5.4 9.9 4 11.3M10.6 9.9 12 11.3M3.2 8h2M10.8 8h2' stroke='%23f3f6fb' stroke-width='1.2'/%3E%3C/svg%3E");
}
.rules-glyph-mute {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h3l3-2v4l-3-2h-3z' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M10.4 5.6 13 10.4M13 5.6l-2.6 4.8' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}
.rules-glyph-freeze {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v12M3 5l10 6M13 5 3 11' stroke='%23f3f6fb' stroke-width='1.2' fill='none'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='none' stroke='%23f3f6fb' stroke-width='1.2'/%3E%3C/svg%3E");
}

.rules-card-id {
    display: inline-flex;
    align-items: center;
    min-height: 1.85em;
    width: fit-content;
    padding: 0 0.66em;
    border: 1px solid rgba(95, 143, 115, 0.46);
    background: rgba(95, 143, 115, 0.13);
    color: #d8e7dd;
    font: 700 clamp(0.72rem, 0.66rem + 0.14vw, 0.95rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rules-card h3 {
    margin: 0;
    color: #f3f6fb;
    font: 700 clamp(1rem, 0.95rem + 0.14vw, 1.24rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.rules-card p {
    margin: 0;
    color: #a8b7d0;
    font: 700 clamp(0.82rem, 0.76rem + 0.12vw, 1.02rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.rules-enforcement {
    margin-top: 12px;
}

.rules-steps {
    display: grid;
    gap: 8px;
}

@media (min-width: 900px) {
    .rules-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.rules-step {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.02);
    min-height: 86px;
    padding: 10px 12px;
    display: grid;
    gap: 4px;
    position: relative;
}

.rules-step-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.85;
}

.rules-step-icon-warning {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2l6 11H2L8 2z' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M8 6.2v3.6M8 11.6h.01' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}

.rules-step-icon-temp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.2' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M8 5.2v3.1l2.1 1.7' stroke='%23f3f6fb' stroke-width='1.3' fill='none'/%3E%3C/svg%3E");
}

.rules-step-icon-ban {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.3' fill='none' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3Cpath d='M4.6 11.4 11.4 4.6' stroke='%23f3f6fb' stroke-width='1.3'/%3E%3C/svg%3E");
}

.rules-principle-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 6px;
}

.rules-principle-icon-respect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2l5 2.5V8c0 3-1.8 4.9-5 6-3.2-1.1-5-3-5-6V4.5L8 2z' fill='none' stroke='%23f3f6fb' stroke-width='1.4'/%3E%3C/svg%3E");
}

.rules-principle-icon-balance {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 6h10' stroke='%23f3f6fb' stroke-width='1.4'/%3E%3C/svg%3E");
}

.rules-principle-icon-objective {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5.2' fill='none' stroke='%23f3f6fb' stroke-width='1.4'/%3E%3Ccircle cx='8' cy='8' r='1.2' fill='%23f3f6fb'/%3E%3C/svg%3E");
}

.rules-step strong {
    color: #f1b8da;
    font: 700 clamp(0.74rem, 0.68rem + 0.13vw, 0.96rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.rules-step span {
    color: #f3f6fb;
    font: 700 clamp(0.94rem, 0.88rem + 0.16vw, 1.2rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rules-step p {
    margin: 0;
    color: #a9b7ce;
    font: 700 clamp(0.8rem, 0.74rem + 0.12vw, 1rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.download-hero {
    background:
        radial-gradient(circle at 8% 20%, rgba(95, 143, 115, 0.38), transparent 34%),
        radial-gradient(circle at 78% 8%, rgba(117, 174, 255, 0.18), transparent 30%),
        linear-gradient(160deg, rgba(20, 26, 37, 0.95), rgba(8, 11, 18, 0.96));
}

.download-hero::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(95, 143, 115, 0.08) 50%, rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22));
}

.download-meta-strip {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.download-meta-pill {
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #dbe4f7;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.download-options-grid {
    gap: 10px;
}

@media (min-width: 900px) {
    .download-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.download-option-card {
    min-height: 150px;
    padding-top: 14px;
    background:
        linear-gradient(155deg, rgba(95, 143, 115, 0.16), rgba(255, 255, 255, 0.02) 36%),
        linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(10, 14, 22, 0.96));
}

.download-option-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.85;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.download-option-icon-full {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 6h12v8H4z' fill='none' stroke='%23f3f6fb' stroke-width='1.8'/%3E%3Cpath d='M7 10h6' stroke='%23f3f6fb' stroke-width='1.8'/%3E%3C/svg%3E");
}

.download-option-icon-slim {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 2v16M4 6h12M4 14h12' fill='none' stroke='%23f3f6fb' stroke-width='1.8'/%3E%3C/svg%3E");
}

.download-option-card .tile-server-btn {
    margin-top: 4px;
}

.download-quickstart-grid {
    gap: 10px;
}

.download-step-card {
    min-height: 110px;
    background: linear-gradient(180deg, rgba(16, 22, 31, 0.92), rgba(10, 14, 22, 0.95));
}

.download-step-card strong {
    color: #f2c4df;
}

.download-step-watermark {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.14;
    pointer-events: none;
}

.download-step-watermark-install {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v10M8 10l4 4 4-4M5 18h14' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.download-step-watermark-server {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='6' rx='1.5' fill='none' stroke='white' stroke-width='2'/%3E%3Crect x='4' y='13' width='16' height='6' rx='1.5' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='8' cy='8' r='1' fill='white'/%3E%3Ccircle cx='8' cy='16' r='1' fill='white'/%3E%3C/svg%3E");
}

.download-step-watermark-play {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='none' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.network-head {
    padding: 14px var(--layout-gutter) 10px;
}

.network-head::before {
    content: "";
    position: absolute;
    left: var(--layout-gutter);
    right: var(--layout-gutter);
    top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.network-grid {
    margin-top: 0;
    padding-inline: var(--layout-gutter);
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 720px) {
    .snapshot-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .snapshot-strip {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.network-tile {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(170deg, rgba(22, 28, 38, 0.95), rgba(12, 16, 24, 0.95));
    padding: 10px;
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.network-tile.is-online {
    border-color: rgba(95, 143, 115, 0.48);
}

.network-tile.is-offline {
    border-color: rgba(255, 255, 255, 0.14);
    opacity: 1;
    background: linear-gradient(170deg, rgba(10, 12, 16, 0.98), rgba(5, 6, 10, 0.98));
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline) .tile-levelshot {
    filter: grayscale(0.42) brightness(0.68) saturate(0.78);
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline) {
    background: linear-gradient(170deg, rgba(12, 16, 24, 0.97), rgba(7, 10, 16, 0.97));
    border-color: rgba(152, 164, 188, 0.26);
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline):hover,
.network-tile.is-empty:not(.is-awaiting):not(.is-offline):focus-within {
    background: linear-gradient(170deg, rgba(22, 28, 38, 0.95), rgba(12, 16, 24, 0.95));
    border-color: rgba(95, 143, 115, 0.4);
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline):hover .tile-levelshot,
.network-tile.is-empty:not(.is-awaiting):not(.is-offline):focus-within .tile-levelshot {
    filter: grayscale(0) brightness(1) saturate(1);
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline) .tile-levelshot::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.8));
}

.network-tile.is-empty:not(.is-awaiting):not(.is-offline):hover .tile-levelshot::after,
.network-tile.is-empty:not(.is-awaiting):not(.is-offline):focus-within .tile-levelshot::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.64));
}

.network-tile.is-offline .tile-levelshot {
    filter: grayscale(1) brightness(0.45) saturate(0.35);
}

.network-tile.is-offline .tile-levelshot::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92));
}

.tile-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.tile-top strong {
    font: 700 1.1rem 'Teko', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tile-levelshot {
    width: 100%;
    height: 108px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: #0b0f16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: filter 0.2s ease;
}

.tile-progress-bg {
    position: absolute;
    inset: -1px auto -1px -1px;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.34));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    pointer-events: none;
    transform-origin: left center;
    animation: tile-progress-pulse 2.8s ease-in-out infinite;
}

@keyframes tile-progress-pulse {
    0%,
    100% {
        opacity: 0.88;
        filter: brightness(1);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.22),
            0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        opacity: 1;
        filter: brightness(1.08);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.28),
            0 0 14px rgba(255, 255, 255, 0.12);
    }
}

.tile-progress-percent {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 3;
    color: rgba(243, 246, 251, 0.76);
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.82);
}

.tile-levelshot::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.62));
}

.tile-map-watermark {
    position: absolute;
    right: 8px;
    bottom: 7px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(243, 246, 251, 0.9);
    font: 700 0.82rem 'Teko', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.tile-map-watermark-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    min-width: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.92;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1l6 7-6 7L2 8 8 1z' fill='none' stroke='%23b66aa2' stroke-width='1.6'/%3E%3Ccircle cx='8' cy='8' r='1.2' fill='%23b66aa2'/%3E%3C/svg%3E");
}

.tile-map-watermark-label {
    display: inline-block;
}

.tile-badges {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.tile-badge {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.68rem, 0.62rem + 0.16vw, 0.96rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 0;
    padding: 0.28em 0.72em;
    line-height: 1.25;
    color: #ecf1ff;
    background: transparent;
    white-space: nowrap;
}

.tile-badge + .tile-badge {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.mode-icon {
    display: inline-flex;
    width: 0.95em;
    height: 0.95em;
    min-width: 0.95em;
    margin-right: 0.42em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
}

.mode-icon-ctf {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 2v12' stroke='%23ecf1ff' stroke-width='1.7'/%3E%3Cpath d='M5 3h7l-1.8 2L12 7H5z' fill='none' stroke='%23ecf1ff' stroke-width='1.5'/%3E%3C/svg%3E");
}

.mode-icon-tdm {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v12M2 8h12' stroke='%23ecf1ff' stroke-width='1.7'/%3E%3C/svg%3E");
}

.mode-icon-ts {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2l5 6-5 6-5-6 5-6z' fill='none' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3C/svg%3E");
}

.mode-icon-jump {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13V3M8 3l-3 3M8 3l3 3' stroke='%23ecf1ff' stroke-width='1.7' fill='none'/%3E%3C/svg%3E");
}

.mode-icon-live {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4.4' fill='none' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3Ccircle cx='8' cy='8' r='1.2' fill='%23ecf1ff'/%3E%3C/svg%3E");
}

.mode-icon-offline {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4.4' fill='none' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3Cpath d='M4.5 11.5l7-7' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3C/svg%3E");
}

.mode-icon:not([class*='mode-icon-']) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4.4' fill='none' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3C/svg%3E");
}

.tile-badge.mode-offline .mode-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4.4' fill='none' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3Cpath d='M4.5 11.5l7-7' stroke='%23ecf1ff' stroke-width='1.6'/%3E%3C/svg%3E");
}

.tile-badge.mode-ctf {
    border-color: rgba(89, 163, 255, 0.6);
    background: rgba(89, 163, 255, 0.18);
}

.tile-badge.mode-tdm {
    border-color: rgba(255, 145, 112, 0.65);
    background: rgba(255, 145, 112, 0.18);
}

.tile-badge.mode-live {
    border-color: rgba(206, 210, 218, 0.5);
}

.tile-badge.activity-high {
    border-color: rgba(121, 221, 145, 0.7);
    background: rgba(121, 221, 145, 0.2);
}

.tile-badge.activity-medium {
    border-color: rgba(255, 214, 116, 0.7);
    background: rgba(255, 214, 116, 0.2);
}

.tile-badge.activity-low {
    border-color: rgba(168, 184, 210, 0.6);
}

.tile-badge.activity-awaiting {
    border-color: rgba(255, 186, 114, 0.75);
    background: rgba(255, 186, 114, 0.24);
    color: #ffe9cd;
}

.tile-badge.activity-offline {
    border-color: rgba(255, 120, 120, 0.6);
    background: rgba(255, 120, 120, 0.18);
}

.tile-badge.state-online {
    border-color: rgba(127, 232, 150, 0.75);
    background: rgba(127, 232, 150, 0.2);
}

.tile-badge.state-offline {
    border-color: rgba(255, 124, 124, 0.7);
    background: rgba(255, 124, 124, 0.2);
}

.tile-meta {
    margin-top: 6px;
    display: grid;
    gap: 3px;
    color: #b5c0d6;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.tile-bottom {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.tile-top-player {
    margin: 0;
    color: #c5d0e4;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.tile-top-player span {
    color: #8fa0be;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    margin-right: 4px;
}

.tile-top-player em {
    font-style: normal;
    color: #f1b8da;
}

.tile-score-strip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tile-next-map-line {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    color: #b9c5dc;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: help;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tile-score-box {
    min-width: 30px;
    min-height: 18px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.tile-score-value {
    color: #f3f6fb;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
}

.tile-score-blue {
    border-color: rgba(104, 164, 255, 0.65);
    background: rgba(77, 137, 228, 0.28);
}

.tile-score-red {
    border-color: rgba(255, 124, 124, 0.65);
    background: rgba(214, 90, 90, 0.28);
}

.tile-server-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(95, 143, 115, 0.45);
    background: rgba(95, 143, 115, 0.12);
    color: #f9e4f2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    white-space: nowrap;
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tile-server-btn-flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

.tile-server-btn:hover {
    background: rgba(95, 143, 115, 0.2);
    border-color: rgba(95, 143, 115, 0.62);
    color: #fff2fa;
    transform: translateY(-1px);
}

.tile-server-btn:focus-visible,
.global-top-more:focus-visible,
.favmap-download-link:focus-visible {
    box-shadow: var(--focus-ring);
}

.tile-server-btn.is-disabled,
.tile-server-btn[disabled],
.global-top-more[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.next-map-tooltip {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 210px;
    max-width: calc(100vw - 16px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(10, 14, 20, 0.98);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 120ms ease, transform 120ms ease;
}

.next-map-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.next-map-tooltip-media {
    width: 100%;
    height: 96px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background-color: #0b0f16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.next-map-tooltip-label {
    min-height: 30px;
    padding: 6px 8px;
    color: #dce3f2;
    font: 700 0.75rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-server-focus {
    margin-top: 0;
    min-height: var(--hero-height-desktop);
}

.hero-server-focus::before {
    z-index: 1;
}

.hero-server-focus::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 10, 18, 0.72), rgba(8, 12, 22, 0.46) 45%, rgba(8, 12, 22, 0.74)),
        linear-gradient(180deg, rgba(95, 143, 115, 0.18), rgba(0, 0, 0, 0.18) 26%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-server-focus .hero-main-media {
    filter: saturate(1.08) contrast(1.08) brightness(0.48);
    transform: scale(1.5);
}

.server-hero-header {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding-right: 2px;
}

.server-hero-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.server-hero-header h2 {
    max-width: 860px;
    text-shadow: 0 5px 18px rgba(4, 8, 16, 0.62);
}

.server-hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin-top: 2px;
    margin-left: auto;
}

.server-hero-actions .tile-server-btn {
    min-height: 30px;
    padding-inline: 10px;
}

.tile-server-btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: #f0f5ff;
}

.tile-server-btn-proxy {
    border-color: rgba(104, 164, 255, 0.48);
    background: rgba(77, 137, 228, 0.16);
    color: #e3f0ff;
}

.tile-server-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.09);
}

.tile-server-btn-proxy:hover {
    border-color: rgba(104, 164, 255, 0.72);
    background: rgba(77, 137, 228, 0.24);
    color: #f4f9ff;
}

.server-hero-grid {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.server-hero-row {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 10px;
    align-items: stretch;
}

.server-hero-row.is-single-map {
    grid-template-columns: 1fr;
}

.server-hero-panel {
    border: 1px solid rgba(126, 150, 196, 0.24);
    background:
        linear-gradient(160deg, rgba(74, 121, 205, 0.14), rgba(8, 13, 24, 0.9) 44%),
        linear-gradient(180deg, rgba(12, 18, 32, 0.9), rgba(8, 12, 22, 0.92));
    padding: 8px;
    min-height: 164px;
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.server-hero-panel-title {
    margin: 0 0 7px;
    padding: 0 1px 6px;
    border-bottom: 1px solid rgba(124, 149, 199, 0.18);
    color: #a8b8d7;
    font: 700 clamp(0.8rem, 0.74rem + 0.12vw, 1rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-snapshot-strip .snapshot-card {
    min-height: 94px;
}

.server-snapshot-strip .snapshot-card .snapshot-value {
    font-size: clamp(1.2rem, 2.8vw, 1.9rem);
}

.server-snapshot-strip .snapshot-card--top .snapshot-value {
    font-size: clamp(1rem, 2.1vw, 1.45rem);
}

.server-snapshot-strip .snapshot-card--mode::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='11' y='12' width='42' height='40' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M20 22h24M20 32h24M20 42h16' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.server-snapshot-strip .snapshot-card--humans::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='20' r='8' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 50c2-10 10-16 18-16s16 6 18 16' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.server-snapshot-strip .snapshot-card--bots::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='18' y='18' width='28' height='24' rx='3' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='27' cy='30' r='2' fill='white'/%3E%3Ccircle cx='37' cy='30' r='2' fill='white'/%3E%3Cpath d='M24 38h16M32 10v8M12 28h6M46 28h6' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.server-snapshot-strip .snapshot-card--top::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 14h28v8c0 8-6 14-14 14s-14-6-14-14v-8z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M24 44h16M22 50h20M16 18h-4c0 6 2 10 8 12M48 18h4c0 6-2 10-8 12' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.su-server-insight {
    border: 1px solid rgba(140, 167, 220, 0.22);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(19, 31, 55, 0.62), rgba(12, 20, 37, 0.78));
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    padding: 10px 11px;
}

.su-server-insight span {
    display: block;
    color: #9cb2df;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.su-server-insight strong {
    display: block;
    margin-top: 3px;
    color: #e7eefc;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.su-server-score {
    border: 1px solid rgba(136, 162, 218, 0.22);
    background: rgba(6, 11, 20, 0.44);
    padding: 8px;
    min-height: 0;
    height: 100%;
}

.su-server-score p {
    margin: 0 0 6px;
    color: #a8b8d7;
    font: 700 clamp(0.8rem, 0.74rem + 0.12vw, 1rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.su-server-score-values {
    display: flex;
    gap: 8px;
}

.su-server-score-values span {
    flex: 1 1 0;
    text-align: center;
    font: 800 clamp(1.26rem, 1.1rem + 0.26vw, 1.62rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    padding: 4px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.su-server-score-values .su-score-blue {
    border-color: rgba(117, 177, 255, 0.5);
    background: linear-gradient(180deg, rgba(80, 137, 236, 0.3), rgba(61, 114, 207, 0.16));
}

.su-server-score-values .su-score-red {
    border-color: rgba(255, 139, 139, 0.5);
    background: linear-gradient(180deg, rgba(236, 92, 92, 0.3), rgba(186, 64, 64, 0.16));
}

.server-score-progress {
    margin-top: 5px;
    height: 7px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.server-score-progress-blue {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(90, 151, 255, 0.95), rgba(123, 180, 255, 0.9));
}

.server-score-progress-red {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 112, 112, 0.9), rgba(255, 144, 144, 0.95));
}

.server-score-leader {
    margin: 4px 0 0;
    font: 700 clamp(0.8rem, 0.74rem + 0.12vw, 1rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.server-score-leader.is-blue {
    color: #8bc2ff;
}

.server-score-leader.is-red {
    color: #ffb0b0;
}

.server-score-leader.is-tie {
    color: #d4def1;
}

.su-map-timeline-lite {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.su-map-timeline-lite .su-map-node-lite {
    min-width: 0;
}

.server-rotation-box {
    border: 1px solid rgba(136, 162, 218, 0.22);
    background: rgba(6, 11, 20, 0.44);
    padding: 8px;
    min-height: 0;
    height: 100%;
}

.server-rotation-single {
    padding: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.server-single-map-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(110, 210, 154, 0.6);
    background: rgba(92, 198, 137, 0.16);
    color: #d9ffe8;
    font: 800 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1;
}

.server-single-map-badge-hero {
    margin-right: 6px;
    min-width: max-content;
    min-height: 30px;
    padding-inline: 10px;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
}

.server-rotation-rail {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.su-map-node-lite {
    border: 1px solid rgba(123, 144, 188, 0.28);
    border-radius: 0;
    background-color: rgba(8, 12, 22, 0.9);
    padding: 8px 9px;
    background-image: none !important;
    min-width: 146px;
    position: relative;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease;
}

.su-map-node-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.su-map-node-lite::before {
    display: none;
}

.su-map-node-lite.is-current {
    border-color: rgba(108, 214, 154, 0.78);
    background-color: rgba(28, 40, 66, 0.5);
    box-shadow:
        inset 0 0 0 1px rgba(108, 214, 154, 0.36),
        0 0 0 1px rgba(67, 170, 118, 0.28),
        0 10px 20px rgba(12, 20, 36, 0.4);
    transform: translateY(-1px);
}

.su-map-node-lite:hover {
    border-color: rgba(156, 183, 233, 0.44);
    transform: translateY(-1px);
}

.su-map-node-lite.is-current::before {
    display: none;
}

.su-map-node-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.76), rgba(7, 10, 18, 0.9));
    pointer-events: none;
    z-index: 1;
}

.su-map-node-lite.is-current .su-map-node-mask {
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.62), rgba(10, 16, 28, 0.86));
}

.su-map-node-lite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 18, 0.48);
    pointer-events: none;
    z-index: 1;
}

.su-map-node-lite.is-current::after {
    background: rgba(10, 16, 28, 0.34);
}

.su-map-node-lite small {
    position: relative;
    z-index: 2;
    display: block;
    color: #96a8cc;
    font: 700 clamp(0.72rem, 0.66rem + 0.11vw, 0.92rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.su-map-node-lite strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 4px;
    color: #e4ecfb;
    font: 700 clamp(0.92rem, 0.84rem + 0.16vw, 1.18rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.su-map-node-fill {
    display: none;
}

.server-hero-inline-meta {
    display: none;
}

.server-hero-inline-meta strong {
    color: #f0f5ff;
}

.server-hero-connect {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.server-hero-connect .tile-server-btn {
    justify-self: start;
    width: auto;
}

.focus-overlay[hidden] {
    display: none;
}

.focus-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 8, 14, 0.82);
    backdrop-filter: blur(3px);
    padding: 26px;
}

.focus-panel {
    width: min(1100px, 100%);
    max-height: calc(100vh - 52px);
    overflow: auto;
    margin: 0 auto;
    border: 1px solid rgba(142, 168, 220, 0.34);
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.97), rgba(6, 10, 18, 0.98));
    padding: 14px;
}

.config-panel {
    width: min(940px, 100%);
    border-color: rgba(166, 188, 230, 0.42);
    background: linear-gradient(180deg, rgba(8, 14, 25, 0.98), rgba(5, 9, 17, 0.99));
}

.config-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.config-row-modal {
    border: 1px solid rgba(125, 148, 193, 0.26);
    background: linear-gradient(180deg, rgba(17, 26, 44, 0.72), rgba(11, 18, 31, 0.84));
    padding: 10px 11px;
    min-height: 66px;
    display: grid;
    align-content: center;
    gap: 3px;
}

.config-row-modal span {
    color: #9cb0d8;
    font: 700 clamp(0.74rem, 0.68rem + 0.12vw, 0.94rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.config-row-modal strong {
    color: #ecf3ff;
    font: 700 clamp(1.02rem, 0.95rem + 0.14vw, 1.24rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.02em;
}

.config-row-modal code {
    color: #f0f5ff;
    font: 700 0.9rem 'Space Mono', monospace;
}

.config-actions-modal {
    margin-top: 12px;
    border-top: 1px solid rgba(139, 160, 205, 0.26);
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.config-actions-modal .mono {
    color: #c9d8f8;
    font-size: 0.82rem;
}

.focus-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.focus-head strong {
    color: #e7efff;
    font: 700 clamp(1.02rem, 0.95rem + 0.14vw, 1.24rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.focus-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 10px;
    color: #bfd0ee;
    font: 700 0.75rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.focus-meta strong {
    color: #eff5ff;
}

.focus-score {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.focus-score .su-score-blue,
.focus-score .su-score-red {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font: 800 clamp(1.4rem, 1.25rem + 0.35vw, 2rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
}

.focus-score .su-score-blue {
    color: #dcecff;
    border-color: rgba(117, 177, 255, 0.62);
    background: linear-gradient(180deg, rgba(80, 137, 236, 0.42), rgba(61, 114, 207, 0.22));
    box-shadow: inset 0 0 0 1px rgba(128, 185, 255, 0.22);
}

.focus-score .su-score-red {
    color: #ffe6e6;
    border-color: rgba(255, 139, 139, 0.62);
    background: linear-gradient(180deg, rgba(236, 92, 92, 0.42), rgba(186, 64, 64, 0.22));
    box-shadow: inset 0 0 0 1px rgba(255, 166, 166, 0.2);
}

.focus-overlay[data-focus-overlay] {
    padding: 0;
}

.focus-panel-live {
    width: 100%;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    border: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(8, 13, 23, 0.98), rgba(5, 9, 16, 0.99));
}

.network-status-panel {
    width: min(860px, 100%);
    border-color: rgba(142, 168, 220, 0.38);
    background: linear-gradient(180deg, rgba(9, 15, 26, 0.97), rgba(6, 10, 18, 0.98));
}

.network-status-head {
    margin-bottom: 8px;
}

.hero-status-embedded {
    width: 100%;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(123, 146, 190, 0.24);
    background:
        radial-gradient(circle at 88% 14%, rgba(126, 179, 255, 0.08), transparent 40%),
        radial-gradient(circle at 16% 82%, rgba(95, 143, 115, 0.09), transparent 44%),
        linear-gradient(160deg, rgba(88, 122, 176, 0.07), rgba(10, 16, 27, 0.93) 46%),
        linear-gradient(180deg, rgba(12, 19, 32, 0.94), rgba(8, 12, 22, 0.96));
    box-shadow: none;
}

.hero-status-embedded::before {
    inset: 7px;
}

.hero-status-embedded h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.hero-status-embedded > p {
    max-width: none;
}

.hero-status-embedded .kicker,
.hero-status-embedded h2,
.hero-status-embedded > p {
    position: relative;
    z-index: 2;
}

.hero-status-embedded .hero-status-row {
    position: relative;
    z-index: 2;
    margin-top: 12px;
}

.error-hero {
    min-height: 0;
}

.error-hero h2 {
    max-width: 760px;
}

.error-hero > p {
    max-width: 720px;
}

.error-detail-list {
    width: calc(100% + (var(--layout-gutter) * 2));
    margin: 10px calc(var(--layout-gutter) * -1) 0;
    padding: 8px var(--layout-gutter) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-detail-grid {
    display: grid;
    gap: 8px;
}

.error-detail-card {
    border: 1px solid rgba(128, 154, 205, 0.24);
    background: linear-gradient(180deg, rgba(17, 26, 44, 0.74), rgba(11, 18, 31, 0.88));
    padding: 10px 12px;
}

.error-detail-card strong {
    display: block;
    font: 700 0.9rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f3f6fb;
}

.error-detail-card p {
    margin: 6px 0 0;
    color: #aebbd4;
    font: 600 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.02em;
}

.network-status-summary {
    margin-top: 10px;
}

.network-core-section {
    margin-top: 10px;
    border: 1px solid rgba(123, 146, 190, 0.24);
    background: linear-gradient(180deg, rgba(13, 20, 35, 0.82), rgba(9, 14, 24, 0.9));
    padding: 10px 12px;
}

.network-core-title {
    margin: 0;
    color: #d4e0f7;
    font: 700 0.78rem 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.network-core-subtitle {
    margin: 6px 0 0;
    color: #9fb5dd;
    font: 600 0.76rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.network-core-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.network-core-card {
    border: 1px solid rgba(122, 148, 199, 0.24);
    background: linear-gradient(180deg, rgba(15, 24, 42, 0.78), rgba(10, 16, 28, 0.9));
    padding: 8px;
}

.network-core-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.network-core-head strong {
    color: #edf3ff;
    font: 700 0.76rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.network-core-badge {
    min-height: 19px;
    padding: 0 7px;
    border: 1px solid rgba(140, 167, 217, 0.34);
    background: rgba(23, 34, 56, 0.7);
    color: #cfe0ff;
    font: 700 0.6rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.network-core-badge.pending {
    border-color: rgba(95, 143, 115, 0.45);
    background: rgba(95, 143, 115, 0.16);
    color: #f3d9eb;
}

.network-core-badge.online {
    border-color: rgba(122, 232, 171, 0.42);
    background: rgba(47, 105, 77, 0.28);
    color: #dfffea;
}

.network-core-badge.offline {
    border-color: rgba(244, 143, 143, 0.36);
    background: rgba(120, 52, 52, 0.24);
    color: #ffe4e4;
}

.network-core-card p {
    margin: 6px 0 0;
    color: #9db2d9;
    font: 600 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.network-status-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.network-status-chip {
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(140, 167, 217, 0.34);
    background: rgba(23, 34, 56, 0.7);
    color: #cfe0ff;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.network-status-chip.online {
    border-color: rgba(122, 232, 171, 0.4);
    background: rgba(47, 105, 77, 0.28);
    color: #dfffea;
}

.network-status-chip.offline {
    border-color: rgba(244, 143, 143, 0.38);
    background: rgba(120, 52, 52, 0.24);
    color: #ffe4e4;
}

.network-status-list {
    display: grid;
    gap: 7px;
    max-height: 62vh;
    overflow: auto;
    padding-right: 2px;
}

.network-status-row {
    border: 1px solid rgba(122, 148, 199, 0.24);
    background: linear-gradient(180deg, rgba(15, 24, 42, 0.78), rgba(10, 16, 28, 0.9));
    padding: 8px 9px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.network-status-row.is-loading {
    position: relative;
    overflow: hidden;
}

.network-status-row.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    animation: su-loading-shimmer 1.4s ease-in-out infinite;
    pointer-events: none;
}

.network-status-row.is-online {
    border-color: rgba(122, 232, 171, 0.34);
}

.network-status-row.is-offline {
    border-color: rgba(244, 143, 143, 0.28);
    opacity: 0.9;
}

.network-status-main {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.network-status-main strong {
    color: #edf3ff;
    font: 700 0.84rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.network-status-map {
    color: #a8bfeb;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.network-status-meta {
    display: inline-grid;
    gap: 4px;
    justify-items: end;
}

.network-status-pill {
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(140, 167, 217, 0.34);
    background: rgba(23, 34, 56, 0.7);
    color: #cfe0ff;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.network-status-row.is-online .network-status-pill {
    border-color: rgba(122, 232, 171, 0.42);
    background: rgba(47, 105, 77, 0.28);
    color: #dfffea;
}

.network-status-row.is-offline .network-status-pill {
    border-color: rgba(244, 143, 143, 0.36);
    background: rgba(120, 52, 52, 0.24);
    color: #ffe4e4;
}

.network-status-players {
    color: #e5efff;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.su-server-layout-lite {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 12px;
}

.su-server-layout-live-only {
    grid-template-columns: minmax(0, 1fr);
}

.su-panel-card-lite {
    border: 1px solid rgba(118, 139, 183, 0.2);
    border-radius: 0;
    background:
        linear-gradient(160deg, rgba(74, 121, 205, 0.1), rgba(9, 14, 24, 0.92) 44%),
        rgba(10, 15, 26, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    padding: 16px;
}

.su-config-grid-lite {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
    margin-top: 8px;
}

.su-config-grid-lite span {
    color: #9fb0d0;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.su-config-grid-lite strong {
    color: #e3ecfa;
    font: 700 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    text-align: right;
}

.su-config-actions-lite {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.su-activity-lite {
    margin-top: 12px;
    border-top: 1px solid rgba(143, 164, 208, 0.18);
    padding-top: 10px;
    display: grid;
    gap: 4px;
    color: #b3c2df;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.su-activity-lite strong {
    color: #eff5ff;
}

.server-table-wrap {
    overflow: auto;
    border: 1px solid rgba(123, 146, 190, 0.24);
    border-radius: 0;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.server-table th {
    text-align: left;
    padding: 8px 10px;
    background: rgba(20, 29, 49, 0.95);
    color: #c9d6f1;
    border-bottom: 1px solid rgba(123, 146, 190, 0.24);
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.server-table td {
    padding: 7px 10px;
    border-bottom: 1px solid rgba(123, 146, 190, 0.14);
    color: #e0e8f8;
    font: 600 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.server-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.015);
}

.server-live-toolbar {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.server-live-view-switch {
    display: inline-flex;
    border: 1px solid rgba(127, 151, 196, 0.35);
    background: rgba(16, 24, 39, 0.62);
}

.server-live-view-btn,
.server-live-toggle-btn {
    min-height: 30px;
    padding: 0 11px;
    border: 0;
    border-right: 1px solid rgba(127, 151, 196, 0.25);
    background: transparent;
    color: #c9d8f4;
    font: 700 0.78rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.server-live-view-btn:last-child {
    border-right: 0;
}

.server-live-toggle-btn {
    border: 1px solid rgba(127, 151, 196, 0.35);
}

.server-live-view-btn.is-active,
.server-live-toggle-btn.is-active {
    background: rgba(95, 143, 115, 0.2);
    color: #f4e5f0;
}

.server-live-search {
    min-height: 30px;
    min-width: 220px;
    padding: 0 10px;
    border: 1px solid rgba(127, 151, 196, 0.28);
    background: rgba(10, 16, 27, 0.9);
    color: #e4ecfb;
    font: 700 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.server-live-search:focus {
    outline: none;
    border-color: rgba(95, 143, 115, 0.56);
}

.server-live-roster {
    margin-bottom: 10px;
    display: grid;
    gap: 8px;
}

.server-live-group {
    border: 1px solid rgba(126, 148, 191, 0.24);
    background: rgba(10, 16, 28, 0.76);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.server-live-group-head {
    padding: 7px 9px;
    border-bottom: 1px solid rgba(126, 148, 191, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #dbe6fb;
    font: 700 0.76rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-live-list {
    display: grid;
    gap: 6px;
    padding: 8px;
}

.server-live-player {
    border: 1px solid rgba(126, 148, 191, 0.2);
    background: rgba(17, 26, 43, 0.74);
    padding: 7px 8px;
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) minmax(200px, 1fr) 240px;
    gap: 8px;
    align-items: center;
    position: relative;
    transition: border-color 140ms ease, background 140ms ease;
}

.server-live-player.is-auth {
    border-color: rgba(129, 163, 255, 0.4);
    background: linear-gradient(180deg, rgba(32, 49, 80, 0.86), rgba(20, 31, 52, 0.82));
    box-shadow: inset 0 0 0 1px rgba(160, 186, 255, 0.16), 0 10px 22px rgba(8, 14, 27, 0.22);
}

.server-live-player:hover {
    border-color: rgba(145, 170, 220, 0.38);
    background: rgba(20, 32, 53, 0.8);
}

.server-live-player::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(176, 191, 218, 0.78);
}

.server-live-player.is-blue::before { background: rgba(121, 173, 255, 0.95); }
.server-live-player.is-red::before { background: rgba(255, 143, 143, 0.95); }
.server-live-player.is-spectator::before { background: rgba(188, 199, 222, 0.88); }

.server-live-name {
    color: #eef4ff;
    font: 700 0.9rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
    overflow: visible;
    justify-content: flex-start;
}

.server-live-name-text {
    min-width: 0;
    display: block;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-live-name-link {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #eef4ff;
}

.server-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
    min-width: 24px;
    line-height: 1;
    vertical-align: middle;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 11, 20, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.server-slot-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 18px;
    min-height: 18px;
    padding: 0 5px;
    border: 1px solid rgba(139, 162, 206, 0.42);
    background: rgba(29, 43, 70, 0.58);
    color: #cddbf3;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.server-auth-badge {
    border: 1px solid rgba(126, 163, 235, 0.44);
    background: linear-gradient(180deg, rgba(57, 92, 165, 0.34), rgba(36, 63, 120, 0.24));
    color: #d9eaff;
    min-height: 18px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.server-auth-badge .lni {
    font-size: 0.62rem;
    line-height: 1;
}

.server-auth-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.server-auth-tooltip {
    position: absolute;
    left: 0;
    top: calc(100% + 7px);
    min-width: 220px;
    border: 1px solid rgba(134, 160, 212, 0.35);
    background: rgba(9, 14, 25, 0.97);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
    padding: 8px 9px;
    display: grid;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    z-index: 20;
}

.server-auth-wrap:hover .server-auth-tooltip,
.server-auth-wrap:focus-within .server-auth-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.server-auth-tooltip-title {
    color: #bfcfeb;
    font: 700 0.64rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.server-auth-tooltip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2ebff;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.server-auth-tooltip-link .lni {
    font-size: 0.7rem;
}

.server-live-meta {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    overflow: hidden;
    flex-wrap: nowrap;
}

.server-live-chip {
    display: inline-flex;
    align-items: center;
    padding: 1px 6px;
    border: 1px solid rgba(140, 163, 206, 0.28);
    background: rgba(11, 18, 31, 0.82);
    color: #c8d6f3;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.server-live-chip.ping-good { color: #95f0b1; border-color: rgba(74, 222, 128, 0.35); }
.server-live-chip.ping-ok { color: #fde68a; border-color: rgba(250, 204, 21, 0.35); }
.server-live-chip.ping-warn { color: #fdba74; border-color: rgba(251, 146, 60, 0.35); }
.server-live-chip.ping-bad { color: #fca5a5; border-color: rgba(248, 113, 113, 0.35); }

.server-live-kda {
    color: #dce8ff;
    font: 700 0.78rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: flex-end;
    gap: 10px;
    text-align: right;
    width: 100%;
    min-width: 0;
    font-variant-numeric: tabular-nums;
}

.server-live-k {
    color: #9ad0ff;
    display: inline-block;
    width: 112px;
    text-align: right;
}

.server-live-d {
    color: #ffb6b6;
    display: inline-block;
    width: 112px;
    text-align: right;
}

.server-live-trend-up { color: #88de9f; }
.server-live-trend-down { color: #ff9f9f; }

.server-table-live tr.is-blue td { background: rgba(71, 112, 183, 0.08); }
.server-table-live tr.is-red td { background: rgba(184, 72, 72, 0.08); }
.server-table-live tr.is-spectator td { background: rgba(198, 210, 233, 0.06); }

.server-table-live tr.is-bot td {
    opacity: 0.8;
}

.server-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.server-col-card {
    border: 1px solid rgba(123, 146, 190, 0.24);
    border-radius: 0;
    background:
        linear-gradient(160deg, rgba(74, 121, 205, 0.1), rgba(9, 14, 24, 0.92) 44%),
        rgba(10, 15, 26, 0.92);
    padding: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.server-col-title {
    margin: 0 0 10px;
    color: #c9d6f1;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.3), rgba(136, 164, 219, 0.08));
}

.server-xlr-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.server-xlr-head .server-col-title {
    margin: 0;
}

.server-xlr-source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(130, 165, 223, 0.3);
    background: rgba(29, 43, 70, 0.48);
    color: #cfe0ff;
    padding: 2px 7px;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-xlr-source:empty {
    display: none;
}

.server-xlr-list {
    display: grid;
    gap: 6px;
}

.server-xlr-row {
    border: 1px solid rgba(122, 148, 199, 0.24);
    background: linear-gradient(180deg, rgba(15, 24, 42, 0.78), rgba(10, 16, 28, 0.9));
    padding: 6px 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    transition: border-color 140ms ease, background 140ms ease;
}

.server-xlr-row:hover {
    border-color: rgba(149, 176, 229, 0.38);
    background: linear-gradient(180deg, rgba(20, 31, 53, 0.8), rgba(13, 21, 36, 0.9));
}

.server-xlr-main {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #edf3ff;
}

.server-xlr-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(140, 167, 217, 0.34);
    background: rgba(23, 34, 56, 0.7);
    color: #cfe0ff;
    min-width: 26px;
    min-height: 18px;
    padding: 0 5px;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.server-xlr-main strong,
.server-xlr-main a {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    color: #edf3ff;
}

.server-xlr-stats {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(66px, auto);
    gap: 6px;
    justify-content: end;
    color: #d3e2ff;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

.server-xlr-stats span {
    text-align: right;
}

.server-xlr-pager {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.server-xlr-page-label {
    color: #cddcf8;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-xlr-pager .tile-server-btn.is-disabled {
    opacity: 0.45;
    filter: saturate(0.75);
    cursor: default;
}

.server-fun-commands-section {
    margin-top: 12px;
    border: 1px solid rgba(123, 146, 190, 0.24);
    background:
        linear-gradient(160deg, rgba(95, 143, 115, 0.12), rgba(9, 14, 24, 0.92) 46%),
        rgba(10, 15, 26, 0.92);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
    padding: 12px 14px;
}

.server-fun-commands-head {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.server-fun-commands-head .kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: var(--section-head-height);
    padding: 0 var(--section-head-padding-x);
    border: var(--section-head-border);
    background: var(--section-head-bg);
}

.server-fun-commands-head .kicker::after {
    content: '';
    width: clamp(84px, 12vw, 150px);
    height: 1px;
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.45), rgba(136, 164, 219, 0.08));
}

.server-fun-commands-note {
    color: #b8c4d8;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-fun-commands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.server-fun-command-card {
    min-width: 0;
    border: 1px solid rgba(158, 127, 190, 0.24);
    background: linear-gradient(180deg, rgba(21, 28, 42, 0.84), rgba(11, 16, 26, 0.94));
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.server-fun-command-card:hover {
    border-color: rgba(95, 143, 115, 0.42);
    background: linear-gradient(180deg, rgba(28, 35, 52, 0.88), rgba(14, 20, 31, 0.96));
    transform: translateY(-1px);
}

.server-fun-command-card:focus-within {
    border-color: rgba(179, 140, 215, 0.52);
    box-shadow: inset 0 0 0 1px rgba(179, 140, 215, 0.16);
}

.server-fun-command-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(95, 143, 115, 0.26);
    background: radial-gradient(circle at 50% 30%, rgba(95, 143, 115, 0.22), rgba(16, 21, 33, 0.94));
    font-size: 0.95rem;
    line-height: 1;
}

.server-fun-command-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.server-fun-command-copy strong {
    color: #f3d8eb;
    font: 700 0.88rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
}

.server-fun-command-copy p {
    margin: 0;
    color: #c1ccdd;
    font: 600 0.74rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.server-activity-section {
    margin-top: 12px;
    border: 1px solid rgba(123, 146, 190, 0.24);
    background:
        linear-gradient(160deg, rgba(74, 121, 205, 0.1), rgba(9, 14, 24, 0.92) 44%),
        rgba(10, 15, 26, 0.92);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
    padding: 12px 14px;
}

.server-activity-head {
    margin-bottom: 10px;
}

.server-activity-head .kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: var(--section-head-height);
    padding: 0 var(--section-head-padding-x);
    border: var(--section-head-border);
    background: var(--section-head-bg);
}

.server-activity-head .kicker::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.3), rgba(136, 164, 219, 0.08));
}

.server-activity-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
}

.server-activity-yaxis {
    width: 74px;
    padding-top: 30px;
    padding-bottom: 4px;
    display: grid;
    color: #bcd1f3;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.server-activity-yaxis span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.server-activity-chart-wrap {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.server-activity-chart {
    height: 146px;
    border: 1px solid rgba(123, 146, 190, 0.22);
    background:
        linear-gradient(180deg, rgba(22, 34, 58, 0.72), rgba(10, 16, 30, 0.9)),
        repeating-linear-gradient(
            0deg,
            rgba(170, 197, 242, 0.08),
            rgba(170, 197, 242, 0.08) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 24px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 8px
        );
    padding: 30px 7px 7px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    overflow: visible;
    position: relative;
}

.server-activity-bar {
    flex: 1 1 0;
    min-width: 2px;
    background: linear-gradient(180deg, rgba(159, 210, 255, 0.96), rgba(92, 158, 243, 0.9));
    box-shadow:
        inset 0 0 0 1px rgba(212, 234, 255, 0.22),
        0 0 0 1px rgba(25, 42, 72, 0.12);
    transition: filter 120ms ease, transform 120ms ease;
    position: relative;
    outline: none;
}

.server-activity-bar:hover,
.server-activity-bar:focus-visible {
    filter: brightness(1.15);
    transform: translateY(-1px);
    z-index: 3;
}

.server-activity-bar::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 3px);
    transform: translateX(-50%) translateY(4px);
    border: 5px solid transparent;
    border-top-color: rgba(9, 14, 24, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    pointer-events: none;
}

.server-activity-bar::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    min-width: max-content;
    max-width: 260px;
    padding: 6px 8px;
    border: 1px solid rgba(146, 177, 228, 0.42);
    background: linear-gradient(180deg, rgba(18, 28, 48, 0.98), rgba(9, 14, 24, 0.98));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
    color: #edf4ff;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    pointer-events: none;
    z-index: 8;
}

.server-activity-bar:hover::before,
.server-activity-bar:hover::after,
.server-activity-bar:focus-visible::before,
.server-activity-bar:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.server-activity-bar:first-child::after,
.server-activity-bar:nth-child(2)::after,
.server-activity-bar:nth-child(3)::after {
    left: 0;
    transform: translateX(0) translateY(4px);
}

.server-activity-bar:first-child::before,
.server-activity-bar:nth-child(2)::before,
.server-activity-bar:nth-child(3)::before {
    left: 10px;
    transform: translateX(0) translateY(4px);
}

.server-activity-bar:first-child:hover::after,
.server-activity-bar:first-child:focus-visible::after,
.server-activity-bar:nth-child(2):hover::after,
.server-activity-bar:nth-child(2):focus-visible::after,
.server-activity-bar:nth-child(3):hover::after,
.server-activity-bar:nth-child(3):focus-visible::after {
    transform: translateX(0) translateY(0);
}

.server-activity-bar:first-child:hover::before,
.server-activity-bar:first-child:focus-visible::before,
.server-activity-bar:nth-child(2):hover::before,
.server-activity-bar:nth-child(2):focus-visible::before,
.server-activity-bar:nth-child(3):hover::before,
.server-activity-bar:nth-child(3):focus-visible::before {
    transform: translateX(0) translateY(0);
}

.server-activity-bar:last-child::after,
.server-activity-bar:nth-last-child(2)::after,
.server-activity-bar:nth-last-child(3)::after {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(4px);
}

.server-activity-bar:last-child::before,
.server-activity-bar:nth-last-child(2)::before,
.server-activity-bar:nth-last-child(3)::before {
    left: auto;
    right: 10px;
    transform: translateX(0) translateY(4px);
}

.server-activity-bar:last-child:hover::after,
.server-activity-bar:last-child:focus-visible::after,
.server-activity-bar:nth-last-child(2):hover::after,
.server-activity-bar:nth-last-child(2):focus-visible::after,
.server-activity-bar:nth-last-child(3):hover::after,
.server-activity-bar:nth-last-child(3):focus-visible::after {
    transform: translateX(0) translateY(0);
}

.server-activity-bar:last-child:hover::before,
.server-activity-bar:last-child:focus-visible::before,
.server-activity-bar:nth-last-child(2):hover::before,
.server-activity-bar:nth-last-child(2):focus-visible::before,
.server-activity-bar:nth-last-child(3):hover::before,
.server-activity-bar:nth-last-child(3):focus-visible::before {
    transform: translateX(0) translateY(0);
}

.server-activity-xhint {
    display: flex;
    justify-content: space-between;
    color: #a8bedf;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding-inline: 2px;
}

.server-activity-meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #cfe0ff;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.staff-snapshot-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.staff-card {
    border: 1px solid rgba(123, 146, 190, 0.24);
    background: linear-gradient(180deg, rgba(15, 24, 42, 0.78), rgba(10, 16, 28, 0.9));
    padding: 12px;
}

.staff-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(123, 146, 190, 0.24);
}

.staff-card-head p {
    margin: 0;
    color: #edf3ff;
    font: 700 0.84rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.staff-card-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgba(140, 167, 217, 0.34);
    background: rgba(23, 34, 56, 0.7);
    color: #cfe0ff;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.staff-list {
    display: grid;
    gap: 6px;
}

.staff-row {
    border: 1px solid rgba(122, 148, 199, 0.22);
    background: rgba(11, 18, 31, 0.76);
    padding: 7px 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.staff-main {
    min-width: 0;
}

.staff-main a,
.staff-main strong {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #edf3ff;
    font: 700 0.8rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-meta {
    display: inline-grid;
    grid-auto-flow: row;
    gap: 4px;
    color: #cfe0ff;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.staff-meta span {
    text-align: right;
    white-space: nowrap;
}

.hero-player-profile {
    overflow: hidden;
    height: 212px;
    padding-top: 14px;
    padding-bottom: 12px;
}

.hero-player-profile .hero-main-media {
    filter: brightness(0.42) saturate(1.08);
    transform: scale(1.03);
}

.hero-player-profile.is-lowgroup .hero-main-media {
    filter: grayscale(1) brightness(0.4) saturate(0.15);
}

.hero-player-profile.is-lowgroup::after {
    background:
        linear-gradient(90deg, rgba(24, 26, 31, 0.86), rgba(17, 19, 23, 0.62) 46%, rgba(24, 26, 31, 0.86)),
        linear-gradient(180deg, rgba(153, 160, 176, 0.18), rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-player-profile.is-staff::after {
    background:
        linear-gradient(90deg, rgba(16, 25, 14, 0.82), rgba(11, 20, 14, 0.58) 46%, rgba(16, 25, 14, 0.86)),
        linear-gradient(180deg, rgba(112, 198, 124, 0.24), rgba(0, 0, 0, 0.16) 28%, rgba(0, 0, 0, 0.5) 100%);
}

.player-hero-watermark {
    position: absolute;
    right: 22px;
    top: 14px;
    z-index: 2;
    color: rgba(146, 231, 147, 0.3);
    font: 800 clamp(1.9rem, 3.8vw, 4.1rem) 'Teko', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 0.84;
    display: inline-grid;
    justify-items: end;
    gap: 4px;
}

.player-hero-watermark em {
    font-style: normal;
    color: rgba(177, 242, 178, 0.42);
    font: 700 clamp(0.72rem, 0.66rem + 0.14vw, 0.96rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.12em;
    line-height: 1;
}

.player-hero-watermark.is-management {
    color: rgba(255, 214, 122, 0.42);
    text-shadow: 0 8px 22px rgba(197, 143, 42, 0.26);
}

.player-hero-watermark.is-management em {
    color: rgba(255, 226, 156, 0.62);
}

.player-hero-watermark-regular {
    color: rgba(191, 205, 231, 0.26);
    font: 700 clamp(0.94rem, 1.1vw, 1.18rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.18em;
    line-height: 1;
    top: auto;
    bottom: 14px;
    right: 22px;
    text-shadow: none;
    display: inline-flex;
    align-items: center;
}

.player-profile-head {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    display: grid;
    gap: 4px;
}

.player-hero-title-line {
    display: flex;
    align-items: center;
    min-height: 0;
}

.player-hero-title-line h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.7rem);
    line-height: 0.9;
    text-shadow: 0 4px 16px rgba(4, 8, 16, 0.6);
}

.player-greeting-quote {
    margin: 0;
    padding-left: 8px;
    border-left: 2px solid rgba(178, 198, 236, 0.56);
    color: #d6e2f8;
    font: 600 clamp(0.8rem, 0.74rem + 0.1vw, 0.94rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.02em;
    max-width: min(920px, 92%);
    opacity: 0.96;
}

.player-greeting-quote .q3-color-0 { color: #111111; }
.player-greeting-quote .q3-color-1 { color: #ff4b4b; }
.player-greeting-quote .q3-color-2 { color: #59ff7a; }
.player-greeting-quote .q3-color-3 { color: #ffe45c; }
.player-greeting-quote .q3-color-4 { color: #63a9ff; }
.player-greeting-quote .q3-color-5 { color: #7be7ff; }
.player-greeting-quote .q3-color-6 { color: #ff6de1; }
.player-greeting-quote .q3-color-7 { color: #f0f4ff; }
.player-greeting-quote .q3-color-8 { color: #ff934d; }
.player-greeting-quote .q3-color-9 { color: #a98aff; }

.player-profile-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 1px 0 0;
    color: #c8d7f5;
    font: 700 clamp(0.8rem, 0.74rem + 0.12vw, 0.96rem) 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-hero-badges {
    gap: 6px;
}

.player-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border: 1px solid rgba(145, 168, 214, 0.34);
    background: rgba(17, 27, 46, 0.5);
    color: #d8e4fa;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.player-hero-badge-merged-wrap {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}

.player-hero-badge-merged {
    gap: 7px;
    border-color: rgba(244, 198, 102, 0.38);
    background:
        linear-gradient(180deg, rgba(72, 52, 18, 0.72), rgba(42, 30, 11, 0.82)),
        radial-gradient(circle at top right, rgba(255, 214, 120, 0.18), transparent 50%);
    color: #fff0c7;
    box-shadow: 0 0 0 1px rgba(255, 214, 120, 0.08) inset, 0 6px 18px rgba(0, 0, 0, 0.18);
}

.player-hero-badge-merged .lni {
    font-size: 0.78rem;
    color: #ffd66c;
}

.player-merged-tooltip {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    min-width: 260px;
    max-width: min(380px, 82vw);
    padding: 10px 11px;
    border: 1px solid rgba(255, 214, 120, 0.28);
    background:
        linear-gradient(180deg, rgba(18, 22, 30, 0.98), rgba(10, 14, 22, 0.98)),
        radial-gradient(circle at top right, rgba(255, 214, 120, 0.12), transparent 46%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
    display: grid;
    gap: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translate(6px, -50%);
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    z-index: 20;
}

.player-hero-badge-merged-wrap:hover .player-merged-tooltip,
.player-hero-badge-merged-wrap:focus-within .player-merged-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.player-merged-tooltip-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffe7a8;
    font: 700 0.67rem 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.player-merged-tooltip-title .lni {
    font-size: 0.78rem;
    color: #ffd66c;
}

.player-merged-tooltip-copy {
    color: #d7e4fb;
    font: 600 0.76rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.player-merged-tooltip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.player-merged-tooltip-pill {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border: 1px solid rgba(139, 166, 214, 0.26);
    background: rgba(24, 34, 54, 0.76);
    color: #eef4ff;
    font: 700 0.64rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.player-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 42px;
    height: 28px;
    min-width: 42px;
    line-height: 1;
    vertical-align: middle;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 11, 20, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.player-profile-meta {
    margin-top: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 7px;
    align-items: center;
}

.player-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 0 8px;
    border: 1px solid rgba(139, 160, 202, 0.22);
    background: rgba(11, 18, 32, 0.46);
    color: #b8c9ea;
    font: 700 0.66rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-meta-chip-auth {
    border-color: rgba(112, 189, 255, 0.34);
    background: rgba(39, 92, 158, 0.26);
    color: #dcedff;
}

.player-meta-link {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 0 8px;
    border: 1px solid rgba(181, 107, 162, 0.4);
    background: rgba(181, 107, 162, 0.12);
    color: #e6f0ff;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.player-meta-link:hover {
    background: rgba(181, 107, 162, 0.2);
    border-color: rgba(181, 107, 162, 0.6);
}

.player-meta-link-auth {
    gap: 6px;
    border-color: rgba(112, 189, 255, 0.46);
    background: rgba(39, 92, 158, 0.28);
    color: #e7f3ff;
}

.player-meta-link-auth .lni {
    font-size: 0.72rem;
}

.player-meta-link-auth:hover {
    background: rgba(51, 110, 182, 0.38);
    border-color: rgba(136, 206, 255, 0.7);
}

.player-snapshot-strip {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: calc(100% + (var(--layout-gutter) * 2));
    margin-left: calc(var(--layout-gutter) * -1);
    margin-right: calc(var(--layout-gutter) * -1);
}

.player-snapshot-strip .snapshot-card {
    min-height: 72px;
    border-color: rgba(132, 157, 206, 0.28);
    background:
        linear-gradient(160deg, rgba(77, 126, 203, 0.14), rgba(16, 22, 31, 0.92) 42%),
        linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(10, 14, 22, 0.96));
    padding: 9px 10px;
    transition: background 160ms ease, border-color 160ms ease;
}

.player-snapshot-strip .snapshot-card:hover {
    border-color: rgba(149, 178, 233, 0.42);
    background:
        linear-gradient(160deg, rgba(89, 146, 232, 0.2), rgba(16, 22, 31, 0.9) 42%),
        linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(10, 14, 22, 0.96));
}

.player-snapshot-strip .snapshot-card::after {
    opacity: 0.14;
    right: 8px;
    bottom: 5px;
    width: 52px;
    height: 52px;
}

.player-snapshot-strip .snapshot-card .snapshot-value {
    font-size: clamp(1.02rem, 1.9vw, 1.38rem);
    line-height: 0.9;
}

.player-snapshot-strip .snapshot-card span {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
}

.player-feature-card--kills::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 48l14-14 6 6 18-18' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M42 22h10v10' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--deaths::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='14' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='27' cy='29' r='2' fill='white'/%3E%3Ccircle cx='37' cy='29' r='2' fill='white'/%3E%3Cpath d='M24 39c2.2-2.4 4.9-3.4 8-3.4s5.8 1 8 3.4' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--kd::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 44h40M20 44V20M32 44V14M44 44V28' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--rounds::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='18' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M32 18v16l10 6' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--assists::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 34h16l4-6 4 6h16' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M20 34v12M44 34v12' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--kpr::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 46h40M18 40l10-8 8 5 10-12' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--dpr::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 18h40M18 24l10 8 8-5 10 12' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-feature-card--pace::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 44h40M18 36h8M30 30h8M42 24h8' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.player-profile-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.player-network-servers {
    margin-top: 12px;
}

.player-auth-notice {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-color: rgba(111, 193, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(23, 48, 78, 0.88), rgba(12, 20, 33, 0.96)),
        radial-gradient(circle at top right, rgba(122, 201, 255, 0.18), transparent 42%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.player-auth-notice-copy {
    display: grid;
    gap: 4px;
}

.player-auth-notice-copy strong {
    color: #f1f7ff;
    font: 700 0.98rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.player-auth-notice-copy span {
    color: #c8dbfb;
    font: 600 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
}

.player-network-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.player-network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.player-network-card {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(123, 154, 208, 0.24);
    background:
        linear-gradient(180deg, rgba(20, 30, 48, 0.82), rgba(11, 16, 28, 0.94)),
        radial-gradient(circle at top right, rgba(108, 180, 255, 0.16), transparent 46%);
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.player-network-card:hover {
    transform: translateY(-2px);
    border-color: rgba(160, 190, 244, 0.36);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    background:
        linear-gradient(180deg, rgba(24, 37, 58, 0.9), rgba(11, 16, 28, 0.95)),
        radial-gradient(circle at top right, rgba(130, 194, 255, 0.22), transparent 48%);
}

.player-network-card strong {
    color: #eef4ff;
    font: 700 0.88rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-network-card span {
    color: #c5d7f6;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.player-network-card .player-meta-link {
    width: 100%;
    justify-content: center;
    margin-top: 3px;
}

.player-profile-grid .su-panel-card-lite,
.player-graphs-shell,
.player-ctf-card {
    border-color: rgba(128, 154, 205, 0.3);
    background:
        linear-gradient(160deg, rgba(75, 126, 210, 0.1), rgba(10, 16, 28, 0.92) 42%),
        linear-gradient(180deg, rgba(12, 18, 32, 0.96), rgba(8, 12, 22, 0.97));
}

.player-profile-grid .kicker,
.player-graphs-shell .kicker,
.player-ctf-card .kicker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-profile-grid .kicker::after,
.player-graphs-shell .kicker::after,
.player-ctf-card .kicker::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.32), rgba(136, 164, 219, 0.08));
}

.player-list-grid {
    display: grid;
    gap: 7px;
}

.player-list-row {
    border: 1px solid rgba(124, 150, 200, 0.24);
    background: rgba(11, 18, 32, 0.86);
    padding: 8px;
    display: grid;
    gap: 6px;
    transition: border-color 140ms ease, background 140ms ease;
}

.player-list-row:hover {
    border-color: rgba(145, 170, 220, 0.4);
    background: rgba(14, 22, 40, 0.9);
}

.player-list-main {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.player-list-main strong,
.player-list-main a {
    color: #edf3ff;
    font: 700 0.86rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-list-main span {
    color: #b7c9ea;
    font: 700 0.7rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.player-list-meter {
    display: block;
    height: 5px;
    border: 1px solid rgba(121, 149, 202, 0.25);
    background: rgba(3, 7, 14, 0.66);
}

.player-list-meter i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 214, 154, 0.95), rgba(75, 160, 219, 0.95));
}

.player-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.player-map-card {
    position: relative;
    min-height: 112px;
    border: 1px solid rgba(122, 149, 198, 0.3);
    overflow: hidden;
    transition: border-color 140ms ease;
}

.player-map-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.player-map-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.62), rgba(7, 10, 18, 0.92));
    transition: background 180ms ease;
}

.player-map-card:hover {
    border-color: rgba(154, 184, 234, 0.46);
}

.player-map-card:hover img {
    transform: scale(1.05);
}

.player-map-card:hover .player-map-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.38), rgba(7, 10, 18, 0.82));
}

.player-map-meta {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 8px;
    display: grid;
    align-content: end;
    gap: 3px;
}

.player-map-meta strong {
    color: #edf3ff;
    font: 700 0.84rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.player-map-meta span {
    color: #bbcced;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-map-meta em {
    display: block;
    height: 4px;
    border: 1px solid rgba(121, 148, 198, 0.3);
    background: linear-gradient(90deg, rgba(111, 212, 157, 0.95), rgba(95, 174, 237, 0.95));
}

.player-history-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.player-history-grid h3 {
    margin: 0 0 6px;
    color: #dbe7ff;
    font: 700 0.78rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-history-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.player-history-grid li {
    border: 1px solid rgba(123, 149, 199, 0.22);
    background: rgba(12, 19, 35, 0.84);
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.player-history-grid li span {
    color: #b7c9ea;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
}

.player-history-grid li strong {
    color: #e3ecff;
    font: 700 0.72rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.player-ctf-card {
    margin-top: 10px;
}

.player-graphs-shell {
    margin-top: 10px;
}

.player-graphs-head {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.player-graphs-note {
    color: #aebfdf;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-graphs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.player-graph-card {
    border: 1px solid rgba(122, 149, 199, 0.24);
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(9, 15, 27, 0.92));
    padding: 10px 11px;
    min-height: 0;
}

.player-graph-card--wide {
    grid-column: span 2;
}

.player-graph-card h3 {
    margin: 0 0 9px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(122, 149, 199, 0.18);
    color: #e7efff;
    font: 700 0.82rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-graph-frame {
    position: relative;
    height: 220px;
}

.player-graph-frame--small {
    height: 220px;
}

.player-ctf-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.player-ctf-grid article {
    border: 1px solid rgba(123, 148, 198, 0.24);
    background: rgba(12, 19, 33, 0.86);
    padding: 9px;
    display: grid;
    gap: 2px;
}

.player-ctf-grid strong {
    color: #edf3ff;
    font: 700 1.18rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
}

.player-ctf-grid span {
    color: #b8caea;
    font: 700 0.68rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .player-profile-grid,
    .player-history-grid {
        grid-template-columns: 1fr;
    }

    .player-graphs-grid {
        grid-template-columns: 1fr;
    }

    .player-graph-card--wide {
        grid-column: auto;
    }

    .player-map-grid,
    .player-ctf-grid {
        grid-template-columns: 1fr;
    }

    .player-network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player-auth-notice {
        flex-direction: column;
        align-items: flex-start;
    }

    .player-merged-tooltip {
        left: 0;
        top: calc(100% + 8px);
        transform: translateY(4px);
        max-width: min(320px, calc(100vw - 48px));
    }

    .player-hero-badge-merged-wrap:hover .player-merged-tooltip,
    .player-hero-badge-merged-wrap:focus-within .player-merged-tooltip {
        transform: translateY(0);
    }

    .player-snapshot-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-player-profile {
        height: auto;
        min-height: 0;
        padding-top: 12px;
        padding-bottom: 10px;
    }

    .player-snapshot-strip {
        grid-template-columns: 1fr;
    }

    .player-network-grid {
        grid-template-columns: 1fr;
    }

    .player-hero-watermark {
        font-size: clamp(1.15rem, 5.8vw, 1.8rem);
        right: 12px;
        top: 12px;
    }

    .player-profile-meta {
        gap: 6px;
    }

    .player-hero-title-line h2 {
        font-size: clamp(1.45rem, 7.6vw, 2.15rem);
    }

    .player-graph-frame,
    .player-graph-frame--small {
        height: 196px;
    }
}

.server-cycle-list {
    display: grid;
    gap: 6px;
}

.server-cycle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.server-cycle-card {
    position: relative;
    min-height: 92px;
    border: 1px solid rgba(123, 146, 190, 0.26);
    background: rgba(15, 23, 41, 0.86);
    overflow: hidden;
}

.server-cycle-card.is-current {
    border-color: rgba(108, 214, 154, 0.78);
    box-shadow: inset 0 0 0 1px rgba(108, 214, 154, 0.3);
}

.server-cycle-card.is-next {
    border-color: rgba(214, 166, 221, 0.52);
}

.server-cycle-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-cycle-card-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.8), rgba(7, 10, 18, 0.97));
    transition: background 140ms ease;
}

.server-cycle-card.is-current .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.32), rgba(7, 10, 18, 0.74));
}

.server-cycle-card.is-next .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.44), rgba(7, 10, 18, 0.78));
}

.server-cycle-card:hover .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.58), rgba(7, 10, 18, 0.86));
}

.server-cycle-card.is-current:hover .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.26), rgba(7, 10, 18, 0.66));
}

.server-cycle-card.is-next:hover .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.34), rgba(7, 10, 18, 0.68));
}

.cycle-preview-overlay[hidden] {
    display: none;
}

.cycle-preview-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(4, 8, 15, 0.88);
    backdrop-filter: blur(4px);
    padding: 20px;
}

.cycle-preview-panel {
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    margin: 0 auto;
    border: 1px solid rgba(134, 160, 212, 0.35);
    background: rgba(8, 13, 24, 0.98);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
}

.cycle-preview-head {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(134, 160, 212, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cycle-preview-head strong {
    color: #e8f0ff;
    font: 700 0.96rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cycle-preview-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    background: rgba(2, 6, 12, 0.9);
}

.server-cycle-card-meta {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 7px 8px;
    display: grid;
    align-content: end;
    gap: 2px;
}

.server-cycle-card-meta small {
    color: #9bb0d8;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.server-cycle-card-meta strong {
    color: #edf3ff;
    font: 700 0.84rem 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.server-cycle-card-meta em {
    justify-self: start;
    font-style: normal;
    color: #c6d7fb;
    border: 1px solid rgba(140, 165, 215, 0.35);
    background: rgba(35, 50, 80, 0.44);
    padding: 1px 6px;
    font: 700 0.62rem 'Rajdhani', sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.server-cycle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid rgba(123, 146, 190, 0.2);
    border-radius: 0;
    background: rgba(20, 29, 49, 0.64);
    padding: 6px 8px;
    color: #dde7f9;
    font: 700 0.75rem 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.server-cycle-row em {
    font-style: normal;
    color: #9eb2da;
    text-transform: uppercase;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

.server-cycle-row.is-current {
    border-color: rgba(164, 191, 245, 0.58);
}

.server-cycle-row.is-next {
    border-color: rgba(220, 171, 223, 0.46);
}

@media (min-width: 720px) {
    .server-snapshot-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .server-snapshot-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .server-hero-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .server-hero-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .server-single-map-badge-hero {
        order: -1;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .server-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .server-hero-row {
        grid-template-columns: 1fr;
    }

    .server-hero-panel {
        min-height: 0;
    }

    .server-rotation-single {
        min-height: 0;
        padding: 0;
    }

    .server-single-map-badge {
        min-height: 22px;
        padding: 0 8px;
        font-size: 0.6rem;
    }

    .server-hero-actions .tile-server-btn {
        min-height: 28px;
    }

    .server-snapshot-strip .snapshot-card {
        min-height: 82px;
    }

    .focus-overlay {
        padding: 12px;
    }

    .su-map-timeline-lite {
        grid-template-columns: 1fr 1fr;
    }

    .su-server-layout-lite {
        grid-template-columns: 1fr;
    }

    .config-grid-modal {
        grid-template-columns: 1fr;
    }

    .server-two-col {
        grid-template-columns: 1fr;
    }

    .server-fun-commands-grid {
        grid-template-columns: 1fr;
    }

    .server-fun-command-card {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 8px;
        padding: 8px 9px;
    }

    .server-fun-command-icon {
        width: 28px;
        height: 28px;
        font-size: 0.84rem;
    }

    .server-activity-section {
        padding: 10px;
    }

    .server-activity-shell {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .server-activity-yaxis {
        width: 100%;
        padding: 0;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        font-size: 0.58rem;
    }

    .server-activity-yaxis span {
        justify-content: flex-start;
        text-align: left;
    }

    .server-activity-chart {
        height: 110px;
        padding-top: 14px;
        gap: 1px;
    }

    .server-activity-bar::after,
    .server-activity-bar::before {
        display: none;
    }

    .server-activity-meta {
        gap: 6px 10px;
        font-size: 0.64rem;
    }

    .server-live-search {
        min-width: 0;
        width: 100%;
    }

    .server-live-player {
        grid-template-columns: 1fr;
    }

    .network-status-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .network-status-meta {
        justify-items: start;
        grid-auto-flow: column;
        justify-content: space-between;
    }

    .network-core-grid {
        grid-template-columns: 1fr;
    }

    .server-cycle-grid {
        grid-template-columns: 1fr;
    }

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

    .staff-snapshot-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tile-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-discord-actions {
        width: 100%;
    }

    .home-discord-actions .btn-primary,
    .home-discord-actions .btn-ghost {
        width: 100%;
        justify-content: flex-start;
    }
}

.footer-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #91a0b8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    padding-top: 11px;
    padding-bottom: 18px;
}

.footer-badge {
    margin-left: auto;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(95, 143, 115, 0.22);
    background: linear-gradient(180deg, rgba(22, 28, 41, 0.92), rgba(12, 17, 27, 0.98));
    color: #b9c4d7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 700 0.58rem 'Rajdhani', sans-serif;
    letter-spacing: 0.08em;
    text-transform: none;
    text-align: center;
}

@keyframes su-scanline {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(8px);
    }
}

@keyframes su-loading-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .app-shell::before {
        display: none;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 180ms ease;
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

    .app-main {
        margin-left: 0;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu-toggle-floating {
        position: fixed;
        top: 12px;
        left: 12px;
        z-index: 140;
        display: inline-flex;
    }

    .hero-main {
        height: auto;
        min-height: 280px;
        padding: 20px 22px;
    }

    .hero-main h2 {
        max-width: min(100%, 760px);
        font-size: clamp(1.85rem, 5.6vw, 3.1rem);
        line-height: 0.9;
    }

    .hero-main > p {
        max-width: min(100%, 660px);
        margin-top: 10px;
        font-size: 0.96rem;
    }

    .kicker {
        width: 100%;
        gap: 8px;
    }

    .actions-row,
    .hero-connect,
    .hero-status-row {
        width: 100%;
        gap: 8px;
    }

    .btn-primary,
    .btn-ghost,
    .mono {
        max-width: 100%;
    }

    .hero-home {
        padding-top: 18px;
        padding-right: clamp(170px, 21vw, 240px);
        padding-bottom: 16px;
        gap: 8px;
    }

    .hero-home h2 {
        max-width: min(780px, calc(100% - 20px));
    }

    .hero-home > p {
        max-width: min(620px, calc(100% - 40px));
    }

    .hero-badge-stack,
    .hero-main-video .hero-badge-stack {
        right: 16px;
        top: 24px;
        max-width: min(240px, 28vw);
        gap: 5px;
    }

    .hero-discreet-badge {
        min-height: 21px;
        padding: 0 8px;
        font-size: 0.58rem;
        line-height: 1.2;
        white-space: normal;
        text-align: right;
    }

    .download-meta-strip {
        gap: 6px;
    }

    .download-meta-pill {
        min-height: 22px;
        padding-inline: 9px;
        font-size: 0.62rem;
    }

    .hero-status-embedded {
        padding: 16px;
        min-height: 0;
    }

    .hero-status-embedded h2 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .server-hero-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .server-hero-header h2 {
        max-width: 100%;
    }

    .server-hero-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .server-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .server-hero-row {
        grid-template-columns: 1fr;
    }

    .server-hero-panel {
        min-height: 0;
    }

    .hero-player-profile {
        height: auto;
        min-height: 196px;
    }

    .player-profile-head {
        max-width: min(100%, 760px);
    }
}

@media (max-width: 760px) {
    .topbar,
    .content-area,
    .footer-wrap {
        padding-inline: 16px;
    }

    .hero-main {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        height: auto;
        min-height: 0;
        padding: 18px 16px;
    }

    .snapshot-strip,
    .global-top-list,
    .latest-votes-section,
    .network-overview,
    .home-americas-notice,
    .home-discord-section {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
    }

    .footer-wrap {
        align-items: flex-start;
    }

    .footer-badge {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .network-head,
    .network-grid {
        padding-inline: 16px;
    }

    .global-top-list {
        padding-inline: 16px;
    }

    .latest-votes-section {
        padding-inline: 16px;
    }

    .home-americas-notice {
        padding-inline: 16px;
    }

    .home-americas-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .home-americas-flag-wrap {
        width: 60px;
        height: 60px;
    }

    .home-americas-copy h3 {
        font-size: 1.55rem;
    }

    .home-discord-section {
        padding-inline: 16px;
    }

    .favmap-row {
        grid-template-columns: 34px minmax(0, 1fr) 58px;
    }

    .favmap-shot {
        display: none;
    }

    .favmap-shot-trigger {
        display: none;
    }

    .favmap-stats {
        min-width: 58px;
        gap: 2px;
    }

    .latest-vote-shot {
        display: none;
    }

    .latest-vote-server,
    .latest-vote-time {
        display: none;
    }

    .global-top-server {
        display: none;
    }

    .network-head::before {
        left: 16px;
        right: 16px;
    }

    .hero-main::before {
        inset: 7px;
    }

    .hero-main h2 {
        font-size: clamp(1.7rem, 10vw, 2.8rem);
    }

    .hero-main > p {
        max-width: 100%;
        margin-top: 8px;
    }

    .kicker {
        margin-bottom: 6px;
    }

    .actions-row,
    .hero-connect,
    .hero-status-row {
        gap: 7px;
    }

    .btn-primary,
    .btn-ghost,
    .mono {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-home {
        gap: 10px;
        padding-top: 22px;
        padding-right: 16px;
        padding-bottom: 18px;
    }

    .hero-home h2,
    .hero-home > p {
        max-width: 100%;
    }

    .hero-home-orbit {
        width: clamp(255px, 72vw, 390px);
        height: clamp(255px, 72vw, 390px);
        top: -54px;
        right: -136px;
        opacity: 0.3;
        transform: rotate(-20deg) scaleY(0.92);
    }

    .hero-badge-stack,
    .hero-main-video .hero-badge-stack {
        display: none;
    }

    .hero-discreet-badge {
        min-height: 24px;
        max-width: 100%;
        padding: 2px 8px;
        font-size: 0.58rem;
        letter-spacing: 0.07em;
        white-space: normal;
        line-height: 1.2;
        text-align: left;
    }

    .download-meta-strip {
        margin-top: 10px;
    }

    .download-meta-pill {
        min-height: 22px;
        font-size: 0.6rem;
    }

    .hero-status-embedded {
        padding: 14px;
    }

    .hero-status-embedded .hero-status-row {
        margin-top: 10px;
    }

    .server-hero-actions .tile-server-btn {
        min-height: 28px;
        padding-inline: 9px;
    }

    .server-hero-grid {
        grid-template-columns: 1fr;
    }

    .tile-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tile-badges {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .tile-badge + .tile-badge {
        border-left: 0;
    }

    .latest-vote-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 6px;
    }

    .latest-vote-badge {
        min-height: 21px;
        justify-self: start;
    }

    .global-top-row {
        grid-template-columns: 34px minmax(0, 1fr) 62px;
        gap: 6px;
    }

    .global-top-kills {
        font-size: 0.74rem;
    }
}

@media (max-width: 390px) {
    .hero-main {
        padding: 22px 14px;
    }

    .hero-main h2 {
        font-size: clamp(1.5rem, 9.2vw, 2.15rem);
    }

    .hero-main > p {
        font-size: 0.88rem;
    }

    .hero-discreet-badge {
        min-height: 22px;
        padding: 2px 7px;
        font-size: 0.54rem;
        letter-spacing: 0.06em;
    }

    .actions-row .btn-primary,
    .actions-row .btn-ghost {
        width: 100%;
        justify-content: flex-start;
    }

    .latest-vote-row {
        grid-template-columns: 64px minmax(0, 1fr);
        min-height: 50px;
        padding: 5px 7px;
    }

    .latest-vote-badge {
        min-height: 20px;
        font-size: 0.54rem;
        letter-spacing: 0.06em;
    }

    .latest-vote-map {
        font-size: 0.8rem;
    }

    .latest-vote-player {
        font-size: 0.62rem;
    }

    .global-top-row {
        grid-template-columns: 30px minmax(0, 1fr) 58px;
        min-height: 50px;
        padding: 5px 7px;
    }

    .global-top-rank {
        font-size: 0.64rem;
    }

    .global-top-name {
        font-size: 0.8rem;
    }

    .global-top-kills {
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .latest-vote-row {
        grid-template-columns: 72px 72px minmax(0, 1fr) minmax(92px, auto) 84px;
    }

    .global-top-row {
        grid-template-columns: 42px minmax(0, 1fr) minmax(80px, auto) 76px;
    }

    .favmap-row {
        grid-template-columns: 42px 84px minmax(0, 1fr) 72px;
    }
}

@media (min-width: 1600px) {
    :root {
        --layout-max: 1760px;
        --layout-gutter: 40px;
    }

    .topbar h1 {
        font-size: clamp(2.3rem, 3vw, 3.1rem);
    }

    .hero-main h2 {
        max-width: 1080px;
    }

    .hero-main > p {
        max-width: 920px;
        font-size: 1.05rem;
    }

    .latest-vote-row {
        grid-template-columns: 84px 74px minmax(0, 1fr) minmax(112px, auto) 96px;
    }

    .global-top-row {
        grid-template-columns: 52px minmax(0, 1fr) minmax(96px, auto) 88px;
    }

    .favmap-row {
        grid-template-columns: 52px 112px minmax(0, 1fr) 84px;
    }

    .favmap-shot {
        width: 112px;
        height: 50px;
    }

    .favmap-stats {
        min-width: 84px;
    }

    .network-grid {
        gap: 14px;
    }

    .global-top-row,
    .latest-vote-row {
        padding-top: 7px;
        padding-bottom: 7px;
    }
}

@media (min-width: 1200px) {
    .side-sublink,
    .kicker,
    .latest-votes-tip,
    .latest-votes-tip code,
    .latest-votes-list td,
    .latest-votes-list th,
    .tile-progress-percent,
    .tile-top-player span,
    .tile-next-map-line,
    .tile-score-value,
    .tile-server-btn,
    .bans-table th,
    .bans-table td,
    .server-table th,
    .server-table td {
        font-size: 0.86rem;
    }

    .snapshot-card span {
        font-size: 0.9rem;
    }
}

@media (min-width: 1600px) {
    .side-sublink,
    .kicker,
    .latest-votes-tip,
    .latest-votes-tip code,
    .latest-votes-list td,
    .latest-votes-list th,
    .tile-progress-percent,
    .tile-top-player span,
    .tile-next-map-line,
    .tile-score-value,
    .tile-server-btn,
    .bans-table th,
    .bans-table td,
    .server-table th,
    .server-table td {
        font-size: 0.9rem;
    }

    .snapshot-card span {
        font-size: 0.94rem;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    :root {
        --layout-max: 1960px;
        --layout-gutter: 44px;
    }

    .side-sublink,
    .kicker,
    .latest-votes-tip,
    .latest-votes-tip code,
    .latest-votes-list td,
    .latest-votes-list th,
    .tile-progress-percent,
    .tile-top-player span,
    .tile-next-map-line,
    .tile-score-value,
    .tile-server-btn,
    .bans-table th,
    .bans-table td,
    .server-table th,
    .server-table td {
        font-size: 0.89rem;
    }

    .snapshot-card span {
        font-size: 0.92rem;
    }

    .server-activity-chart {
        height: 132px;
    }

    .network-grid {
        gap: 16px;
    }

    .global-top-list,
    .latest-votes-section {
        margin-top: 12px;
    }

    .server-activity-meta {
        font-size: 0.74rem;
    }

    .latest-vote-badge {
        font-size: 0.56rem;
    }

    .latest-vote-map,
    .global-top-name {
        font-size: 0.84rem;
    }

    .latest-vote-player,
    .latest-vote-server,
    .latest-vote-time,
    .global-top-server,
    .global-top-kills {
        font-size: 0.68rem;
    }
}

@media (min-width: 2560px) {
    :root {
        --layout-max: 2320px;
        --layout-gutter: 56px;
    }

    .hero-main h2 {
        max-width: 1220px;
        font-size: clamp(2.5rem, 4.2vw, 4.6rem);
    }

    .hero-main > p {
        max-width: 980px;
        font-size: 1rem;
    }

    .network-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .latest-vote-row {
        grid-template-columns: 92px 74px minmax(0, 1fr) minmax(126px, auto) 110px;
    }

    .global-top-row {
        grid-template-columns: 56px minmax(0, 1fr) minmax(116px, auto) 96px;
    }

    .server-activity-section {
        padding: 14px 16px;
    }

    .server-activity-chart {
        height: 142px;
    }

    .server-rotation-single {
        min-height: 0;
    }

    .server-single-map-badge {
        min-height: 26px;
        padding: 0 11px;
        font-size: 0.7rem;
    }

}

/* SEXYS CTF dark-green palette override */
:root {
    --su-green-1: #3d5c49;
    --su-green-2: #4f775f;
    --su-green-3: #6f9a7f;
    --su-green-glow: rgba(111, 154, 127, 0.16);
    --su-frame: #6f8576;
    --su-frame-soft: rgba(111, 133, 118, 0.28);
    --su-frame-faint: rgba(111, 133, 118, 0.16);
    --su-table-bg: rgba(11, 19, 15, 0.88);
    --su-table-row: rgba(17, 28, 22, 0.76);
    --su-table-row-alt: rgba(14, 23, 18, 0.94);
    --su-table-row-hover: rgba(33, 51, 41, 0.92);
    --su-table-head: #b4c5b9;
    --su-table-text: #dfe9e2;
    --su-table-muted: #96ab9d;
    --su-panel: rgba(12, 22, 17, 0.92);
    --su-panel-2: rgba(15, 28, 21, 0.96);
    --su-panel-3: rgba(20, 34, 27, 0.98);
    --su-border: rgba(164, 191, 174, 0.12);
}

body,
.app-shell::before,
.sidebar,
.content-area,
.footer-wrap {
    color: var(--text);
}

body {
    background:
        radial-gradient(circle at 80% -8%, rgba(86, 123, 97, 0.14), transparent 36%),
        radial-gradient(circle at 8% 26%, rgba(153, 184, 164, 0.04), transparent 34%),
        linear-gradient(180deg, #06100c, #0b1712);
}

.app-shell::before,
.sidebar {
    background:
        radial-gradient(circle at 50% 100%, rgba(95, 143, 115, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(95, 143, 115, 0.05) 82%, rgba(95, 143, 115, 0.11) 100%),
        linear-gradient(180deg, rgba(10, 17, 14, 0.98), rgba(7, 12, 10, 0.99)),
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 4px
        );
}

.sidebar-player-search-input,
.sidebar-player-search-results,
.sidebar-network-btn,
.side-link,
.side-sublink,
.snapshot-card,
.global-top-row,
.latest-vote-row,
.rules-card,
.download-option-card,
.download-step-card,
.network-tile,
.focus-panel,
.network-status-row,
.home-discord-card,
.player-forum-card,
.player-hero-badge,
.player-meta-chip,
.server-activity-section,
.server-table-wrap,
.bans-table-wrap {
    border-color: var(--su-border);
}

.side-link::before,
.side-link.is-active::before,
.side-sublink.is-active::before {
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.28), rgba(95, 143, 115, 0.03));
}

.side-link:hover,
.side-link.is-active,
.side-sublink:hover,
.side-sublink.is-active {
    background: linear-gradient(180deg, rgba(21, 34, 27, 0.94), rgba(13, 22, 17, 0.98));
    color: #eef7f1;
}

.hero-main,
.hero-main-video,
.hero-player-profile,
.hero-server-focus {
    background:
        radial-gradient(circle at 12% 18%, rgba(95, 143, 115, 0.24), transparent 28%),
        radial-gradient(circle at 78% 0%, rgba(128, 161, 138, 0.08), transparent 26%),
        linear-gradient(102deg, rgba(95, 143, 115, 0.14), transparent 40%),
        linear-gradient(165deg, rgba(11, 17, 14, 0.985), rgba(6, 10, 8, 0.985));
}

.hero-main::before,
.hero-main-video::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(95, 143, 115, 0.1) 45%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 26%);
}

.hero-home-orbit,
.player-hero-watermark,
.hero-impact-word,
.kicker,
.rules-card-id,
.network-status-pill,
.player-meta-link,
.player-hero-badge-merged .lni,
.global-top-merged-badge,
.latest-vote-badge.up,
.download-meta-pill {
    color: #8fb39a;
}

.btn-primary,
.tile-server-btn,
.global-top-more {
    color: #08100c;
    background: linear-gradient(180deg, #86a892, #62836e);
    border-color: #95b7a0;
    box-shadow: 0 0 0 1px rgba(209, 229, 216, 0.08), 0 10px 24px rgba(17, 31, 22, 0.34);
}

.btn-primary:hover,
.tile-server-btn:hover,
.global-top-more:hover {
    background: linear-gradient(180deg, #95b7a0, #6e917a);
    border-color: #a9c9b3;
}

.btn-ghost,
.tile-server-btn-ghost,
.download-secondary {
    background: linear-gradient(180deg, rgba(15, 27, 21, 0.86), rgba(10, 18, 14, 0.96));
    border-color: rgba(155, 185, 165, 0.16);
    color: #dbe9df;
}

.btn-ghost:hover,
.tile-server-btn-ghost:hover,
.download-secondary:hover {
    background: linear-gradient(180deg, rgba(20, 34, 27, 0.9), rgba(12, 22, 17, 0.98));
    border-color: rgba(173, 201, 182, 0.22);
}

.snapshot-card,
.global-top-row,
.latest-vote-row,
.rules-card,
.home-discord-card,
.focus-panel,
.network-status-row,
.player-forum-card,
.player-snapshot-strip .snapshot-card,
.server-snapshot-strip .snapshot-card,
.network-tile,
.download-option-card,
.download-step-card {
    background:
        linear-gradient(160deg, rgba(82, 116, 94, 0.1), rgba(10, 17, 14, 0.92) 42%),
        linear-gradient(180deg, rgba(13, 22, 18, 0.96), rgba(9, 15, 12, 0.98));
    box-shadow: 0 12px 28px rgba(5, 12, 9, 0.26);
}

.snapshot-card:hover,
.global-top-row:hover,
.latest-vote-row:hover,
.rules-card:hover,
.network-tile:hover {
    background:
        linear-gradient(160deg, rgba(95, 143, 115, 0.14), rgba(12, 21, 17, 0.94) 42%),
        linear-gradient(180deg, rgba(15, 26, 20, 0.98), rgba(10, 17, 14, 0.99));
}

.home-discord-card,
.network-status-panel,
.focus-panel-live {
    background:
        radial-gradient(circle at 88% 14%, rgba(104, 138, 115, 0.08), transparent 40%),
        radial-gradient(circle at 16% 82%, rgba(95, 143, 115, 0.08), transparent 44%),
        linear-gradient(160deg, rgba(66, 95, 77, 0.07), rgba(10, 16, 13, 0.93) 46%),
        linear-gradient(180deg, rgba(12, 20, 16, 0.94), rgba(8, 12, 10, 0.96));
}

.network-tile.is-online {
    background: linear-gradient(170deg, rgba(15, 29, 22, 0.96), rgba(9, 17, 13, 0.98));
}

.network-tile.is-offline {
    background: linear-gradient(170deg, rgba(20, 23, 25, 0.96), rgba(12, 14, 15, 0.98));
}

.network-tile .tile-levelshot::after,
.hero-main-video::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(180deg, rgba(95, 143, 115, 0.12), rgba(0, 0, 0, 0.08) 26%, rgba(0, 0, 0, 0.34) 100%);
}

.tile-badge.mode,
.tile-badge.activity,
.tile-badge.state,
.network-status-chip,
.player-meta-link-auth,
.player-merged-tooltip-pill {
    border-color: rgba(167, 196, 176, 0.18);
    background: linear-gradient(180deg, rgba(17, 30, 23, 0.82), rgba(11, 18, 15, 0.92));
}

.tile-progress-bg,
.global-top-meter i,
.server-activity-bar-fill,
.latest-vote-badge.up,
.network-status-dot.is-online {
    background: linear-gradient(90deg, rgba(116, 164, 132, 0.96), rgba(82, 130, 100, 0.96));
}

.tile-progress-percent,
.global-top-kills,
.player-meta-link:hover,
.network-status-row.is-online .network-status-pill,
.network-status-chip.online {
    color: #dff2e4;
}

.tile-score-blue,
.status-team-blue,
.server-roster-team-blue {
    background: linear-gradient(180deg, rgba(52, 93, 73, 0.44), rgba(28, 54, 41, 0.22));
}

.tile-score-red,
.status-team-red,
.server-roster-team-red {
    background: linear-gradient(180deg, rgba(112, 68, 68, 0.34), rgba(69, 41, 41, 0.2));
}

.footer-wrap {
    background: linear-gradient(180deg, rgba(8, 14, 11, 0.96), rgba(5, 9, 7, 0.99));
    border-top: 1px solid rgba(164, 191, 174, 0.1);
}

.footer-badge {
    color: #b8c9bd;
}

/* Remove remaining pink/mauve traces from legacy component-level rules. */
.brand-logo {
    filter: drop-shadow(0 8px 18px rgba(88, 128, 103, 0.18));
}

.sidebar-player-search-icon,
.sidebar-player-search-server,
.kicker,
.hero-impact-word,
.status-pill.pending,
.bans-server-pill,
.favmap-download-link,
.rules-card-id {
    color: #9ac1a7;
}

.sidebar-player-search-input,
.sidebar-player-search-results,
.favmaps-filter-item select,
.bans-filter-item select,
.bans-toggle,
.bans-table,
.favmap-bars,
.mono {
    background: linear-gradient(180deg, rgba(14, 23, 18, 0.96), rgba(9, 15, 12, 0.98));
    border-color: rgba(163, 192, 173, 0.14);
    color: #eef5f0;
}

.sidebar-player-search-input:hover,
.sidebar-player-search-input:focus,
.sidebar-player-search-result:hover,
.sidebar-player-search-result.is-active,
.side-link.is-active,
.side-sublink.is-active,
.bans-table tbody tr:hover {
    border-color: rgba(110, 154, 127, 0.46) !important;
    background: linear-gradient(90deg, rgba(95, 143, 115, 0.18), rgba(95, 143, 115, 0.03)) !important;
}

.hero-main,
.hero-main::after,
.hero-main-video::after,
.hero-home::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(180deg, rgba(95, 143, 115, 0.12), rgba(0, 0, 0, 0.1) 26%, rgba(0, 0, 0, 0.34) 100%) !important;
}

.hero-home-orbit::before {
    background: radial-gradient(circle, rgba(136, 161, 116, 0.26) 0%, rgba(93, 121, 78, 0.14) 44%, transparent 74%);
}

.hero-home-orbit::after {
    background:
        conic-gradient(from 0deg,
            rgba(0, 0, 0, 0) 0deg 14deg,
            rgba(179, 206, 165, 0.84) 14deg 82deg,
            rgba(0, 0, 0, 0) 82deg 110deg,
            rgba(120, 160, 128, 0.78) 110deg 168deg,
            rgba(0, 0, 0, 0) 168deg 196deg,
            rgba(141, 175, 149, 0.74) 196deg 258deg,
            rgba(0, 0, 0, 0) 258deg 286deg,
            rgba(95, 143, 115, 0.72) 286deg 346deg,
            rgba(0, 0, 0, 0) 346deg 360deg);
    filter:
        drop-shadow(0 0 18px rgba(179, 206, 165, 0.18))
        drop-shadow(0 0 34px rgba(120, 160, 128, 0.16));
}

.kicker::after {
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.26), rgba(150, 184, 162, 0.08)) !important;
}

.btn-primary {
    border-color: #9bbba5;
}

.btn-primary:hover {
    background: #769880;
    border-color: #b4cfbd;
}

.global-top-more:hover,
.favmaps-filter-btn,
.bans-filter-btn,
.bans-server-pill,
.favmap-download-link,
.status-pill.pending,
.tile-server-btn-ghost:hover {
    border-color: rgba(110, 154, 127, 0.5) !important;
    background: rgba(95, 143, 115, 0.14) !important;
    color: #e3f0e7 !important;
}

.favmap-shot-trigger:focus-visible {
    outline: 1px solid rgba(139, 181, 154, 0.78);
}

.favmap-shot-trigger:hover .favmap-shot,
.favmap-shot-trigger:focus-visible .favmap-shot {
    border-color: rgba(139, 181, 154, 0.48);
    box-shadow: 0 0 0 1px rgba(139, 181, 154, 0.14);
}

.favmap-download-link:hover {
    border-color: rgba(139, 181, 154, 0.52) !important;
    background: rgba(95, 143, 115, 0.18) !important;
    color: #edf7f0 !important;
}

.favmaps-filter-btn,
.bans-filter-btn {
    color: #e4f1e8;
}

.bans-table tbody tr:hover,
.bans-server-pill,
.bans-type,
.player-meta-link-auth,
.player-merged-tooltip-pill {
    border-color: rgba(157, 187, 167, 0.2);
}

.rules-card,
.download-option-card,
.download-step-card,
.home-discord-card,
.global-top-row,
.latest-vote-row,
.snapshot-card,
.network-tile,
.focus-panel,
.network-status-panel,
.player-snapshot-strip .snapshot-card,
.server-snapshot-strip .snapshot-card {
    background:
        linear-gradient(160deg, rgba(89, 127, 103, 0.09), rgba(10, 17, 14, 0.92) 42%),
        linear-gradient(180deg, rgba(13, 22, 18, 0.96), rgba(9, 15, 12, 0.98)) !important;
}

.global-top-more:hover,
.network-tile.is-online,
.side-link.is-active,
.side-sublink.is-active {
    color: #f1f8f3;
}

.bans-reason .q3-color-6,
.player-greeting-quote .q3-color-6 {
    color: #86d7a0 !important;
}

.bans-reason .q3-color-9,
.player-greeting-quote .q3-color-9 {
    color: #91b59d !important;
}

.hero-impact-word {
    text-shadow: 0 0 14px rgba(95, 143, 115, 0.24) !important;
}

/* Frames and tables: use a cooler slate-green so cards and data areas read clearly. */
.server-table-wrap,
.bans-table-wrap,
.player-forum-preview,
.favmap-shot,
.favmap-bars,
.server-hero-panel,
.su-server-insight,
.su-server-score,
.server-rotation-box,
.server-activity-section,
.focus-panel,
.network-status-row,
.player-meta-chip,
.player-forum-card textarea {
    border-color: var(--su-frame-faint) !important;
}

.bans-table,
.server-table,
.server-table-wrap,
.bans-table-wrap {
    background: linear-gradient(180deg, rgba(16, 26, 21, 0.96), rgba(12, 20, 16, 0.98)) !important;
    border-color: var(--su-frame-soft) !important;
}

.bans-table th,
.server-table th {
    color: var(--su-table-head) !important;
    background: linear-gradient(180deg, rgba(24, 38, 30, 0.98), rgba(18, 29, 23, 0.98)) !important;
    border-bottom: 1px solid var(--su-frame-soft) !important;
}

.bans-table td,
.server-table td {
    color: #edf5f0 !important;
    border-bottom: 1px solid rgba(111, 133, 118, 0.12) !important;
    background: transparent !important;
}

.bans-table tbody tr:nth-child(odd),
.server-table tbody tr:nth-child(odd) {
    background: rgba(28, 42, 34, 0.82) !important;
}

.bans-table tbody tr:nth-child(even),
.server-table tbody tr:nth-child(even) {
    background: rgba(24, 36, 29, 0.9) !important;
}

.bans-table tbody tr:hover,
.server-table tbody tr:hover {
    background: rgba(44, 64, 52, 0.92) !important;
}

.bans-player,
.bans-player-link,
.server-live-name,
.server-live-name-link,
.favmap-name {
    color: #eef5f0 !important;
}

.bans-page-info,
.favmap-meta,
.favmap-meta-score,
.favmap-meta-approval,
.server-table th,
.bans-table th,
.server-hero-panel-title,
.su-server-insight span,
.su-server-score p {
    color: #b9cdc0 !important;
}

.server-table-live tr.is-blue td {
    background: rgba(72, 112, 91, 0.22) !important;
}

.server-table-live tr.is-red td {
    background: rgba(126, 78, 78, 0.2) !important;
}

.server-table-live tr.is-spectator td {
    background: rgba(123, 140, 130, 0.16) !important;
}

.bans-reason,
.bans-source,
.bans-type,
.server-live-chip,
.player-merged-tooltip-pill {
    background: rgba(16, 27, 21, 0.82) !important;
    border-color: rgba(132, 155, 141, 0.22) !important;
}

/* Server individual page: force dark-green palette (remove remaining blue/pink). */
.hero-server-focus::after,
.hero-status-embedded {
    background:
        linear-gradient(90deg, rgba(6, 11, 9, 0.78), rgba(8, 14, 11, 0.52) 45%, rgba(8, 14, 11, 0.78)),
        linear-gradient(180deg, rgba(95, 143, 115, 0.14), rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.48)) !important;
}

.tile-server-btn-proxy,
.tile-server-btn-ghost,
.server-live-view-switch,
.server-live-view-btn,
.server-live-toggle-btn,
.server-live-search {
    border-color: rgba(136, 164, 145, 0.28) !important;
    background: rgba(11, 20, 16, 0.88) !important;
    color: #dce9e1 !important;
}

.tile-server-btn-proxy:hover,
.tile-server-btn-ghost:hover,
.server-live-view-btn.is-active,
.server-live-toggle-btn.is-active,
.server-live-search:focus {
    border-color: rgba(120, 164, 137, 0.56) !important;
    background: rgba(28, 46, 37, 0.84) !important;
    color: #f0f8f3 !important;
}

.server-hero-panel,
.su-server-insight,
.su-server-score,
.server-rotation-box,
.server-col-card,
.server-fun-commands-section,
.server-activity-section,
.su-panel-card-lite,
.focus-panel,
.focus-panel-live,
.network-status-panel,
.network-core-section,
.network-core-card,
.network-status-row,
.server-live-group,
.server-live-player,
.server-auth-tooltip,
.server-xlr-row,
.staff-card,
.staff-row,
.error-detail-card {
    border-color: rgba(120, 145, 129, 0.22) !important;
    background:
        linear-gradient(160deg, rgba(88, 124, 101, 0.1), rgba(9, 16, 13, 0.94) 44%),
        linear-gradient(180deg, rgba(11, 19, 15, 0.95), rgba(7, 12, 10, 0.97)) !important;
}

.server-hero-panel-title,
.su-server-insight span,
.su-server-score p,
.server-col-title,
.server-xlr-source,
.server-xlr-page-label,
.server-fun-commands-note,
.server-activity-yaxis,
.server-activity-xhint,
.network-core-subtitle,
.network-status-map,
.network-status-players,
.staff-card-head span,
.focus-meta,
.config-row-modal span {
    color: #9db5a5 !important;
    border-color: rgba(120, 145, 129, 0.22) !important;
}

.su-server-insight strong,
.server-col-title,
.server-xlr-main,
.server-xlr-main strong,
.server-xlr-main a,
.server-live-name,
.server-live-name-link,
.network-core-head strong,
.network-status-main strong,
.staff-card-head p,
.focus-head strong,
.config-row-modal strong {
    color: #ebf4ee !important;
}

.server-col-title::after,
.server-fun-commands-head .kicker::after,
.server-activity-head .kicker::after {
    background: linear-gradient(90deg, rgba(111, 154, 127, 0.34), rgba(150, 184, 162, 0.08)) !important;
}

.su-server-score-values span,
.focus-score .su-score-blue,
.focus-score .su-score-red {
    border-color: rgba(137, 164, 148, 0.34) !important;
    color: #e7f2eb !important;
}

.su-server-score-values .su-score-blue,
.server-score-progress-blue,
.focus-score .su-score-blue {
    background: linear-gradient(180deg, rgba(101, 154, 123, 0.44), rgba(72, 119, 93, 0.26)) !important;
}

.su-server-score-values .su-score-red,
.server-score-progress-red,
.focus-score .su-score-red {
    background: linear-gradient(180deg, rgba(130, 90, 90, 0.38), rgba(92, 61, 61, 0.24)) !important;
}

.server-score-leader.is-blue {
    color: #bde4cb !important;
}

.server-score-leader.is-red {
    color: #e4c4c4 !important;
}

.su-map-node-lite,
.server-table-wrap,
.server-table,
.server-table th,
.server-table td,
.bans-table,
.bans-table th,
.bans-table td {
    border-color: rgba(120, 145, 129, 0.2) !important;
}

.su-map-node-lite {
    background: rgba(8, 14, 11, 0.92) !important;
}

.su-map-node-lite small {
    color: #92aa9a !important;
}

.su-map-node-lite strong {
    color: #e7f1eb !important;
}

.su-map-node-lite.is-current {
    border-color: rgba(128, 180, 147, 0.72) !important;
    background-color: rgba(20, 35, 28, 0.84) !important;
    box-shadow:
        inset 0 0 0 1px rgba(128, 180, 147, 0.34),
        0 0 0 1px rgba(72, 122, 93, 0.28),
        0 10px 20px rgba(8, 14, 11, 0.42) !important;
}

.su-map-node-lite:hover {
    border-color: rgba(148, 178, 160, 0.46) !important;
}

.su-map-node-mask {
    background: linear-gradient(180deg, rgba(7, 12, 10, 0.76), rgba(7, 12, 10, 0.92)) !important;
}

.su-map-node-lite.is-current .su-map-node-mask {
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.66), rgba(10, 18, 14, 0.88)) !important;
}

.server-activity-chart {
    border-color: rgba(120, 145, 129, 0.2) !important;
    background:
        linear-gradient(180deg, rgba(18, 31, 24, 0.72), rgba(10, 17, 13, 0.9)),
        repeating-linear-gradient(
            0deg,
            rgba(166, 196, 179, 0.08),
            rgba(166, 196, 179, 0.08) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 24px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 8px
        ) !important;
}

.server-activity-bar {
    background: linear-gradient(180deg, rgba(145, 190, 164, 0.96), rgba(96, 148, 118, 0.9)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(214, 235, 223, 0.18),
        0 0 0 1px rgba(22, 37, 30, 0.14) !important;
}

.server-activity-bar::after {
    border-color: rgba(128, 162, 141, 0.34) !important;
    background: linear-gradient(180deg, rgba(18, 29, 23, 0.98), rgba(10, 16, 13, 0.98)) !important;
    color: #e6f2eb !important;
}

.server-live-player.is-auth {
    border-color: rgba(131, 170, 145, 0.42) !important;
    background: linear-gradient(180deg, rgba(28, 47, 38, 0.86), rgba(18, 31, 24, 0.82)) !important;
    box-shadow: inset 0 0 0 1px rgba(161, 197, 174, 0.16), 0 10px 22px rgba(7, 13, 10, 0.24) !important;
}

.server-live-player:hover {
    border-color: rgba(141, 176, 154, 0.4) !important;
    background: rgba(22, 36, 29, 0.82) !important;
}

.server-live-player::before {
    background: rgba(164, 187, 173, 0.78) !important;
}

.server-live-player.is-blue::before { background: rgba(121, 173, 255, 0.55) !important; }
.server-live-player.is-red::before { background: rgba(255, 143, 143, 0.65) !important; }
.server-live-player.is-spectator::before { background: rgba(188, 199, 222, 0.62) !important; }

.server-live-chip {
    color: #cce0d3 !important;
}

.server-live-k,
.server-live-trend-up {
    color: #b8e4cb !important;
}

.server-live-d,
.server-live-trend-down {
    color: #ebc7c7 !important;
}

.server-table-live tr.is-blue td { background: rgba(84, 128, 105, 0.2) !important; }
.server-table-live tr.is-red td { background: rgba(132, 86, 86, 0.18) !important; }
.server-table-live tr.is-spectator td { background: rgba(138, 152, 143, 0.14) !important; }

/* Full server page lightness pass (still dark, but clearly brighter). */
.hero-server-focus,
.hero-status-embedded,
.server-hero-panel,
.su-server-insight,
.su-server-score,
.server-rotation-box,
.server-col-card,
.server-fun-commands-section,
.server-activity-section,
.su-panel-card-lite,
.focus-panel,
.focus-panel-live,
.network-status-panel,
.network-core-section,
.network-core-card,
.network-status-row,
.server-live-group,
.server-live-player,
.server-auth-tooltip,
.server-xlr-row,
.server-table-wrap,
.server-table,
.bans-table-wrap,
.bans-table {
    background:
        linear-gradient(160deg, rgba(120, 154, 134, 0.1), rgba(18, 28, 23, 0.94) 44%),
        linear-gradient(180deg, rgba(22, 34, 28, 0.96), rgba(16, 25, 20, 0.98)) !important;
}

.hero-server-focus::after,
.hero-status-embedded::after {
    background:
        linear-gradient(90deg, rgba(8, 13, 11, 0.72), rgba(13, 21, 17, 0.48) 45%, rgba(10, 16, 13, 0.72)),
        linear-gradient(180deg, rgba(126, 168, 141, 0.2), rgba(0, 0, 0, 0.14) 26%, rgba(0, 0, 0, 0.4)) !important;
}

.server-hero-panel-title,
.su-server-insight span,
.su-server-score p,
.server-col-title,
.server-xlr-source,
.server-xlr-page-label,
.server-fun-commands-note,
.server-activity-yaxis,
.server-activity-xhint,
.network-core-subtitle,
.network-status-map,
.network-status-players,
.staff-card-head span,
.focus-meta,
.config-row-modal span,
.server-table th,
.bans-table th {
    color: #c7d9ce !important;
}

.su-server-insight strong,
.server-col-title,
.server-xlr-main,
.server-xlr-main strong,
.server-xlr-main a,
.server-live-name,
.server-live-name-link,
.network-core-head strong,
.network-status-main strong,
.staff-card-head p,
.focus-head strong,
.config-row-modal strong,
.server-table td,
.bans-table td {
    color: #f1f7f3 !important;
}

.server-live-view-switch,
.server-live-view-btn,
.server-live-toggle-btn,
.server-live-search,
.tile-server-btn-proxy,
.tile-server-btn-ghost,
.tile-server-btn,
.bans-reason,
.bans-source,
.bans-type,
.server-live-chip {
    background: rgba(28, 42, 34, 0.86) !important;
    border-color: rgba(156, 182, 166, 0.28) !important;
    color: #e7f2eb !important;
}

.server-live-view-btn.is-active,
.server-live-toggle-btn.is-active,
.tile-server-btn:hover,
.tile-server-btn-proxy:hover,
.tile-server-btn-ghost:hover,
.server-live-search:focus,
.server-xlr-row:hover,
.server-live-player:hover,
.network-status-row:hover,
.server-table tbody tr:hover,
.bans-table tbody tr:hover {
    background: rgba(52, 75, 62, 0.9) !important;
    border-color: rgba(162, 194, 175, 0.42) !important;
    color: #f5fbf7 !important;
}

.server-table tbody tr:nth-child(odd),
.bans-table tbody tr:nth-child(odd) {
    background: rgba(34, 49, 41, 0.76) !important;
}

.server-table tbody tr:nth-child(even),
.bans-table tbody tr:nth-child(even) {
    background: rgba(28, 42, 35, 0.88) !important;
}

.server-live-player.is-auth {
    background: linear-gradient(180deg, rgba(42, 67, 53, 0.88), rgba(30, 49, 39, 0.84)) !important;
    border-color: rgba(170, 200, 181, 0.46) !important;
}

.server-activity-chart {
    background:
        linear-gradient(180deg, rgba(30, 48, 38, 0.74), rgba(18, 29, 23, 0.9)),
        repeating-linear-gradient(
            0deg,
            rgba(188, 212, 197, 0.1),
            rgba(188, 212, 197, 0.1) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 24px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.025) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 8px
        ) !important;
}

.server-activity-bar {
    background: linear-gradient(180deg, rgba(178, 214, 193, 0.98), rgba(120, 168, 141, 0.92)) !important;
}

.server-activity-bar::after {
    color: #f2f8f4 !important;
    background: linear-gradient(180deg, rgba(28, 43, 35, 0.98), rgba(18, 28, 23, 0.98)) !important;
    border-color: rgba(162, 194, 175, 0.38) !important;
}

/* Watermark visibility pass for feature cards below heroes */
.snapshot-card::after,
.bans-snapshot-strip .snapshot-card::after,
.rules-snapshot .snapshot-card::after,
.player-snapshot-strip .snapshot-card::after,
.server-snapshot-strip .snapshot-card::after {
    opacity: 0.24 !important;
    filter: brightness(1.15) contrast(1.05);
}

.rules-principle-mark {
    opacity: 0.34 !important;
    filter: brightness(1.12) contrast(1.04);
}

.download-step-watermark {
    opacity: 0.26 !important;
    filter: brightness(1.1) contrast(1.04);
}

/* Default hero contrast pass (non-video heroes) */
.hero-main:not(.hero-main-video) {
    background:
        radial-gradient(circle at 12% 18%, rgba(128, 172, 143, 0.24), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(170, 199, 182, 0.12), transparent 32%),
        linear-gradient(102deg, rgba(113, 156, 128, 0.2), transparent 42%),
        linear-gradient(165deg, rgba(18, 29, 24, 0.98), rgba(11, 18, 14, 0.99)) !important;
}

.hero-main:not(.hero-main-video)::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(94, 143, 115, 0.2) 45%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 30%) !important;
    opacity: 0.96 !important;
}

.hero-main:not(.hero-main-video) h2 {
    color: #f3faf5 !important;
    text-shadow: 0 10px 28px rgba(3, 8, 5, 0.55);
}

.hero-main:not(.hero-main-video) > p {
    color: #dbe9e0 !important;
    text-shadow: 0 2px 8px rgba(4, 10, 7, 0.42);
}

.hero-main:not(.hero-main-video) .kicker {
    color: #b9d6c5 !important;
}

.hero-main:not(.hero-main-video) .kicker::after {
    background: linear-gradient(90deg, rgba(164, 197, 179, 0.46), rgba(182, 209, 194, 0.12)) !important;
}

/* Dual-tone rebalance: green accent + slate-blue surfaces */
:root {
    --su-slate-1: #2f4150;
    --su-slate-2: #3c5568;
    --su-slate-glow: rgba(84, 121, 148, 0.18);
}

body {
    background:
        radial-gradient(circle at 84% -8%, rgba(78, 118, 94, 0.12), transparent 36%),
        radial-gradient(circle at 16% 12%, rgba(73, 107, 133, 0.12), transparent 34%),
        linear-gradient(180deg, #08120e, #0d171c) !important;
}

.sidebar,
.app-shell::before,
.footer-wrap {
    background:
        radial-gradient(circle at 24% 0%, rgba(70, 103, 127, 0.1), transparent 34%),
        radial-gradient(circle at 76% 100%, rgba(88, 124, 101, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(10, 18, 23, 0.98), rgba(8, 14, 18, 0.99)) !important;
}

.snapshot-card,
.global-top-row,
.latest-vote-row,
.home-americas-card,
.home-discord-card,
.network-tile,
.rules-card,
.download-option-card,
.download-step-card,
.focus-panel,
.network-status-panel,
.server-col-card,
.server-hero-panel,
.su-panel-card-lite,
.server-fun-commands-section,
.server-activity-section {
    background:
        linear-gradient(145deg, rgba(72, 106, 131, 0.1), rgba(16, 24, 29, 0.92) 45%),
        linear-gradient(180deg, rgba(16, 25, 30, 0.96), rgba(11, 18, 22, 0.98)) !important;
    border-color: rgba(143, 172, 191, 0.18) !important;
}

.snapshot-card:hover,
.global-top-row:hover,
.latest-vote-row:hover,
.network-tile:hover,
.rules-card:hover {
    background:
        linear-gradient(145deg, rgba(86, 126, 155, 0.14), rgba(19, 30, 37, 0.94) 45%),
        linear-gradient(180deg, rgba(19, 30, 37, 0.98), rgba(13, 22, 27, 0.99)) !important;
    border-color: rgba(165, 194, 211, 0.26) !important;
}

.hero-main:not(.hero-main-video) {
    background:
        radial-gradient(circle at 12% 18%, rgba(116, 162, 135, 0.2), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(96, 137, 165, 0.18), transparent 33%),
        linear-gradient(110deg, rgba(88, 130, 157, 0.16), transparent 46%),
        linear-gradient(165deg, rgba(16, 27, 33, 0.98), rgba(10, 18, 23, 0.99)) !important;
}

.hero-main:not(.hero-main-video)::after,
.hero-main-video::after,
.hero-server-focus::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(90, 129, 156, 0.16) 45%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(112, 161, 133, 0.14), rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.38) 100%) !important;
}

.kicker,
.hero-main:not(.hero-main-video) .kicker,
.hero-impact-word {
    color: #c8e1d4 !important;
}

.hero-main h2,
.hero-main:not(.hero-main-video) h2 {
    color: #f4fbf7 !important;
}

.hero-main > p,
.hero-main:not(.hero-main-video) > p,
.snapshot-card span,
.latest-vote-player,
.latest-vote-server,
.latest-vote-time,
.global-top-server,
.global-top-kills {
    color: #d5e2ea !important;
}

.btn-primary,
.tile-server-btn,
.global-top-more {
    background: linear-gradient(180deg, #8db2a0, #6f9884) !important;
    border-color: #a8c7b6 !important;
}

.btn-ghost,
.tile-server-btn-ghost,
.download-secondary {
    background: linear-gradient(180deg, rgba(29, 42, 52, 0.84), rgba(17, 28, 35, 0.94)) !important;
    border-color: rgba(153, 183, 201, 0.22) !important;
    color: #e6f0f6 !important;
}

.btn-ghost:hover,
.tile-server-btn-ghost:hover,
.download-secondary:hover {
    background: linear-gradient(180deg, rgba(39, 57, 70, 0.9), rgba(24, 39, 49, 0.98)) !important;
    border-color: rgba(174, 203, 220, 0.28) !important;
}

/* Server individual page polish: make blue/red live score clearly readable */
.su-server-score {
    background: linear-gradient(180deg, rgba(20, 30, 38, 0.9), rgba(14, 22, 28, 0.96)) !important;
    border-color: rgba(154, 183, 201, 0.24) !important;
}

.su-server-score p {
    color: #c7d8e4 !important;
}

.su-server-score-values span,
.focus-score .su-score-blue,
.focus-score .su-score-red {
    border-width: 1px !important;
    border-style: solid !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.su-server-score-values .su-score-blue,
.focus-score .su-score-blue,
.tile-score-blue {
    color: #eaf4ff !important;
    border-color: rgba(112, 175, 255, 0.78) !important;
    background: linear-gradient(180deg, rgba(66, 125, 222, 0.62), rgba(43, 86, 162, 0.42)) !important;
    text-shadow: 0 1px 6px rgba(8, 22, 54, 0.44);
}

.su-server-score-values .su-score-red,
.focus-score .su-score-red,
.tile-score-red {
    color: #fff0f0 !important;
    border-color: rgba(255, 136, 136, 0.78) !important;
    background: linear-gradient(180deg, rgba(201, 74, 74, 0.62), rgba(140, 50, 50, 0.42)) !important;
    text-shadow: 0 1px 6px rgba(58, 14, 14, 0.44);
}

.server-score-progress {
    border-color: rgba(160, 188, 206, 0.26) !important;
    background: rgba(10, 16, 21, 0.62) !important;
}

.server-score-progress-blue {
    background: linear-gradient(90deg, rgba(88, 159, 255, 0.98), rgba(126, 186, 255, 0.92)) !important;
}

.server-score-progress-red {
    background: linear-gradient(90deg, rgba(255, 120, 120, 0.96), rgba(255, 156, 156, 0.92)) !important;
}

.server-live-player.is-blue::before {
    background: rgba(103, 168, 255, 0.9) !important;
}

.server-live-player.is-red::before {
    background: rgba(255, 126, 126, 0.9) !important;
}

.server-table-live tr.is-blue td {
    background: rgba(52, 95, 176, 0.2) !important;
}

.server-table-live tr.is-red td {
    background: rgba(158, 66, 66, 0.18) !important;
}

/* Global two-tone pass for all pages: slate surfaces + green accents */
:root {
    --duo-surface-a: rgba(17, 28, 34, 0.96);
    --duo-surface-b: rgba(12, 20, 25, 0.98);
    --duo-tint-slate: rgba(95, 132, 160, 0.12);
    --duo-tint-green: rgba(102, 148, 121, 0.09);
    --duo-border: rgba(150, 181, 199, 0.2);
    --duo-text-main: #edf4f8;
    --duo-text-soft: #c7d6de;
    --duo-text-muted: #9fb4c1;
}

.home-americas-card,
.home-discord-card,
.global-top-row,
.latest-vote-row,
.snapshot-card,
.network-tile,
.rules-card,
.rules-step,
.download-option-card,
.download-step-card,
.bans-table-wrap,
.server-table-wrap,
.server-col-card,
.server-hero-panel,
.server-fun-commands-section,
.server-activity-section,
.su-panel-card-lite,
.staff-card,
.staff-row,
.network-core-section,
.network-core-card,
.network-status-panel,
.network-status-row,
.focus-panel,
.error-detail-card,
.player-forum-card {
    background:
        linear-gradient(150deg, var(--duo-tint-slate), transparent 42%),
        linear-gradient(210deg, var(--duo-tint-green), transparent 50%),
        linear-gradient(180deg, var(--duo-surface-a), var(--duo-surface-b)) !important;
    border-color: var(--duo-border) !important;
}

.global-top-row:hover,
.latest-vote-row:hover,
.network-tile:hover,
.rules-card:hover,
.staff-row:hover,
.network-status-row:hover,
.server-xlr-row:hover,
.server-live-player:hover,
.bans-table tbody tr:hover,
.server-table tbody tr:hover {
    background:
        linear-gradient(150deg, rgba(108, 148, 178, 0.16), transparent 42%),
        linear-gradient(210deg, rgba(116, 165, 136, 0.12), transparent 50%),
        linear-gradient(180deg, rgba(24, 38, 47, 0.98), rgba(16, 27, 33, 0.99)) !important;
    border-color: rgba(175, 204, 220, 0.28) !important;
}

.home-discord-card h3,
.rules-card h3,
.staff-card-head p,
.network-core-head strong,
.network-status-main strong,
.server-col-title,
.server-hero-header h2,
.player-profile-head h2,
.error-detail-card strong,
.bans-player,
.favmap-name,
.server-live-name,
.server-live-name-link,
.server-xlr-main strong,
.server-xlr-main a,
.server-table td,
.bans-table td {
    color: var(--duo-text-main) !important;
}

.home-americas-copy p,
.home-discord-card > p,
.snapshot-card span,
.rules-card p,
.rules-step p,
.download-step-card p,
.network-status-map,
.network-status-players,
.network-core-subtitle,
.server-fun-commands-note,
.server-activity-yaxis,
.server-activity-xhint,
.server-xlr-page-label,
.player-profile-subline,
.player-meta-chip,
.bans-page-info,
.favmap-meta,
.latest-vote-player,
.latest-vote-server,
.latest-vote-time,
.global-top-server,
.global-top-kills,
.server-table th,
.bans-table th {
    color: var(--duo-text-soft) !important;
}

.kicker,
.rules-card-id,
.download-meta-pill,
.hero-impact-word,
.status-pill.pending {
    color: #bfe0cc !important;
}

.kicker::after,
.server-col-title::after,
.server-fun-commands-head .kicker::after,
.server-activity-head .kicker::after {
    background: linear-gradient(90deg, rgba(136, 183, 156, 0.36), rgba(145, 184, 206, 0.18)) !important;
}

.hero-main:not(.hero-main-video),
.hero-server-focus,
.hero-status-embedded,
.hero-player-profile {
    background:
        radial-gradient(circle at 12% 18%, rgba(112, 156, 184, 0.14), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(122, 171, 141, 0.14), transparent 34%),
        linear-gradient(170deg, rgba(18, 30, 38, 0.98), rgba(11, 19, 24, 0.99)) !important;
}

.hero-main:not(.hero-main-video)::after,
.hero-main-video::after,
.hero-server-focus::after,
.hero-status-embedded::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(92, 132, 160, 0.14) 48%, rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(118, 169, 138, 0.12), rgba(0, 0, 0, 0.12) 32%, rgba(0, 0, 0, 0.36)) !important;
}

.hero-main h2,
.hero-main > p,
.hero-main .kicker {
    color: var(--duo-text-main) !important;
}

.hero-main > p {
    color: #d7e5eb !important;
}

.btn-ghost,
.tile-server-btn-ghost,
.server-live-view-btn,
.server-live-toggle-btn,
.server-live-search,
.bans-reason,
.bans-source,
.bans-type,
.server-live-chip {
    background: linear-gradient(180deg, rgba(28, 40, 50, 0.84), rgba(18, 29, 36, 0.94)) !important;
    border-color: rgba(164, 194, 212, 0.24) !important;
    color: #e4edf3 !important;
}

/* Final pass: server individual live score must keep clear blue/red identity */
.hero-server-focus .su-server-score-values .su-score-blue,
.hero-server-focus .tile-score-blue,
.focus-overlay .focus-score .su-score-blue {
    color: #f3f9ff !important;
    border-color: rgba(118, 182, 255, 0.9) !important;
    background: linear-gradient(180deg, rgba(56, 121, 231, 0.78), rgba(34, 77, 162, 0.56)) !important;
    box-shadow: 0 0 0 1px rgba(145, 199, 255, 0.35), 0 6px 18px rgba(28, 73, 156, 0.32) !important;
}

.hero-server-focus .su-server-score-values .su-score-red,
.hero-server-focus .tile-score-red,
.focus-overlay .focus-score .su-score-red {
    color: #fff4f4 !important;
    border-color: rgba(255, 145, 145, 0.9) !important;
    background: linear-gradient(180deg, rgba(212, 79, 79, 0.76), rgba(141, 46, 46, 0.58)) !important;
    box-shadow: 0 0 0 1px rgba(255, 180, 180, 0.32), 0 6px 18px rgba(145, 46, 46, 0.32) !important;
}

.hero-server-focus .server-score-progress {
    background: rgba(9, 15, 22, 0.72) !important;
    border-color: rgba(170, 198, 216, 0.3) !important;
}

.hero-server-focus .server-score-progress-blue {
    background: linear-gradient(90deg, rgba(88, 162, 255, 0.98), rgba(142, 202, 255, 0.96)) !important;
}

.hero-server-focus .server-score-progress-red {
    background: linear-gradient(90deg, rgba(255, 116, 116, 0.98), rgba(255, 167, 167, 0.96)) !important;
}

.hero-server-focus .server-score-leader.is-blue {
    color: #9ed0ff !important;
}

.hero-server-focus .server-score-leader.is-red {
    color: #ffb0b0 !important;
}

.hero-server-focus .server-live-player.is-blue::before {
    background: rgba(110, 176, 255, 0.95) !important;
}

.hero-server-focus .server-live-player.is-red::before {
    background: rgba(255, 134, 134, 0.95) !important;
}

.hero-server-focus .server-table-live tr.is-blue td {
    background: rgba(56, 98, 173, 0.24) !important;
}

.hero-server-focus .server-table-live tr.is-red td {
    background: rgba(166, 68, 68, 0.22) !important;
}

/* Final pass: Fun Commands should match the dark two-tone palette (no legacy pink/blue). */
.server-fun-commands-section {
    border-color: rgba(158, 188, 206, 0.24) !important;
    background:
        linear-gradient(155deg, rgba(96, 137, 166, 0.11), transparent 44%),
        linear-gradient(220deg, rgba(112, 159, 131, 0.1), transparent 56%),
        linear-gradient(180deg, rgba(17, 28, 34, 0.96), rgba(12, 20, 25, 0.98)) !important;
}

.server-fun-commands-note {
    color: #c2d4de !important;
}

.server-fun-command-card {
    border-color: rgba(158, 188, 206, 0.26) !important;
    background:
        linear-gradient(160deg, rgba(102, 145, 176, 0.11), transparent 46%),
        linear-gradient(210deg, rgba(113, 157, 131, 0.08), transparent 58%),
        linear-gradient(180deg, rgba(21, 33, 41, 0.92), rgba(14, 24, 30, 0.97)) !important;
}

.server-fun-command-card:hover,
.server-fun-command-card:focus-within {
    border-color: rgba(176, 205, 220, 0.36) !important;
    background:
        linear-gradient(160deg, rgba(115, 160, 192, 0.14), transparent 44%),
        linear-gradient(210deg, rgba(125, 173, 143, 0.12), transparent 56%),
        linear-gradient(180deg, rgba(26, 41, 51, 0.95), rgba(18, 30, 38, 0.99)) !important;
    box-shadow: inset 0 0 0 1px rgba(173, 203, 220, 0.14) !important;
}

.server-fun-command-icon {
    border-color: rgba(157, 191, 210, 0.3) !important;
    background: radial-gradient(circle at 35% 28%, rgba(118, 167, 199, 0.22), rgba(18, 31, 39, 0.95)) !important;
}

.server-fun-command-copy strong {
    color: #ecf4f9 !important;
}

.server-fun-command-copy p {
    color: #c5d7e2 !important;
}

.server-snapshot-strip .snapshot-card--capper::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M16 12h4l2 8h18v-8h8v40h-8v-16H24l-4 6h-4z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M22 26h18' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.server-snapshot-strip .snapshot-card--capper .snapshot-value {
    font-size: clamp(1rem, 2.1vw, 1.45rem);
}

/* Final pass: cyclemap NEXT state (remove legacy violet, use secondary slate tone). */
.server-cycle-card.is-next {
    border-color: rgba(156, 188, 214, 0.56) !important;
    box-shadow: inset 0 0 0 1px rgba(156, 188, 214, 0.18) !important;
}

.server-cycle-row.is-next {
    border-color: rgba(156, 188, 214, 0.52) !important;
}

.server-cycle-card.is-next .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.46), rgba(8, 14, 24, 0.8)) !important;
}

.server-cycle-card.is-next:hover .server-cycle-card-mask {
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.36), rgba(8, 14, 24, 0.72)) !important;
}

.su-map-node-lite.is-next {
    border-color: rgba(156, 188, 214, 0.56) !important;
    background-color: rgba(24, 38, 52, 0.56) !important;
    box-shadow:
        inset 0 0 0 1px rgba(156, 188, 214, 0.22),
        0 10px 20px rgba(12, 20, 36, 0.36) !important;
}

.su-map-node-lite.is-next .su-map-node-mask {
    background: linear-gradient(180deg, rgba(10, 18, 30, 0.66), rgba(10, 18, 30, 0.88)) !important;
}

/* Final pass: home progress/votes + bans badges/reason colors (restore original coding). */
.hero-home ~ .network-overview .tile-progress-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.38)) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28) !important;
}

.hero-home ~ .network-overview .tile-progress-percent {
    color: rgba(248, 251, 255, 0.9) !important;
}

.latest-votes-section .latest-vote-badge.up {
    border-color: rgba(127, 232, 150, 0.65) !important;
    background: rgba(127, 232, 150, 0.18) !important;
    color: #e3ffe8 !important;
}

.latest-votes-section .latest-vote-badge.down {
    border-color: rgba(255, 124, 124, 0.65) !important;
    background: rgba(255, 124, 124, 0.18) !important;
    color: #ffe4e4 !important;
}

.bans-table .bans-server-pill {
    border-color: rgba(182, 106, 162, 0.42) !important;
    background: rgba(182, 106, 162, 0.12) !important;
    color: #ecd9e7 !important;
}

.bans-table .bans-type {
    border-color: rgba(255, 255, 255, 0.24) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.bans-table .bans-type.ban {
    border-color: rgba(255, 124, 124, 0.72) !important;
    background: rgba(255, 124, 124, 0.18) !important;
    color: #ffe3e3 !important;
}

.bans-table .bans-type.temp {
    border-color: rgba(255, 191, 120, 0.68) !important;
    background: rgba(255, 191, 120, 0.16) !important;
    color: #ffe9cd !important;
}

.bans-table .bans-type.kick {
    border-color: rgba(116, 178, 255, 0.72) !important;
    background: rgba(116, 178, 255, 0.17) !important;
    color: #e0efff !important;
}

.bans-table .bans-source {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #d9e4f8 !important;
}

.bans-table .bans-source.auto {
    border-color: rgba(115, 193, 255, 0.62) !important;
    background: rgba(115, 193, 255, 0.16) !important;
}

.bans-table .bans-source.staff {
    border-color: rgba(255, 164, 214, 0.62) !important;
    background: rgba(255, 164, 214, 0.16) !important;
}

.bans-table .bans-reason {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #ced8eb !important;
}

.bans-table .bans-reason.vpn {
    border-color: rgba(196, 141, 255, 0.62) !important;
    background: rgba(196, 141, 255, 0.15) !important;
}

.bans-table .bans-reason.ping {
    border-color: rgba(121, 203, 255, 0.62) !important;
    background: rgba(121, 203, 255, 0.14) !important;
}

.bans-table .bans-reason.staff {
    border-color: rgba(169, 182, 205, 0.45) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.bans-table .bans-reason .q3-color-0 { color: #111111 !important; }
.bans-table .bans-reason .q3-color-1 { color: #ff4b4b !important; }
.bans-table .bans-reason .q3-color-2 { color: #59ff7a !important; }
.bans-table .bans-reason .q3-color-3 { color: #ffe45c !important; }
.bans-table .bans-reason .q3-color-4 { color: #63a9ff !important; }
.bans-table .bans-reason .q3-color-5 { color: #7be7ff !important; }
.bans-table .bans-reason .q3-color-6 { color: #ff6de1 !important; }
.bans-table .bans-reason .q3-color-7 { color: #f0f4ff !important; }
.bans-table .bans-reason .q3-color-8 { color: #ff934d !important; }
.bans-table .bans-reason .q3-color-9 { color: #a98aff !important; }

/* Final pass: default hero text should pop more on dark backgrounds. */
.hero-main:not(.hero-main-video) .kicker,
.hero-status-embedded .kicker,
.hero-player-profile .kicker {
    color: #d4efe1 !important;
    text-shadow: 0 0 10px rgba(134, 184, 157, 0.28), 0 1px 6px rgba(0, 0, 0, 0.5) !important;
}

.hero-main:not(.hero-main-video) h2,
.hero-status-embedded h2,
.hero-player-profile h2 {
    color: #f7fcff !important;
    text-shadow: 0 0 18px rgba(114, 162, 191, 0.2), 0 2px 14px rgba(0, 0, 0, 0.5) !important;
}

.hero-main:not(.hero-main-video) > p,
.hero-status-embedded > p,
.hero-player-profile > p {
    color: #e1edf4 !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Final reset: right content shell in neutral gray/black (sidebar intentionally unchanged). */
:root {
    --neutral-border: rgba(186, 186, 186, 0.34);
    --neutral-border-hover: rgba(232, 232, 232, 0.5);
    --neutral-text-main: #f2f2f2;
    --neutral-text-soft: #d0d0d0;
    --neutral-card-bg: rgba(36, 36, 36, 0.98);
    --neutral-card-bg-hover: rgba(44, 44, 44, 0.99);
}

.content-area,
.footer-wrap {
    background:
        radial-gradient(circle at 16% 12%, rgba(110, 110, 110, 0.06), transparent 36%),
        radial-gradient(circle at 86% 18%, rgba(82, 82, 82, 0.05), transparent 40%),
        linear-gradient(180deg, #141414, #0e0e0e) !important;
}

.home-americas-card,
.home-discord-card,
.global-top-row,
.latest-vote-row,
.snapshot-card,
.network-tile,
.rules-card,
.rules-step,
.download-option-card,
.download-step-card,
.bans-table-wrap,
.server-table-wrap,
.server-col-card,
.server-hero-panel,
.server-fun-commands-section,
.server-activity-section,
.su-panel-card-lite,
.staff-card,
.staff-row,
.network-core-section,
.network-core-card,
.network-status-panel,
.network-status-row,
.focus-panel,
.error-detail-card,
.player-forum-card {
    background: var(--neutral-card-bg) !important;
    border-color: var(--neutral-border) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34) !important;
}

.global-top-row:hover,
.latest-vote-row:hover,
.network-tile:hover,
.rules-card:hover,
.staff-row:hover,
.network-status-row:hover,
.server-xlr-row:hover,
.server-live-player:hover,
.bans-table tbody tr:hover,
.server-table tbody tr:hover {
    border-color: var(--neutral-border-hover) !important;
    background: var(--neutral-card-bg-hover) !important;
}

.home-discord-card h3,
.rules-card h3,
.staff-card-head p,
.network-core-head strong,
.network-status-main strong,
.server-col-title,
.server-hero-header h2,
.player-profile-head h2,
.error-detail-card strong,
.bans-player,
.favmap-name,
.server-live-name,
.server-live-name-link,
.server-xlr-main strong,
.server-xlr-main a,
.server-table td,
.bans-table td {
    color: var(--neutral-text-main) !important;
}

.home-americas-copy p,
.home-discord-card > p,
.snapshot-card span,
.rules-card p,
.rules-step p,
.download-step-card p,
.network-status-map,
.network-status-players,
.network-core-subtitle,
.server-fun-commands-note,
.server-activity-yaxis,
.server-activity-xhint,
.server-xlr-page-label,
.player-profile-subline,
.player-meta-chip,
.bans-page-info,
.favmap-meta,
.latest-vote-player,
.latest-vote-server,
.latest-vote-time,
.global-top-server,
.global-top-kills,
.server-table th,
.bans-table th {
    color: var(--neutral-text-soft) !important;
}

/* Features blocks: align with sidebar palette */
.snapshot-card,
.rules-snapshot .snapshot-card,
.bans-snapshot-strip .snapshot-card,
.staff-snapshot-strip .snapshot-card,
.server-snapshot-strip .snapshot-card,
.player-snapshot-strip .snapshot-card {
    background:
        linear-gradient(180deg, rgba(13, 17, 24, 0.98), rgba(9, 12, 18, 0.98)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 6px,
            rgba(0, 0, 0, 0) 6px 12px
        ) !important;
    border-color: rgba(214, 231, 220, 0.11) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34) !important;
}

.snapshot-card:hover,
.snapshot-card:focus-within,
.rules-snapshot .snapshot-card:hover,
.bans-snapshot-strip .snapshot-card:hover,
.staff-snapshot-strip .snapshot-card:hover,
.server-snapshot-strip .snapshot-card:hover,
.player-snapshot-strip .snapshot-card:hover {
    background:
        linear-gradient(180deg, rgba(17, 22, 31, 0.99), rgba(12, 16, 24, 0.99)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03) 0 6px,
            rgba(0, 0, 0, 0) 6px 12px
        ) !important;
    border-color: rgba(214, 231, 220, 0.18) !important;
}

.snapshot-card .snapshot-value,
.snapshot-card strong {
    color: #eef5f0 !important;
}

.snapshot-card span {
    color: #9cad9f !important;
}

/* Index server cards: restore dev8 badge colors for mode / awaiting / online. */
.network-overview .network-tile .tile-badge.mode-ctf {
    border-color: rgba(89, 163, 255, 0.6) !important;
    background: rgba(89, 163, 255, 0.18) !important;
    color: #e8f2ff !important;
}

.network-overview .network-tile .tile-badge.activity-awaiting {
    border-color: rgba(255, 186, 114, 0.75) !important;
    background: rgba(255, 186, 114, 0.24) !important;
    color: #ffe9cd !important;
}

.network-overview .network-tile .tile-badge.state-online {
    border-color: rgba(127, 232, 150, 0.75) !important;
    background: rgba(127, 232, 150, 0.2) !important;
    color: #e3ffe8 !important;
}

/* Right pane (after hero/features): same family as sidebar, but lighter. */
:root {
    --panel-side-lite-bg: rgba(20, 26, 36, 0.96);
    --panel-side-lite-surface: rgba(26, 33, 45, 0.98);
    --panel-side-lite-surface-hover: rgba(31, 39, 53, 0.99);
    --panel-side-lite-border: rgba(214, 231, 220, 0.16);
    --panel-side-lite-border-hover: rgba(214, 231, 220, 0.24);
    --panel-side-lite-text-main: #eef5f0;
    --panel-side-lite-text-soft: #aeb9c9;
}

.network-overview,
.latest-votes-section,
.global-top-list,
.home-discord-section,
.bans-filters,
.server-two-col,
.server-fun-commands-section,
.server-activity-section,
.su-server-layout-lite,
.network-core-section,
.network-status-list {
    background: var(--panel-side-lite-bg) !important;
}

.network-tile,
.latest-vote-row,
.global-top-row,
.home-discord-card,
.rules-card,
.rules-step,
.download-option-card,
.download-step-card,
.bans-table-wrap,
.server-table-wrap,
.server-col-card,
.server-fun-command-card,
.server-xlr-row,
.server-live-group,
.server-live-player,
.su-panel-card-lite,
.staff-card,
.staff-row,
.network-core-card,
.network-status-panel,
.network-status-row,
.focus-panel,
.error-detail-card,
.player-forum-card {
    background: var(--panel-side-lite-surface) !important;
    border-color: var(--panel-side-lite-border) !important;
}

.network-tile:hover,
.latest-vote-row:hover,
.global-top-row:hover,
.rules-card:hover,
.staff-row:hover,
.server-xlr-row:hover,
.server-live-player:hover,
.network-status-row:hover,
.bans-table tbody tr:hover,
.server-table tbody tr:hover {
    background: var(--panel-side-lite-surface-hover) !important;
    border-color: var(--panel-side-lite-border-hover) !important;
}

.network-core-head strong,
.network-status-main strong,
.server-col-title,
.server-live-name,
.server-live-name-link,
.server-xlr-main strong,
.server-xlr-main a,
.bans-player,
.server-table td,
.bans-table td {
    color: var(--panel-side-lite-text-main) !important;
}

.network-status-map,
.network-status-players,
.network-core-subtitle,
.server-fun-commands-note,
.server-activity-yaxis,
.server-activity-xhint,
.server-xlr-page-label,
.bans-page-info,
.latest-vote-player,
.latest-vote-server,
.latest-vote-time,
.global-top-server,
.global-top-kills,
.server-table th,
.bans-table th {
    color: var(--panel-side-lite-text-soft) !important;
}

/* Global right-pane harmonization: remove remaining legacy color casts everywhere. */
:root {
    --pane-bg-neutral: rgba(20, 26, 36, 0.96);
    --pane-surface-neutral: rgba(26, 33, 45, 0.98);
    --pane-surface-neutral-hover: rgba(32, 40, 54, 0.99);
    --pane-border-neutral: rgba(214, 231, 220, 0.16);
    --pane-border-neutral-strong: rgba(214, 231, 220, 0.24);
    --pane-text-main-neutral: #eef5f0;
    --pane-text-soft-neutral: #aeb9c9;
}

.app-main .content-area {
    background: var(--pane-bg-neutral) !important;
}

.app-main .content-area .home-americas-card,
.app-main .content-area .home-discord-card,
.app-main .content-area .global-top-row,
.app-main .content-area .latest-vote-row,
.app-main .content-area .snapshot-card,
.app-main .content-area .network-tile,
.app-main .content-area .rules-card,
.app-main .content-area .rules-step,
.app-main .content-area .download-option-card,
.app-main .content-area .download-step-card,
.app-main .content-area .bans-table-wrap,
.app-main .content-area .server-table-wrap,
.app-main .content-area .server-col-card,
.app-main .content-area .server-hero-panel,
.app-main .content-area .server-fun-commands-section,
.app-main .content-area .server-activity-section,
.app-main .content-area .su-panel-card-lite,
.app-main .content-area .staff-card,
.app-main .content-area .staff-row,
.app-main .content-area .network-core-section,
.app-main .content-area .network-core-card,
.app-main .content-area .network-status-panel,
.app-main .content-area .network-status-row,
.app-main .content-area .focus-panel,
.app-main .content-area .error-detail-card,
.app-main .content-area .player-forum-card,
.app-main .content-area .player-forum-preview,
.app-main .content-area .player-forum-code-block textarea,
.app-main .content-area .server-fun-command-card,
.app-main .content-area .server-live-group,
.app-main .content-area .server-live-player,
.app-main .content-area .server-xlr-row {
    background: var(--pane-surface-neutral) !important;
    border-color: var(--pane-border-neutral) !important;
}

.app-main .content-area .global-top-row:hover,
.app-main .content-area .latest-vote-row:hover,
.app-main .content-area .network-tile:hover,
.app-main .content-area .rules-card:hover,
.app-main .content-area .staff-row:hover,
.app-main .content-area .network-status-row:hover,
.app-main .content-area .server-xlr-row:hover,
.app-main .content-area .server-live-player:hover,
.app-main .content-area .bans-table tbody tr:hover,
.app-main .content-area .server-table tbody tr:hover,
.app-main .content-area .server-fun-command-card:hover {
    background: var(--pane-surface-neutral-hover) !important;
    border-color: var(--pane-border-neutral-strong) !important;
}

.app-main .content-area .server-live-view-btn,
.app-main .content-area .server-live-toggle-btn,
.app-main .content-area .server-live-search,
.app-main .content-area .tile-server-btn-ghost,
.app-main .content-area .btn-ghost,
.app-main .content-area .bans-reason,
.app-main .content-area .bans-source,
.app-main .content-area .bans-type,
.app-main .content-area .server-live-chip,
.app-main .content-area .player-meta-link,
.app-main .content-area .player-meta-chip {
    background: rgba(28, 36, 49, 0.9) !important;
    border-color: rgba(214, 231, 220, 0.2) !important;
    color: #e9f1f8 !important;
}

.app-main .content-area .server-live-search:focus,
.app-main .content-area .server-live-view-btn.is-active,
.app-main .content-area .server-live-toggle-btn.is-active,
.app-main .content-area .tile-server-btn-ghost:hover,
.app-main .content-area .btn-ghost:hover {
    background: rgba(36, 46, 62, 0.95) !important;
    border-color: rgba(214, 231, 220, 0.28) !important;
}

.app-main .content-area .home-discord-card h3,
.app-main .content-area .rules-card h3,
.app-main .content-area .staff-card-head p,
.app-main .content-area .network-core-head strong,
.app-main .content-area .network-status-main strong,
.app-main .content-area .server-col-title,
.app-main .content-area .server-hero-header h2,
.app-main .content-area .player-profile-head h2,
.app-main .content-area .error-detail-card strong,
.app-main .content-area .bans-player,
.app-main .content-area .favmap-name,
.app-main .content-area .server-live-name,
.app-main .content-area .server-live-name-link,
.app-main .content-area .server-xlr-main strong,
.app-main .content-area .server-xlr-main a,
.app-main .content-area .server-table td,
.app-main .content-area .bans-table td,
.app-main .content-area .snapshot-card .snapshot-value,
.app-main .content-area .snapshot-card strong {
    color: var(--pane-text-main-neutral) !important;
}

.app-main .content-area .home-americas-copy p,
.app-main .content-area .home-discord-card > p,
.app-main .content-area .snapshot-card span,
.app-main .content-area .rules-card p,
.app-main .content-area .rules-step p,
.app-main .content-area .download-step-card p,
.app-main .content-area .network-status-map,
.app-main .content-area .network-status-players,
.app-main .content-area .network-core-subtitle,
.app-main .content-area .server-fun-commands-note,
.app-main .content-area .server-activity-yaxis,
.app-main .content-area .server-activity-xhint,
.app-main .content-area .server-xlr-page-label,
.app-main .content-area .player-profile-subline,
.app-main .content-area .bans-page-info,
.app-main .content-area .favmap-meta,
.app-main .content-area .latest-vote-player,
.app-main .content-area .latest-vote-server,
.app-main .content-area .latest-vote-time,
.app-main .content-area .global-top-server,
.app-main .content-area .global-top-kills,
.app-main .content-area .server-table th,
.app-main .content-area .bans-table th {
    color: var(--pane-text-soft-neutral) !important;
}

/* BANS final lock: keep badges + reason colors exactly like dev8. */
.app-main .content-area .bans-table .bans-server-pill {
    border-color: rgba(182, 106, 162, 0.42) !important;
    background: rgba(182, 106, 162, 0.12) !important;
    color: #ecd9e7 !important;
}

.app-main .content-area .bans-table .bans-type {
    border-color: rgba(255, 255, 255, 0.24) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.app-main .content-area .bans-table .bans-type.ban {
    border-color: rgba(255, 124, 124, 0.72) !important;
    background: rgba(255, 124, 124, 0.18) !important;
    color: #ffe3e3 !important;
}

.app-main .content-area .bans-table .bans-type.temp {
    border-color: rgba(255, 191, 120, 0.68) !important;
    background: rgba(255, 191, 120, 0.16) !important;
    color: #ffe9cd !important;
}

.app-main .content-area .bans-table .bans-type.kick {
    border-color: rgba(116, 178, 255, 0.72) !important;
    background: rgba(116, 178, 255, 0.17) !important;
    color: #e0efff !important;
}

.app-main .content-area .bans-table .bans-source {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #d9e4f8 !important;
}

.app-main .content-area .bans-table .bans-source.auto {
    border-color: rgba(115, 193, 255, 0.62) !important;
    background: rgba(115, 193, 255, 0.16) !important;
}

.app-main .content-area .bans-table .bans-source.staff {
    border-color: rgba(255, 164, 214, 0.62) !important;
    background: rgba(255, 164, 214, 0.16) !important;
}

.app-main .content-area .bans-table .bans-reason {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #ced8eb !important;
}

.app-main .content-area .bans-table .bans-reason.vpn {
    border-color: rgba(196, 141, 255, 0.62) !important;
    background: rgba(196, 141, 255, 0.15) !important;
}

.app-main .content-area .bans-table .bans-reason.ping {
    border-color: rgba(121, 203, 255, 0.62) !important;
    background: rgba(121, 203, 255, 0.14) !important;
}

.app-main .content-area .bans-table .bans-reason.staff {
    border-color: rgba(169, 182, 205, 0.45) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.app-main .content-area .bans-table .bans-reason .q3-color-0 { color: #111111 !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-1 { color: #ff4b4b !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-2 { color: #59ff7a !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-3 { color: #ffe45c !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-4 { color: #63a9ff !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-5 { color: #7be7ff !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-6 { color: #ff6de1 !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-7 { color: #f0f4ff !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-8 { color: #ff934d !important; }
.app-main .content-area .bans-table .bans-reason .q3-color-9 { color: #a98aff !important; }

/* Footer final lock: remove legacy tones and align with right-pane palette. */
.app-main .footer-wrap {
    background: rgba(20, 26, 36, 0.96) !important;
    border-top-color: rgba(214, 231, 220, 0.16) !important;
    color: #aeb9c9 !important;
}

.app-main .footer-wrap .footer-badge {
    border-color: rgba(214, 231, 220, 0.2) !important;
    background: rgba(28, 36, 49, 0.9) !important;
    color: #e9f1f8 !important;
}

/* BANS row backgrounds final lock: remove any remaining legacy green lines. */
.app-main .content-area .bans-table {
    background: rgba(26, 33, 45, 0.98) !important;
    border-color: rgba(214, 231, 220, 0.16) !important;
}

.app-main .content-area .bans-table th,
.app-main .content-area .bans-table td {
    border-bottom-color: rgba(214, 231, 220, 0.12) !important;
}

.app-main .content-area .bans-table tbody tr,
.app-main .content-area .bans-table tbody tr:nth-child(odd),
.app-main .content-area .bans-table tbody tr:nth-child(even) {
    background: rgba(26, 33, 45, 0.98) !important;
}

.app-main .content-area .bans-table tbody tr:hover {
    background: rgba(32, 40, 54, 0.99) !important;
}

/* Default heroes final accent: punchier and clearly distinct from the global palette. */
:root {
    --hero-default-accent: #f3b36a;
    --hero-default-accent-strong: #ffd39a;
}

.hero-main:not(.hero-main-video),
.hero-status-embedded,
.hero-player-profile {
    background:
        radial-gradient(circle at 14% 16%, rgba(243, 179, 106, 0.18), transparent 32%),
        radial-gradient(circle at 82% 10%, rgba(255, 211, 154, 0.12), transparent 38%),
        linear-gradient(170deg, rgba(20, 24, 31, 0.99), rgba(12, 15, 21, 0.99)) !important;
}

.hero-main:not(.hero-main-video) .kicker,
.hero-status-embedded .kicker,
.hero-player-profile .kicker,
.hero-main:not(.hero-main-video) .hero-impact-word {
    color: var(--hero-default-accent) !important;
    text-shadow: 0 0 12px rgba(243, 179, 106, 0.34), 0 1px 8px rgba(0, 0, 0, 0.54) !important;
}

.hero-main:not(.hero-main-video) h2,
.hero-status-embedded h2,
.hero-player-profile h2 {
    color: #fff7ee !important;
    text-shadow: 0 0 22px rgba(255, 211, 154, 0.22), 0 2px 16px rgba(0, 0, 0, 0.58) !important;
}

.hero-main:not(.hero-main-video) > p,
.hero-status-embedded > p,
.hero-player-profile > p {
    color: #f0dfc9 !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.52) !important;
}
