/* boostcs16 evidence — standalone platform page (no shop theme.css) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body.platform-page {
    min-height: 100vh;
    font-family: "Exo 2", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #eef2ff;
    background: #05070c;
    -webkit-font-smoothing: antialiased;
}

/* ── Platform background ── */
.platform-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.platform-bg__base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(14, 165, 233, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 20%, rgba(56, 189, 248, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 45% at 0% 80%, rgba(2, 132, 199, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(52, 211, 153, 0.06), transparent 50%),
        linear-gradient(180deg, #060912 0%, #05070c 40%, #070a12 100%);
}

.platform-bg__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 20%, transparent 75%);
}

.platform-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.platform-bg__orb--1 {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 165, 233, 0.35);
    animation: platformOrbDrift1 18s ease-in-out infinite;
}

.platform-bg__orb--2 {
    width: min(380px, 70vw);
    height: min(380px, 70vw);
    top: 35%;
    right: -8%;
    background: rgba(56, 189, 248, 0.22);
    animation: platformOrbDrift2 22s ease-in-out infinite;
}

.platform-bg__orb--3 {
    width: min(320px, 60vw);
    height: min(320px, 60vw);
    bottom: 5%;
    left: -6%;
    background: rgba(52, 211, 153, 0.14);
    animation: platformOrbDrift3 20s ease-in-out infinite;
}

.platform-bg__beam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.12) 30%, rgba(56, 189, 248, 0.04) 60%, transparent);
    opacity: 0.6;
}

.platform-bg__beam::before,
.platform-bg__beam::after {
    content: "";
    position: absolute;
    top: 0;
    width: 280px;
    height: 55%;
    opacity: 0.12;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.25), transparent);
    filter: blur(2px);
}

.platform-bg__beam::before {
    right: 0;
    transform: skewX(-18deg);
    transform-origin: top right;
}

.platform-bg__beam::after {
    left: 0;
    transform: skewX(18deg);
    transform-origin: top left;
}

.platform-bg__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.platform-bg__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 45%, rgba(5, 7, 12, 0.55) 100%),
        linear-gradient(180deg, rgba(5, 7, 12, 0.35) 0%, transparent 18%, transparent 82%, rgba(5, 7, 12, 0.5) 100%);
}

@keyframes platformOrbDrift1 {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-48%) translateY(24px) scale(1.06); }
}

@keyframes platformOrbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.08); }
}

@keyframes platformOrbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(16px, -20px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .platform-bg__orb { animation: none; }
    .platform-bg__canvas { display: none; }
}

@media (max-width: 768px) {
    .platform-bg__grid { background-size: 36px 36px; opacity: 0.28; }
    .platform-bg__orb { filter: blur(60px); opacity: 0.45; }
    .platform-bg__beam { display: none; }
}

.platform-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.platform-main { flex: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: "IBM Plex Mono", monospace; }

/* ── Platform nav (masterboost-style) ── */
.platform-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 8, 14, 0.96);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.platform-nav__inner {
    width: min(1320px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 62px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.platform-nav__bar {
    width: min(1320px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 58px;
    padding: 8px 0;
}

.platform-nav__shell {
    width: min(1320px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 58px;
    padding: 8px 0;
}

.platform-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.platform-nav__menu-extras {
    display: none;
}

.platform-nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.platform-nav__logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1rem;
    color: #041018;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.platform-nav__name {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.platform-nav__name small {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #64748b;
    text-transform: uppercase;
}

.platform-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    flex-wrap: wrap;
}

.platform-nav__link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    transition: color 0.2s, background 0.2s;
}

.platform-nav__link:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
}

.platform-nav__link.is-active {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.22);
}

.platform-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.platform-nav__wa {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.08);
}

.platform-nav__wa:hover {
    background: rgba(52, 211, 153, 0.14);
}

.platform-nav__cta {
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #041018;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.platform-nav__cta:hover {
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.5);
}

.lang-switch {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch__btn {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #64748b;
}

.lang-switch__btn.is-active {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
}

.lang-switch__btn:hover { color: #cbd5e1; }

/* footer */
.platform-foot {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.35);
    padding: 20px 0;
    margin-top: auto;
}

.platform-foot__inner {
    width: min(1320px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    color: #64748b;
}

/* ── Hub content ── */
.boost-hub {
    --boost-panel: #0f1219;
    --boost-panel-2: #141925;
    --boost-line: rgba(255, 255, 255, 0.07);
    --boost-blue: #38bdf8;
    --boost-blue-dim: rgba(56, 189, 248, 0.14);
    --boost-gold: #fbbf24;
    --boost-gold-glow: rgba(251, 191, 36, 0.35);
    --boost-green: #34d399;
    --boost-text: #eef2ff;
    --boost-muted: #8b95a8;
    --boost-tier: var(--boost-blue);
    padding: 22px 0 48px;
}

.boost-hub__inner {
    width: min(1320px, calc(100% - 24px));
    margin: 0 auto;
}

.boost-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
}

.boost-toolbar__back {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--boost-muted);
}

.boost-toolbar__back:hover { color: var(--boost-blue); }

.boost-toolbar__title {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--boost-blue);
}

.boost-toolbar__live,
.boost-toolbar__off {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 11px;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.boost-toolbar__live {
    color: var(--boost-green);
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.28);
}

.boost-toolbar__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--boost-green);
    box-shadow: 0 0 8px var(--boost-green);
    animation: boostPulse 2s infinite;
}

.boost-toolbar__off {
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.22);
}

@keyframes boostPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

/* server card */
.boost-server {
    --boost-tier: var(--boost-blue);
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 290px;
    gap: 0;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
}

.boost-server--bronze { --boost-tier: #d97706; }
.boost-server--platinum { --boost-tier: #e5e7eb; }
.boost-server--diamond { --boost-tier: #fbbf24; }

.boost-server--diamond,
.boost-server--platinum {
    border-color: color-mix(in srgb, var(--boost-tier) 38%, transparent);
    box-shadow: 0 0 32px var(--boost-gold-glow);
}

.boost-server__map {
    position: relative;
    min-height: 150px;
    background: #000;
    border-right: 1px solid var(--boost-line);
}

.boost-server__map img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.boost-server__map-label {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.boost-server__players {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--boost-green);
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.boost-server__main {
    padding: 18px 20px;
    border-right: 1px solid var(--boost-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.boost-server__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.boost-tag {
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--boost-line);
    color: var(--boost-muted);
}

.boost-tag--tier {
    color: var(--boost-tier);
    border-color: color-mix(in srgb, var(--boost-tier) 35%, transparent);
    background: color-mix(in srgb, var(--boost-tier) 10%, transparent);
}

.boost-tag--steam {
    color: var(--boost-blue);
    border-color: rgba(56, 189, 248, 0.28);
    background: var(--boost-blue-dim);
}

.boost-tag--live {
    color: var(--boost-green);
    border-color: rgba(52, 211, 153, 0.28);
    background: rgba(52, 211, 153, 0.08);
}

.boost-server__name {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.12;
    margin-bottom: 6px;
}

.boost-server__tagline {
    font-size: 0.84rem;
    color: var(--boost-muted);
    margin-bottom: 12px;
}

.boost-server__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.boost-server__addr-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--boost-muted);
    margin-bottom: 3px;
}

.boost-server__addr strong {
    font-size: 0.88rem;
    color: var(--boost-green);
}

.boost-server__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.boost-server__side {
    padding: 16px;
    background: var(--boost-panel-2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.boost-server__banner .gt-banner { margin: 0 auto; max-width: 100%; }

.boost-server__sub {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 10px;
    border-top: 1px solid var(--boost-line);
    font-size: 0.74rem;
    color: var(--boost-muted);
}

.boost-server__sub-label {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.boost-server__sub strong { color: var(--boost-text); font-size: 0.84rem; }

/* buttons */
.boost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.boost-btn--primary {
    color: #041018;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.boost-btn--join {
    color: #041018;
    background: linear-gradient(135deg, #059669, #34d399);
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.25);
}

.boost-btn--ghost {
    color: var(--boost-blue);
    background: transparent;
    border-color: rgba(56, 189, 248, 0.35);
}

.boost-btn--ghost:hover { background: var(--boost-blue-dim); }

.boost-btn--sm { padding: 8px 12px; font-size: 0.62rem; }

.boost-btn--block { width: 100%; }

/* stats */
.boost-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--boost-line);
    background: var(--boost-line);
}

.boost-stats__item {
    padding: 16px 18px;
    background: var(--boost-panel);
    text-align: center;
}

.boost-stats__item strong {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--boost-blue);
    margin-bottom: 4px;
}

.boost-stats__item span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.boost-stats__item--accent strong { color: var(--boost-gold); }

/* layout */
.boost-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.boost-aside { display: flex; flex-direction: column; gap: 12px; }

.boost-main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }

/* panels */
.boost-panel {
    border-radius: 10px;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
    padding: 16px;
}

.boost-panel--chart { padding-bottom: 6px; }

.boost-panel--cta {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.07), var(--boost-panel));
    border-color: rgba(56, 189, 248, 0.16);
}

.boost-panel--cta p {
    font-size: 0.8rem;
    color: var(--boost-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.boost-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--boost-line);
}

.boost-panel__title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.boost-panel__sub {
    font-size: 0.76rem;
    color: var(--boost-muted);
}

.boost-panel__pill {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--boost-green);
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.22);
    white-space: nowrap;
}

.boost-panel__updated {
    font-size: 0.64rem;
    color: var(--boost-muted);
}

.boost-panel__empty {
    font-size: 0.8rem;
    color: var(--boost-muted);
    line-height: 1.55;
}

.boost-filter label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--boost-muted);
    margin-bottom: 8px;
}

.boost-filter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.boost-filter input[type="date"] {
    flex: 1;
    min-width: 120px;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid var(--boost-line);
    background: rgba(0, 0, 0, 0.35);
    color: var(--boost-text);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
}

.boost-countries {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boost-countries__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.boost-countries__head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.boost-countries__head strong { color: var(--boost-blue); font-size: 0.8rem; }

.boost-countries__bar {
    height: 4px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    overflow: hidden;
    margin-bottom: 3px;
}

.boost-countries__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    min-width: 3px;
}

.boost-countries__item small {
    font-size: 0.62rem;
    color: var(--boost-muted);
    text-transform: uppercase;
}

.boost-chart {
    height: 260px;
    padding: 4px;
}

.boost-chart canvas {
    width: 100% !important;
    height: 100% !important;
}

/* connection rows */
.boost-rows {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-height: 520px;
    overflow-y: auto;
    border-radius: 8px;
    background: var(--boost-line);
}

.boost-row {
    display: grid;
    grid-template-columns: 48px 26px minmax(0, 1fr) 50px auto;
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    background: var(--boost-panel-2);
}

.boost-row:hover { background: #171d2a; }

.boost-row__type {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 5px 3px;
    border-radius: 5px;
    color: var(--boost-blue);
    background: var(--boost-blue-dim);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.boost-row__info { min-width: 0; }

.boost-row__info strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.boost-row__ip {
    display: block;
    font-size: 0.68rem;
    color: var(--boost-green);
}

.boost-row__country {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--boost-muted);
}

.boost-row__time {
    font-size: 0.64rem;
    color: var(--boost-muted);
    white-space: nowrap;
    text-align: right;
}

.evidence-flag {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.evidence-flag--empty {
    font-size: 0.85rem;
    opacity: 0.75;
}

.boost-empty {
    padding: 48px 20px;
    text-align: center;
    border-radius: 10px;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
}

.boost-empty h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.boost-empty p {
    color: var(--boost-muted);
    margin-bottom: 16px;
}

.boost-empty--inline,
.boost-empty--rows {
    padding: 32px 16px;
    margin-bottom: 14px;
}

.boost-empty--rows {
    border: none;
    background: transparent;
}

@media (max-width: 1050px) {
    .boost-server { grid-template-columns: 150px minmax(0, 1fr); }
    .boost-server__side { grid-column: 1 / -1; border-top: 1px solid var(--boost-line); }
    .boost-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .platform-nav {
        position: sticky;
    }

    .platform-nav__shell {
        width: calc(100% - 16px);
        min-height: 52px;
        padding: 6px 0;
        flex-wrap: nowrap;
    }

    .platform-nav__brand {
        min-width: 0;
        flex: 1;
    }

    .platform-nav__name small {
        display: none;
    }

    .platform-nav__name {
        font-size: 0.82rem;
    }

    .platform-nav__actions {
        flex-shrink: 0;
        gap: 6px;
    }

    .platform-nav__wa--bar,
    .platform-nav__cta--bar {
        display: none;
    }

    .platform-nav__toggle {
        display: grid;
        place-items: center;
    }

    .platform-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px 12px 12px;
        background: rgba(6, 8, 14, 0.98);
        border-bottom: 1px solid rgba(56, 189, 248, 0.15);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
        z-index: 101;
    }

    .platform-nav.is-open .platform-nav__menu {
        display: flex;
    }

    .platform-nav__menu .platform-nav__link {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
    }

    .platform-nav__menu-extras {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .platform-nav__menu-extras .platform-nav__wa,
    .platform-nav__menu-extras .platform-nav__cta {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .lang-switch__btn {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
}

@media (max-width: 720px) {
    .platform-nav__links { display: none; }
    .boost-server { grid-template-columns: 1fr; }
    .boost-server__map { border-right: none; border-bottom: 1px solid var(--boost-line); }
    .boost-server__main { border-right: none; border-bottom: 1px solid var(--boost-line); }
    .boost-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .boost-row { grid-template-columns: 42px 22px minmax(0, 1fr); }
    .boost-row__country, .boost-row__time { grid-column: 3; text-align: left; }
}

@media (max-width: 480px) {
    .boost-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .boost-stats__item { padding: 12px 10px; }
    .boost-stats__item strong { font-size: 1.1rem; }
    .platform-nav__wa { display: inline-flex; }
}
