/* boost-cs.ro inspired theme — green accent, dashboard layout */

body.platform-page {
    --boost-blue: #4d9fff;
    --boost-green: #3dff7a;
    --boost-accent: #3dff7a;
    --boost-text: #f0f0f0;
    --boost-muted: #8a8f98;
    --boost-panel: #141414;
    --boost-line: rgba(255, 255, 255, 0.07);
    background: #080808;
    font-family: "Chakra Petch", system-ui, sans-serif;
}

body.platform-page .platform-bg__orb,
body.platform-page .platform-bg__beam,
body.platform-page .platform-bg__canvas {
    display: none;
}

body.platform-page .platform-bg__base {
    background: #080808;
}

body.platform-page .platform-bg__grid {
    opacity: 0.12;
    background-size: 64px 64px;
}

/* ── Nav ── */
.platform-nav {
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--boost-line);
    backdrop-filter: blur(12px);
}

.platform-nav__logo {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid rgba(61, 255, 122, 0.35);
    color: var(--boost-green);
    box-shadow: 0 0 16px rgba(61, 255, 122, 0.15);
}

.platform-nav__name small {
    color: var(--boost-muted);
}

.platform-nav__menu {
    gap: 4px;
}

.platform-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--boost-muted);
    border: none;
    background: transparent;
    transition: color 0.15s, background 0.15s;
}

.platform-nav__link svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.platform-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.platform-nav__link.is-active {
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.08);
    box-shadow: inset 0 -2px 0 var(--boost-green);
}

.platform-nav__link.is-active svg {
    opacity: 1;
    color: var(--boost-green);
}

.platform-nav__cta,
.platform-nav__cta--bar {
    background: var(--boost-green);
    color: #041208;
    border: none;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(61, 255, 122, 0.25);
}

.platform-nav__cta:hover {
    background: #5dff8a;
}

.platform-nav__contact {
    position: relative;
}

.platform-nav__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--boost-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--boost-text);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.platform-nav__contact-btn:hover,
.platform-nav__contact.is-open .platform-nav__contact-btn {
    border-color: rgba(61, 255, 122, 0.45);
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.08);
}

.platform-nav__contact-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 120;
    min-width: 240px;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid var(--boost-line);
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.platform-nav__contact-panel[hidden] {
    display: none;
}

.platform-nav__contact-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.platform-nav__contact-item:hover {
    background: rgba(61, 255, 122, 0.08);
}

.platform-nav__contact-item--static {
    cursor: default;
}

.platform-nav__contact-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.platform-nav__contact-value {
    font-size: 0.82rem;
    color: var(--boost-text);
}

.platform-nav__contact-value.mono {
    font-family: "IBM Plex Mono", monospace;
}

.platform-nav__contact--menu {
    display: none;
}

.platform-nav__contact--bar {
    display: block;
}

@media (max-width: 1024px) {
    .platform-nav__contact--bar {
        display: none;
    }

    .platform-nav__contact--menu {
        display: block;
        width: 100%;
    }

    .platform-nav__contact--menu .platform-nav__contact-btn {
        width: 100%;
        justify-content: center;
    }

    .platform-nav__contact--menu .platform-nav__contact-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }
}

.platform-main {
    padding-bottom: 48px;
}

/* ── Dashboard hub ── */
.bcs-hub {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 16px 0;
}

/* window + carousel */
.bcs-window {
    background: #111;
    border: 1px solid var(--boost-line);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bcs-window__chrome {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--boost-line);
    background: #0d0d0d;
}

.bcs-window__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.bcs-window__chrome span:nth-child(1) { background: #ff5f57; }
.bcs-window__chrome span:nth-child(2) { background: #febc2e; }
.bcs-window__chrome span:nth-child(3) { background: #28c840; }

.bcs-window__bar {
    display: flex;
    gap: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--boost-line);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bcs-window__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--boost-muted);
}

.bcs-window__tab.is-active {
    color: var(--boost-green);
}

.bcs-window__tab.is-active i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--boost-green);
    box-shadow: 0 0 8px var(--boost-green);
}

.bcs-window__tab--add {
    color: #fff;
    text-decoration: none;
}

.bcs-window__tab--add:hover {
    color: var(--boost-green);
}

.bcs-carousel {
    display: flex;
    gap: 12px;
    padding: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.bcs-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--boost-line);
    background: #1a1a1a;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
}

.bcs-card:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 255, 122, 0.35);
}

.bcs-card__map {
    width: 100%;
    height: 90px;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
}

.bcs-card__status {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
}

.bcs-card__status.is-on {
    background: var(--boost-green);
    box-shadow: 0 0 8px var(--boost-green);
}

.bcs-card__body {
    padding: 10px 12px 12px;
}

.bcs-card__name {
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bcs-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: var(--boost-muted);
    margin-bottom: 4px;
}

.bcs-card__ip {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.58rem;
    color: var(--boost-blue);
    margin-bottom: 8px;
}

.bcs-card__connect {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-green);
}

.bcs-card--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: linear-gradient(135deg, #161616, #0f0f0f);
    border-style: dashed;
}

.bcs-card__cta {
    text-align: center;
    padding: 16px;
}

.bcs-card__cta h3 {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bcs-card__cta p {
    font-size: 0.65rem;
    color: var(--boost-muted);
    margin-bottom: 10px;
}

/* hero */
.bcs-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 4px 2px;
}

.bcs-hero__icon {
    width: 52px;
    height: 52px;
    color: var(--boost-green);
    flex-shrink: 0;
}

.bcs-hero__icon svg {
    width: 100%;
    height: 100%;
}

.bcs-hero__title {
    font-size: clamp(1.2rem, 2.8vw, 1.85rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.bcs-hero__slash {
    color: var(--boost-muted);
    font-weight: 400;
}

.bcs-hero__count {
    color: var(--boost-blue);
}

.bcs-hero__suffix {
    font-weight: 700;
    color: #fff;
}

.bcs-hero__lead {
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--boost-muted);
    max-width: 640px;
}

/* charts row */
.bcs-charts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.bcs-chart-panel {
    background: #111;
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    padding: 14px 14px 10px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.bcs-chart-panel__head h2 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: capitalize;
}

.bcs-chart-panel__head h2 span {
    color: var(--boost-blue);
}

.bcs-chart-panel__head small {
    display: block;
    font-size: 0.62rem;
    color: var(--boost-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bcs-chart-panel__box {
    flex: 1;
    min-height: 200px;
    margin-top: 8px;
    position: relative;
}

/* promo strip */
.bcs-promo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(61, 255, 122, 0.08), rgba(77, 159, 255, 0.06));
    border: 1px solid rgba(61, 255, 122, 0.2);
}

.bcs-promo__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    background: rgba(61, 255, 122, 0.15);
    color: var(--boost-green);
    border: 1px solid rgba(61, 255, 122, 0.3);
}

.bcs-promo__text {
    flex: 1;
    min-width: 200px;
}

.bcs-promo__text h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.bcs-promo__text p {
    font-size: 0.78rem;
    color: var(--boost-muted);
}

.bcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.bcs-btn--green {
    background: var(--boost-green);
    color: #041208;
    box-shadow: 0 0 24px rgba(61, 255, 122, 0.3);
}

.bcs-btn--green:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(61, 255, 122, 0.45);
}

/* boosts table */
.bcs-section {
    margin-bottom: 28px;
}

.bcs-section--boosts-table + .bcs-section--boosts-table {
    margin-top: 8px;
}

.bcs-section--boosts-table .bcs-section__head h2 {
    letter-spacing: 0.06em;
}

.bcs-section__head h2 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bcs-section__head--center {
    text-align: center;
    margin-bottom: 16px;
}

.bcs-table-wrap {
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.bcs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.bcs-table th {
    text-align: left;
    padding: 12px 14px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-muted);
    background: #0d0d0d;
    border-bottom: 1px solid var(--boost-line);
}

.bcs-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--boost-line);
    vertical-align: middle;
}

.bcs-table tr:last-child td {
    border-bottom: none;
}

.bcs-table tr:hover td {
    background: rgba(61, 255, 122, 0.03);
}

.bcs-table__server strong {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.bcs-table__server .mono {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    color: var(--boost-blue);
}

.bcs-evidence {
    color: var(--boost-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.72rem;
}

.bcs-evidence:hover {
    text-decoration: underline;
}

.bcs-online {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
}

.bcs-table__empty {
    text-align: center;
    color: var(--boost-muted);
    padding: 32px !important;
}

/* ── Current boosts table (boost-cs grid) ── */
.bcs-boosts-wrap {
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #111;
}

.bcs-boosts {
    min-width: 920px;
}

.bcs-boosts--votable {
    min-width: 980px;
}

.bcs-boosts--votable .bcs-boosts__head,
.bcs-boosts--votable .bcs-boosts__row {
    grid-template-columns: 36px minmax(260px, 2.4fr) minmax(90px, 0.65fr) minmax(120px, 0.85fr) minmax(76px, 0.5fr) minmax(170px, 1fr);
}

.bcs-boosts__head,
.bcs-boosts__row {
    display: grid;
    grid-template-columns: minmax(200px, 2fr) minmax(100px, 0.7fr) minmax(160px, 1fr) minmax(76px, 0.5fr) minmax(130px, 0.8fr);
    align-items: center;
    gap: 10px 14px;
    padding: 12px 16px;
}

.bcs-boosts__cell {
    min-width: 0;
    overflow: hidden;
}

.bcs-boosts__head {
    background: #0d0d0d;
    border-bottom: 1px solid var(--boost-line);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.bcs-boosts__head span:nth-child(4),
.bcs-boosts--votable .bcs-boosts__head span:nth-child(5) {
    text-align: center;
}

.bcs-boosts__head span:nth-child(5),
.bcs-boosts--votable .bcs-boosts__head span:nth-child(6) {
    text-align: right;
}

.bcs-boosts__row {
    border-bottom: 1px solid var(--boost-line);
    transition: background 0.15s;
}

.bcs-boosts__row:last-child {
    border-bottom: none;
}

.bcs-boosts__row:hover {
    background: rgba(61, 255, 122, 0.03);
}

.bcs-boosts__empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--boost-muted);
    font-size: 0.8rem;
}

.bcs-boosts__cell--online {
    text-align: center;
}

.bcs-boosts__cell--ends {
    text-align: right;
}

.bcs-boosts-server-link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.bcs-boosts-server-link:hover {
    background: rgba(61, 255, 122, 0.06);
}

.bcs-boosts-server-link:hover .bcs-boosts-name {
    color: #6dff9a;
}

.bcs-boosts-ip {
    color: #94a3b8;
}

.bcs-boosts-map-btn {
    position: relative;
    display: block;
    width: 40px;
    height: 30px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.bcs-boosts-map-btn .bcs-boosts-map-ph,
.bcs-boosts-map-btn img {
    width: 40px;
    height: 30px;
    border-radius: 4px;
}

.bcs-boosts-map-reveal {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.1;
    color: #fff;
    background: rgba(0, 0, 0, 0.78);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.bcs-boosts-map-btn.is-revealed .bcs-boosts-map-reveal,
.bcs-boosts-map-btn:hover .bcs-boosts-map-reveal {
    opacity: 1;
}

.bcs-boosts-buy {
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 6px 10px;
}

.bcs-boosts-server {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bcs-boosts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(68, 68, 68, 0.35);
}

.bcs-boosts-dot.is-on {
    background: var(--boost-green);
    box-shadow: 0 0 8px rgba(61, 255, 122, 0.65);
}

.bcs-boosts-icon {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(61, 255, 122, 0.55), rgba(61, 255, 122, 0.2));
    border: 1px solid rgba(61, 255, 122, 0.35);
}

.bcs-boosts-icon--bronze {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.65), rgba(217, 119, 6, 0.25));
    border-color: rgba(217, 119, 6, 0.45);
}

.bcs-boosts-icon--platinum {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(56, 189, 248, 0.2));
    border-color: rgba(56, 189, 248, 0.35);
}

.bcs-boosts-icon--diamond {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.55), rgba(251, 191, 36, 0.2));
    border-color: rgba(251, 191, 36, 0.35);
}

.bcs-boosts-server__text {
    min-width: 0;
    flex: 1;
}

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

.bcs-boosts-name-row .bcs-boosts-name {
    flex: 0 1 auto;
    min-width: 0;
}

.bcs-boosts-tier {
    flex-shrink: 0;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.1);
}

.bcs-boosts-tier--bronze {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.12);
}

.bcs-boosts-tier--platinum {
    color: #bae6fd;
    border-color: rgba(186, 230, 253, 0.35);
    background: rgba(186, 230, 253, 0.08);
}

.bcs-boosts-tier--diamond {
    color: #fde68a;
    border-color: rgba(253, 230, 138, 0.4);
    background: rgba(253, 230, 138, 0.1);
}

.bcs-boosts-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--boost-green);
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.25;
    word-break: break-word;
}

.bcs-boosts-name--pending {
    color: var(--boost-muted);
}

.bcs-boosts__cell--rank {
    text-align: center;
}

.bcs-boosts-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fbbf24;
}

.bcs-boosts-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.bcs-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.08);
    color: #fcd34d;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.bcs-vote-btn:hover:not(:disabled) {
    background: rgba(251, 191, 36, 0.16);
    border-color: rgba(251, 191, 36, 0.7);
}

.bcs-vote-btn.is-voted,
.bcs-vote-btn:disabled {
    opacity: 0.72;
    cursor: default;
}

.bcs-vote-btn.is-cooldown {
    max-width: 170px;
}

.bcs-vote-btn.is-cooldown .bcs-vote-btn__label {
    white-space: normal;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.58rem;
    font-weight: 700;
    text-align: left;
}

.bcs-vote-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    padding: 1px 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.62rem;
    font-weight: 800;
    color: #fff;
}

.bcs-boosts__row--listing .bcs-boosts-server {
    gap: 8px;
}

.bcs-boosts-addr {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    font-size: 0.65rem;
    color: #e2e8f0;
}

.bcs-boosts-addr .evidence-flag {
    flex-shrink: 0;
}

.bcs-boosts-map {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.bcs-boosts-map img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--boost-line);
    flex-shrink: 0;
}

.bcs-boosts-map span {
    font-size: 0.74rem;
    color: #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.bcs-boosts-delivered-pill {
    display: inline-flex;
    align-items: stretch;
    max-width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(56, 189, 248, 0.08);
}

.bcs-boosts-delivered-count {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #7dd3fc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.bcs-boosts-evidence-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    text-decoration: none;
    white-space: nowrap;
}

.bcs-boosts-evidence-btn:hover {
    filter: brightness(1.08);
}

.bcs-boosts-online {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-family: "IBM Plex Mono", monospace;
    white-space: nowrap;
}

.bcs-boosts-online-num {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
}

.bcs-boosts-online-max {
    color: var(--boost-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.bcs-boosts-ends {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.1);
    border: 1px solid rgba(61, 255, 122, 0.28);
    white-space: nowrap;
}

.bcs-boosts-ends--permanent {
    color: #fff;
    background: linear-gradient(135deg, rgba(61, 255, 122, 0.35), rgba(61, 255, 122, 0.15));
    border-color: rgba(61, 255, 122, 0.45);
}

.bcs-section__foot {
    margin-top: 10px;
    text-align: right;
}

.bcs-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--boost-green);
    text-decoration: none;
}

/* about */
.bcs-about__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bcs-about__card {
    padding: 20px;
    border-radius: 12px;
    background: #111;
    border: 1px solid var(--boost-line);
}

.bcs-about__card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--boost-green);
}

.bcs-about__card p {
    font-size: 0.78rem;
    color: var(--boost-muted);
    line-height: 1.55;
}

/* shop sections restyled */
.boost-hub--shop .boost-section__label,
.bcs-hub .boost-section__label {
    color: var(--boost-green);
}

.boost-hub--shop .boost-hero__title span,
.bcs-hub .boost-hero__title span {
    background: linear-gradient(135deg, var(--boost-green), #7dffb0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.boost-btn--primary,
.platform-action--primary {
    background: var(--boost-green) !important;
    color: #041208 !important;
    border-color: transparent !important;
    box-shadow: 0 0 24px rgba(61, 255, 122, 0.28) !important;
}

.boost-btn--ghost,
.platform-action {
    border-color: rgba(61, 255, 122, 0.22) !important;
}

.boost-btn--ghost:hover {
    border-color: rgba(61, 255, 122, 0.4) !important;
    box-shadow: 0 0 20px rgba(61, 255, 122, 0.1) !important;
}

.boost-plan:hover {
    border-color: rgba(61, 255, 122, 0.25) !important;
}

/* footer */
.platform-foot {
    border-top: 1px solid var(--boost-line);
    background: #0a0a0a;
    padding: 32px 0 24px;
}

.platform-foot__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    font-size: 0.78rem;
    color: var(--boost-muted);
}

.platform-foot__brand strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.platform-foot__col h4 {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.platform-foot__col a {
    display: block;
    color: var(--boost-muted);
    text-decoration: none;
    margin-bottom: 6px;
}

.platform-foot__col a:hover {
    color: var(--boost-green);
}

.platform-foot__copy {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--boost-line);
    font-size: 0.68rem;
    text-align: center;
}

.platform-nav__banner {
    display: block;
    height: 28px;
    width: auto;
}

.platform-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.platform-nav__mascot {
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.platform-nav__wordmark {
    font-family: "Chakra Petch", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
}

.platform-nav__wordmark-boost {
    color: #f4f4f5;
}

.platform-nav__wordmark-cs {
    color: var(--boost-green);
}

.platform-nav__logo,
.platform-nav__name {
    display: none;
}

/* ── Evidence page (boost-cs style) ── */
.bcs-ev-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 4px 2px;
}

.bcs-ev-head__icon {
    width: 42px;
    height: 42px;
    color: var(--boost-green);
    flex-shrink: 0;
}

.bcs-ev-head__icon svg { width: 100%; height: 100%; }

.bcs-ev-head__title {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 900;
    text-transform: uppercase;
}

.bcs-ev-head__sub {
    font-size: 0.78rem;
    color: var(--boost-muted);
    margin-top: 4px;
}

.bcs-ev-head__picker {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
}

.bcs-ev-pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--boost-muted);
    border: 1px solid var(--boost-line);
    background: #111;
    text-decoration: none;
}

.bcs-ev-pill.is-active,
.bcs-ev-pill:hover {
    color: var(--boost-green);
    border-color: rgba(61, 255, 122, 0.35);
    background: rgba(61, 255, 122, 0.08);
}

.bcs-ev-date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 0.72rem;
}

.bcs-ev-date label { color: var(--boost-muted); }

.bcs-ev-date input[type="date"] {
    background: #111;
    border: 1px solid var(--boost-line);
    border-radius: 6px;
    color: #fff;
    padding: 6px 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
}

.bcs-btn--xs {
    padding: 7px 14px;
    font-size: 0.62rem;
}

.bcs-btn--sm {
    padding: 9px 14px;
    font-size: 0.68rem;
}

.bcs-charts--evidence { margin-bottom: 16px; }

.bcs-ev-live {
    background: #111;
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    overflow: hidden;
}

.bcs-ev-live__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--boost-line);
    background: #0d0d0d;
}

.bcs-ev-live__titles h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bcs-ev-live__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.1);
    border: 1px solid rgba(61, 255, 122, 0.28);
}

.bcs-ev-live__badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--boost-green);
    box-shadow: 0 0 8px rgba(61, 255, 122, 0.8);
    animation: bcs-ev-pulse 1.8s ease-in-out infinite;
}

@keyframes bcs-ev-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.bcs-ev-live__titles p {
    font-size: 0.68rem;
    color: var(--boost-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bcs-ev-live__count {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--boost-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--boost-line);
}

.bcs-ev-feed {
    min-width: 640px;
    overflow-x: auto;
}

.bcs-ev-feed__head,
.bcs-ev-feed__row {
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) minmax(120px, 0.8fr) minmax(160px, 1.1fr) minmax(110px, 0.7fr);
    align-items: center;
    gap: 10px 14px;
    padding: 11px 16px;
}

.bcs-ev-feed--server .bcs-ev-feed__head,
.bcs-ev-feed--server .bcs-ev-feed__row {
    grid-template-columns: minmax(200px, 1.6fr) minmax(130px, 0.9fr) minmax(110px, 0.75fr);
}

.bcs-ev-feed__head {
    background: #0a0a0a;
    border-bottom: 1px solid var(--boost-line);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.bcs-ev-feed__head span:last-child,
.bcs-ev-feed__cell--time {
    text-align: right;
}

.bcs-ev-feed__body {
    overflow-x: auto;
}

.bcs-ev-feed__row {
    border-bottom: 1px solid var(--boost-line);
    transition: background 0.15s;
}

.bcs-ev-feed__row:last-child {
    border-bottom: none;
}

.bcs-ev-feed__row:hover {
    background: rgba(61, 255, 122, 0.03);
}

.bcs-ev-player {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bcs-ev-player__avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.1);
    border: 1px solid rgba(61, 255, 122, 0.25);
}

.bcs-ev-player__body {
    min-width: 0;
    flex: 1;
}

.bcs-ev-player__name {
    display: block;
    font-weight: 700;
    color: #f8fafc;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcs-ev-player__bar {
    display: block;
    margin-top: 6px;
    height: 3px;
    width: 100%;
    max-width: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.bcs-ev-player__bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(61, 255, 122, 0.45), var(--boost-green));
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(61, 255, 122, 0.35);
}

.bcs-ev-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--boost-line);
    white-space: nowrap;
}

.bcs-ev-country-pill .evidence-flag {
    flex-shrink: 0;
}

.bcs-ev-server-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--boost-green);
}

.bcs-ev-server-tag span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcs-ev-server-tag__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--boost-green);
    box-shadow: 0 0 8px rgba(61, 255, 122, 0.65);
}

.bcs-ev-time {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #cbd5e1;
    white-space: nowrap;
}

.bcs-ev-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--boost-muted);
    background: #111;
    border: 1px solid var(--boost-line);
    border-radius: 12px;
}

.evidence-flag {
    border-radius: 2px;
    flex-shrink: 0;
}

.evidence-flag--empty {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .bcs-ev-date {
        margin-left: 0;
        width: 100%;
    }
    .bcs-ev-feed {
        min-width: 0;
    }

    .bcs-ev-feed__head,
    .bcs-ev-feed__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bcs-ev-feed--server .bcs-ev-feed__head,
    .bcs-ev-feed--server .bcs-ev-feed__row {
        grid-template-columns: 1fr;
    }

    .bcs-ev-feed__head {
        display: none;
    }

    .bcs-ev-feed__row {
        padding: 14px 16px;
    }

    .bcs-ev-feed__cell--time {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .bcs-charts {
        grid-template-columns: 1fr;
    }
    .bcs-about__grid {
        grid-template-columns: 1fr;
    }
    .platform-foot__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .bcs-boosts-wrap {
        overflow-x: visible;
    }

    .bcs-boosts {
        min-width: 0;
    }

    .bcs-boosts__head {
        display: none;
    }

    .bcs-boosts__row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "server server"
            "map online"
            "delivered delivered"
            "ends ends";
        gap: 12px;
        padding: 14px 16px;
        overflow: visible;
    }

    .bcs-boosts--votable .bcs-boosts__row {
        grid-template-columns: 36px 1fr 1fr;
        grid-template-areas:
            "rank server server"
            "map map online"
            "delivered delivered delivered"
            "ends ends ends";
    }

    .bcs-boosts__cell--rank {
        grid-area: rank;
    }

    .bcs-boosts-rank {
        font-size: 1rem;
    }

    .bcs-boosts-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .bcs-boosts__cell {
        overflow: visible;
    }

    .bcs-boosts__cell::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 6px;
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--boost-muted);
    }

    .bcs-boosts__cell--server {
        grid-area: server;
    }

    .bcs-boosts__cell--server::before {
        display: none;
    }

    .bcs-boosts__cell--map {
        grid-area: map;
    }

    .bcs-boosts__cell--online {
        grid-area: online;
        text-align: right !important;
    }

    .bcs-boosts__cell--delivered {
        grid-area: delivered;
    }

    .bcs-boosts__cell--ends {
        grid-area: ends;
        text-align: left !important;
    }

    .bcs-boosts-delivered-pill {
        display: flex;
        width: 100%;
    }

    .bcs-boosts-delivered-count {
        flex: 1;
        min-width: 0;
    }

    .bcs-boosts-evidence-btn {
        flex-shrink: 0;
    }

    .bcs-boosts-online {
        justify-content: flex-end;
    }

    .bcs-boosts-name {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 768px) {
    .bcs-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    .bcs-promo {
        flex-direction: column;
        align-items: flex-start;
    }
    .bcs-table-wrap {
        overflow-x: auto;
    }
    .bcs-table {
        min-width: 640px;
    }
}

/* ── Buy page (/buy.php) ── */
.bcs-buy-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.bcs-buy-head__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(61, 255, 122, 0.1);
    border: 1px solid rgba(61, 255, 122, 0.25);
    color: var(--boost-green);
    flex-shrink: 0;
}

.bcs-buy-head__icon svg {
    width: 22px;
    height: 22px;
}

.bcs-buy-head__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.bcs-buy-head__title span {
    color: var(--boost-green);
}

.bcs-buy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
    align-items: start;
    margin-bottom: 40px;
}

.bcs-buy-panel {
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    padding: 22px 24px;
}

.bcs-buy-panel__title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--boost-muted);
    margin: 0 0 18px;
}

.bcs-buy-panel__sub {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--boost-muted);
    margin: 20px 0 12px;
}

.bcs-buy-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bcs-buy-field label,
.bcs-buy-field-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--boost-muted);
    margin-bottom: 6px;
}

.bcs-buy-field input,
.bcs-buy-field textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid var(--boost-line);
    background: rgba(0, 0, 0, 0.35);
    color: var(--boost-text);
    font-family: inherit;
    font-size: 0.88rem;
}

.bcs-buy-field input:focus,
.bcs-buy-field textarea:focus {
    outline: none;
    border-color: rgba(61, 255, 122, 0.45);
    box-shadow: 0 0 0 2px rgba(61, 255, 122, 0.12);
}

.bcs-buy-field--wide {
    grid-column: 1 / -1;
}

.bcs-buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bcs-buy-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.bcs-buy-plan {
    display: block;
    cursor: pointer;
}

.bcs-buy-plan input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bcs-buy-plan__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--boost-line);
    background: rgba(0, 0, 0, 0.25);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    height: 100%;
}

.bcs-buy-plan:hover .bcs-buy-plan__body {
    border-color: rgba(61, 255, 122, 0.35);
}

.bcs-buy-plan input:checked + .bcs-buy-plan__body {
    border-color: var(--boost-green);
    background: rgba(61, 255, 122, 0.08);
    box-shadow: 0 0 0 1px rgba(61, 255, 122, 0.2);
}

.bcs-buy-plan--featured .bcs-buy-plan__body {
    border-color: rgba(61, 255, 122, 0.3);
}

.bcs-buy-plan__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.bcs-buy-plan__top strong {
    font-size: 0.82rem;
    color: #fff;
}

.bcs-buy-plan__price {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--boost-green);
    white-space: nowrap;
}

.bcs-buy-plan__desc {
    font-size: 0.72rem;
    color: var(--boost-muted);
    line-height: 1.4;
}

.bcs-buy-plan__meta {
    font-size: 0.68rem;
    color: #6b7280;
}

.bcs-buy-addon {
    margin: 4px 0;
}

.bcs-buy-total {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(61, 255, 122, 0.06);
    border: 1px solid rgba(61, 255, 122, 0.2);
}

.bcs-buy-total > span:first-child {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.bcs-buy-total > strong {
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.25rem;
    color: var(--boost-green);
    margin-right: auto;
}

.bcs-buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.bcs-btn--lg {
    padding: 14px 24px;
    font-size: 0.78rem;
}

.bcs-btn--ghost {
    background: transparent;
    border: 1px solid var(--boost-line);
    color: var(--boost-text);
}

.bcs-btn--ghost:hover {
    border-color: rgba(61, 255, 122, 0.4);
    color: var(--boost-green);
}

.boost-pay--buy {
    margin-bottom: 0;
}

.bcs-buy-side__card {
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: calc(var(--header-h, 64px) + 16px);
}

.bcs-buy-side__card h3 {
    font-size: 0.95rem;
    margin: 0 0 14px;
    color: #fff;
}

.bcs-buy-side__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcs-buy-side__list li {
    font-size: 0.8rem;
    color: var(--boost-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
}

.bcs-buy-side__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--boost-green);
    box-shadow: 0 0 8px rgba(61, 255, 122, 0.5);
}

.bcs-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--boost-green);
    text-decoration: none;
}

.bcs-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .bcs-buy-layout {
        grid-template-columns: 1fr;
    }
    .bcs-buy-side__card {
        position: static;
    }
}

@media (max-width: 640px) {
    .bcs-buy-grid {
        grid-template-columns: 1fr;
    }
    .bcs-buy-plans {
        grid-template-columns: 1fr;
    }
}

/* ── Servers page (/clients.php) ── */
.bcs-srv-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 24px;
    margin-bottom: 22px;
}

.bcs-srv-head__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(61, 255, 122, 0.1);
    border: 1px solid rgba(61, 255, 122, 0.25);
    color: var(--boost-green);
    flex-shrink: 0;
}

.bcs-srv-head__icon svg {
    width: 22px;
    height: 22px;
}

.bcs-srv-head__text {
    flex: 1;
    min-width: 220px;
}

.bcs-srv-head__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.bcs-srv-head__title span {
    color: var(--boost-green);
}

.bcs-srv-head__sub {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--boost-muted);
    max-width: 640px;
    line-height: 1.5;
}

.bcs-srv-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.bcs-srv-stat {
    min-width: 100px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
    text-align: center;
}

.bcs-srv-stat strong {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 4px;
}

.bcs-srv-stat span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.bcs-srv-stat--live strong {
    color: var(--boost-green);
}

.bcs-srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.bcs-srv-empty {
    grid-column: 1 / -1;
    padding: 40px 20px;
    text-align: center;
    color: var(--boost-muted);
    border-radius: 12px;
    border: 1px dashed var(--boost-line);
    background: rgba(255, 255, 255, 0.02);
}

.bcs-srv-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--boost-panel);
    border: 1px solid var(--boost-line);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.bcs-srv-card:hover {
    border-color: rgba(61, 255, 122, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.bcs-srv-card--platinum,
.bcs-srv-card--diamond {
    border-color: rgba(61, 255, 122, 0.22);
}

.bcs-srv-card__map {
    position: relative;
    display: block;
    height: 120px;
    overflow: hidden;
    text-decoration: none;
    background: #000;
}

.bcs-srv-card__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.25s, opacity 0.25s;
}

.bcs-srv-card:hover .bcs-srv-card__map img {
    transform: scale(1.04);
    opacity: 1;
}

.bcs-srv-card__map-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}

.bcs-srv-card__status {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.72);
    color: var(--boost-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bcs-srv-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.25);
}

.bcs-srv-card__status.is-online {
    color: var(--boost-green);
    border-color: rgba(61, 255, 122, 0.25);
}

.bcs-srv-card__status.is-online i {
    background: var(--boost-green);
    box-shadow: 0 0 10px rgba(61, 255, 122, 0.6);
}

.bcs-srv-card__body {
    padding: 14px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.bcs-srv-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bcs-srv-card__tier {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.08);
}

.bcs-srv-card--bronze .bcs-srv-card__tier {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.35);
    background: rgba(217, 119, 6, 0.08);
}

.bcs-srv-card--platinum .bcs-srv-card__tier {
    color: #e5e7eb;
    border-color: rgba(229, 231, 235, 0.3);
    background: rgba(229, 231, 235, 0.06);
}

.bcs-srv-card__sub {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--boost-muted);
    border: 1px solid var(--boost-line);
}

.bcs-srv-card__name {
    margin: 2px 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    word-break: break-word;
}

.bcs-srv-card__tagline {
    margin: 0;
    font-size: 0.78rem;
    color: var(--boost-muted);
    line-height: 1.4;
}

.bcs-srv-card__addr {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: var(--boost-green);
}

.bcs-srv-card__dates {
    margin: 0;
    font-size: 0.68rem;
    color: #6b7280;
}

.bcs-srv-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 16px;
}

.bcs-srv-card__actions .bcs-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    text-align: center;
}

.bcs-srv-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(61, 255, 122, 0.1), rgba(61, 255, 122, 0.02));
    border: 1px solid rgba(61, 255, 122, 0.2);
}

.bcs-srv-cta h2 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #fff;
}

.bcs-srv-cta p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--boost-muted);
    max-width: 520px;
}

@media (max-width: 768px) {
    .bcs-srv-stats {
        width: 100%;
        margin-left: 0;
    }

    .bcs-srv-stat {
        flex: 1;
        min-width: 0;
    }

    .bcs-srv-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile navigation (loaded last — overrides shop.css) ── */
.platform-nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    flex-shrink: 0;
    place-items: center;
    gap: 0;
}

.platform-nav__toggle span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 3px auto;
    background: #cbd5e1;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .platform-nav {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .platform-nav__shell {
        position: relative;
        width: calc(100% - 16px);
        min-height: 52px;
        padding: 6px 0;
        flex-wrap: nowrap;
    }

    .platform-nav__brand {
        min-width: 0;
        flex: 1;
    }

    .platform-nav__actions {
        flex-shrink: 0;
        gap: 6px;
    }

    .platform-nav__cta--bar,
    .platform-nav__contact--bar {
        display: none !important;
    }

    .platform-nav__toggle {
        display: grid;
    }

    .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(8, 8, 8, 0.98);
        border-bottom: 1px solid rgba(61, 255, 122, 0.2);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        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__cta {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .platform-nav__contact--menu {
        display: block;
        width: 100%;
    }

    .platform-nav__contact--menu .platform-nav__contact-btn {
        width: 100%;
        justify-content: center;
    }

    .platform-nav__contact--menu .platform-nav__contact-panel {
        position: static;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
    }
}

/* tracker page */
.bcs-tracker .boost-hero__title {
    max-width: 18ch;
}

.bcs-tracker-form {
    padding: 18px;
    border-radius: 14px;
    background: rgba(8, 10, 14, 0.82);
    border: 1px solid var(--boost-line);
}

.bcs-tracker-form__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 12px;
}

.bcs-tracker-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bcs-tracker-form__field span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-muted);
}

.bcs-tracker-form__actions {
    margin-top: 14px;
}

.bcs-tracker-form__error {
    margin-top: 10px;
    color: #ff7a7a;
    font-size: 0.82rem;
}

.bcs-tracker__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.bcs-tracker__pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--boost-green);
    background: rgba(61, 255, 122, 0.08);
    border: 1px solid rgba(61, 255, 122, 0.22);
}

.bcs-tracker__pill--muted {
    color: var(--boost-muted);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--boost-line);
}

.bcs-tracker__banner-wrap {
    margin-bottom: 18px;
}

.bcs-tracker__banner-wrap .reds-map-card {
    width: 100%;
    max-width: none;
}

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

.bcs-tracker__embed-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(8, 10, 14, 0.82);
    border: 1px solid var(--boost-line);
}

.bcs-tracker__embed-card h3 {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--boost-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bcs-tracker__embed-preview {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #050607;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bcs-tracker__code {
    width: 100%;
    min-height: 72px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    line-height: 1.45;
    resize: vertical;
}

.bcs-tracker__hint {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: var(--boost-muted);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .bcs-tracker-form__grid,
    .bcs-tracker__embeds {
        grid-template-columns: 1fr;
    }
}

/* GameTracker listings (/gametracker.php) */
.bcs-gt-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.bcs-gt-head__title { margin: 0; font-size: clamp(1.4rem, 3vw, 2rem); }
.bcs-gt-head__title span { color: var(--boost-accent, #38bdf8); }
.bcs-gt-head__sub { margin: 6px 0 0; color: var(--boost-muted); max-width: 52ch; }
.bcs-gt-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 20px; margin-bottom: 28px; }
.bcs-gt-panel, .bcs-gt-preview { padding: 18px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.bcs-gt-panel__title { margin: 0 0 14px; font-size: 1rem; }
.bcs-gt-form__group { margin-bottom: 12px; }
.bcs-gt-form__label { display: block; margin-bottom: 6px; font-size: 0.78rem; color: var(--boost-muted); }
.bcs-gt-form__input { width: 100%; box-sizing: border-box; }
.bcs-gt-form__hint { margin: 6px 0 0; font-size: 0.72rem; color: var(--boost-muted); }
.bcs-gt-presets { display: flex; flex-wrap: wrap; gap: 8px; }
.bcs-gt-preset { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); background: transparent; color: inherit; cursor: pointer; }
.bcs-gt-preset__swatch { width: 28px; height: 14px; border-radius: 4px; background: linear-gradient(90deg, var(--bg) 0 55%, var(--bar) 55% 100%); border: 1px solid rgba(255,255,255,0.15); }
.bcs-gt-colors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bcs-gt-color-row { display: flex; gap: 8px; align-items: center; }
.bcs-gt-color-picker { width: 42px; height: 34px; padding: 0; border: none; background: none; }
.bcs-gt-form__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bcs-gt-alert { margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; font-size: 0.85rem; }
.bcs-gt-alert--ok { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35); }
.bcs-gt-alert--error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.35); }
.bcs-gt-preview__box { min-height: 140px; display: flex; align-items: stretch; justify-content: center; padding: 16px; border-radius: 10px; background: #050607; border: 1px dashed rgba(255,255,255,0.08); overflow: hidden; }
.bcs-gt-preview__box.has-banner { padding: 12px; border-style: solid; }
.bcs-gt-preview__box .reds-map-card { margin: 0 auto; }
.bcs-gt-preview__live { margin: 8px 0 0; text-align: center; }
.bcs-gt-preview__placeholder { margin: 0; color: var(--boost-muted); font-size: 0.82rem; text-align: center; }
.bcs-gt-embed { margin-top: 14px; }
.bcs-gt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.bcs-gt-card { padding: 14px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.bcs-gt-card.is-online { border-color: rgba(16,185,129,0.35); }
.bcs-gt-card__top { display: flex; gap: 12px; justify-content: space-between; margin-bottom: 12px; }
.bcs-gt-card__name { margin: 0 0 4px; font-size: 0.95rem; }
.bcs-gt-card__addr, .bcs-gt-card__status { margin: 0; font-size: 0.75rem; color: var(--boost-muted); }
.bcs-gt-card__map { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; }
.bcs-gt-card__banner { margin-bottom: 12px; overflow: auto; }
.bcs-gt-card__actions { display: flex; flex-wrap: wrap; gap: 8px; }

.bcs-card__map--ph,
.bcs-boosts-map-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(16, 185, 129, 0.06)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 8px, rgba(255,255,255,0.01) 8px 16px);
    border: 1px solid rgba(255,255,255,0.06);
}

.bcs-card__map-ph-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
}

.bcs-card--pending { opacity: 0.96; }

.bcs-carousel-empty {
    padding: 24px;
    color: var(--boost-muted);
    font-size: 0.9rem;
}

.bcs-boosts-map { position: relative; min-height: 30px; width: 40px; }

.bcs-boosts-map-btn .bcs-boosts-map-ph {
    min-height: 30px;
    width: 40px;
    height: 30px;
}

.bcs-boosts-map__img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--boost-line);
    display: block;
}

@media (max-width: 960px) {
    .bcs-gt-layout, .bcs-gt-colors { grid-template-columns: 1fr; }
}
