/* ================================================================
   MVP HUB CSS — battle-mvp.blog  v2.0
   Design: identical to battle-mvp.online (header, sidebar, cards)
   Tokens match bmvp-design.css + header.css + sidebar.css
   ================================================================ */

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { display: block; }

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg:          #050b12;
    --bg2:         #060e18;
    --bg3:         #06111d;
    --card:        rgba(255,255,255,.025);
    --card2:       rgba(255,255,255,.04);
    --elevated:    rgba(255,255,255,.055);

    /* Borders */
    --b0:  rgba(255,255,255,.04);
    --b1:  rgba(255,255,255,.07);
    --b2:  rgba(255,255,255,.12);

    /* Accent green */
    --accent:        #00ffa6;
    --accent-dim:    rgba(0,255,166,.12);
    --accent-glow:   rgba(0,255,166,.20);
    --accent-border: rgba(0,255,166,.25);

    /* Accent blue */
    --blue:        #00d8ff;
    --blue-dim:    rgba(0,216,255,.12);

    /* Text */
    --t1: #e8f4ff;
    --t2: #c8dde9;
    --t3: #5b7a8a;
    --t4: #2a3f4f;

    /* Status */
    --live:     #ff4444;
    --live-dim: rgba(255,68,68,.10);
    --warn:     #ffb800;
    --success:  #22c55e;
    --red:      #ff5050;

    /* Layout */
    --hdr-h:   56px;
    --sb-w:    240px;

    /* Radius */
    --r-xs: 4px;
    --r-sm: 6px;
    --r:    10px;
    --r-lg: 14px;

    /* Fonts */
    --font:     'Inter', system-ui, sans-serif;
    --font-num: 'Rajdhani', 'Inter', sans-serif;
}

/* ── BASE ───────────────────────────────────────────────────────── */
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--t1);
    min-height: 100vh;
    line-height: 1.5;
    font-size: 14px;
}

/* ================================================================
   HEADER — identical structure to battle-mvp.online
   ================================================================ */
.bmHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--hdr-h);
    background: #06111d;
    border-bottom: 1px solid rgba(0,255,166,.10);
    box-shadow: 0 1px 0 rgba(0,255,166,.06), 0 4px 20px rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
}

.bmHeader__inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left */
.bmHeader__left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

/* Logo */
.bmHeader__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--t1);
    font-weight: 700;
}
.bmHeader__logo-mark {
    font-size: 18px;
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(0,255,166,.5));
    line-height: 1;
}
.bmHeader__logo-text {
    font-family: var(--font-num);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .08em;
}
.bmHeader__logo-accent {
    color: var(--accent);
    margin-left: 2px;
}
.bmHeader__logo-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--t4);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-left: 4px;
    align-self: flex-end;
    margin-bottom: 2px;
    padding: 2px 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--b1);
    border-radius: 4px;
}

/* Nav */
.bmHeader__nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.bmHeader__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--t2);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .15s, background .15s;
    position: relative;
}
.bmHeader__nav-link svg { flex-shrink: 0; }
.bmHeader__nav-link:hover {
    color: var(--t1);
    background: rgba(255,255,255,.05);
}
.bmHeader__nav-link.active {
    color: var(--accent);
    background: var(--accent-dim);
}
.bmHeader__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
}

/* Center: search */
.bmHeader__center {
    flex: 1;
    max-width: 380px;
    margin: 0 24px;
}
.bmHeader__search {
    position: relative;
    width: 100%;
}
.bmHeader__search-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--t3);
    pointer-events: none;
    font-size: 15px;
}
.bmHeader__search-input {
    width: 100%;
    height: 34px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--b1);
    border-radius: 8px;
    color: var(--t1);
    font-family: var(--font);
    font-size: 13px;
    padding: 0 70px 0 34px;
    outline: none;
    transition: border-color .2s, background .2s;
}
.bmHeader__search-input::placeholder { color: var(--t3); }
.bmHeader__search-input:focus {
    border-color: var(--accent-border);
    background: rgba(0,255,166,.03);
}
.bmHeader__search-kbd {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--t4);
    background: rgba(255,255,255,.06);
    border: 1px solid var(--b1);
    border-radius: 4px;
    padding: 1px 6px;
    white-space: nowrap;
}

/* Right */
.bmHeader__right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.bmHeader__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--b1);
    color: var(--t2);
    transition: color .15s, border-color .15s;
    cursor: pointer;
    position: relative;
}
.bmHeader__icon-btn:hover {
    color: var(--t1);
    border-color: rgba(0,255,166,.2);
}

/* Steam button */
.bmHeader__steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, #24df92, #00d8ff);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #001a0f;
    white-space: nowrap;
    transition: opacity .15s, transform .12s;
    letter-spacing: .02em;
}
.bmHeader__steam-btn:hover { opacity: .9; transform: translateY(-1px); }

/* User chip */
.bmHeader__user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 20px;
    border: 1px solid var(--b1);
    font-size: 13px;
    font-weight: 600;
    color: var(--t2);
    transition: border-color .15s, color .15s;
    cursor: pointer;
}
.bmHeader__user-chip:hover { border-color: var(--accent-border); color: var(--t1); }
.bmHeader__user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(0,255,166,.2);
}

/* Hamburger */
.bmHeader__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 6px;
    background: transparent;
    border: 1px solid var(--b1);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}
.bmHeader__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--t2);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.bmLayout {
    display: flex;
    min-height: calc(100vh - var(--hdr-h));
    max-width: 1920px;
    margin: 0 auto;
}

.bmContent {
    flex: 1;
    min-width: 0;
    padding: 20px;
}

/* ================================================================
   LEFT SIDEBAR — identical to battle-mvp.online lsb
   ================================================================ */
.bmSidebarLeft {
    width: var(--sb-w);
    min-width: var(--sb-w);
    max-width: var(--sb-w);
    flex-shrink: 0;
    background: var(--bg);
}

.lsb-inner {
    position: sticky;
    top: var(--hdr-h);
    width: var(--sb-w);
    background: linear-gradient(180deg, #060e18 0%, #050b12 60%, #040810 100%);
    border-right: 1px solid rgba(0,255,166,.07);
    min-height: calc(100vh - var(--hdr-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.lsb-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,166,.5), transparent);
    z-index: 1;
}
.lsb-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 220px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,255,166,.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* User card */
.lsb-user-card {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 10px 10px 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    text-decoration: none;
    transition: all .2s;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.lsb-user-card:hover {
    background: rgba(0,255,166,.04);
    border-color: rgba(0,255,166,.12);
}
.lsb-av-wrap { position: relative; flex-shrink: 0; }
.lsb-user-avatar {
    width: 40px; height: 40px;
    border-radius: 11px;
    object-fit: cover;
    border: 1.5px solid rgba(0,255,166,.2);
    display: block;
}
.lsb-av-status {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 3px;
    border: 2px solid var(--bg);
    box-shadow: 0 0 6px rgba(0,255,166,.5);
}
.lsb-user-info { flex: 1; min-width: 0; }
.lsb-user-name {
    font-size: 12px; font-weight: 800;
    color: #e8f4ff;
    letter-spacing: .04em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lsb-user-rank {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .06em; margin-top: 3px;
}
.lsb-rank-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.lsb-rank-br { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.3); margin-left: 3px; }

.lsb-guest-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 10px 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.lsb-guest-av {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--b1);
    display: flex; align-items: center; justify-content: center;
    color: #3a5060; font-size: 18px; flex-shrink: 0;
}
.lsb-guest-name { font-size: 11px; font-weight: 700; color: var(--t2); }
.lsb-guest-hint { font-size: 10px; font-weight: 700; color: #3a9fff; letter-spacing: .04em; margin-top: 3px; }

/* Play card */
.lsb-play-card {
    margin: 0 10px 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.lsb-play-glow {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 60px;
    background: radial-gradient(circle, rgba(0,255,166,.12), transparent 70%);
    pointer-events: none; filter: blur(10px);
}
.lsb-play-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.lsb-play-label {
    font-size: 9px; font-weight: 800;
    letter-spacing: .12em; color: var(--t4);
}
.lsb-play-players {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: .06em;
}
.lsb-dot-green {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 5px rgba(0,255,166,.6);
    animation: lsb-pulse 2s infinite;
}
@keyframes lsb-pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.lsb-play-btn {
    display: flex;
    align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 11px;
    background: linear-gradient(135deg, #00ffa6, #00d8ff);
    border-radius: 10px;
    font-size: 12px; font-weight: 900;
    letter-spacing: .1em;
    color: #050b12;
    text-decoration: none;
    transition: all .2s;
    position: relative; overflow: hidden;
}
.lsb-play-btn::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition: left .5s;
}
.lsb-play-btn:hover::after { left: 150%; }
.lsb-play-btn:hover { opacity: .92; transform: translateY(-1px); }

/* Nav */
.lsb-nav {
    flex: 1;
    padding: 0 8px;
    overflow-y: auto;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
}
.lsb-nav::-webkit-scrollbar { display: none; }

.lsb-nav-label {
    font-size: 9px; font-weight: 800;
    letter-spacing: .16em; color: #2a4a5a;
    padding: 10px 8px 5px;
    text-transform: uppercase;
}

.lsb-item {
    display: flex;
    align-items: center; gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 2px;
    text-decoration: none;
    transition: all .18s;
    position: relative; overflow: hidden;
    cursor: pointer;
}
.lsb-item::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 0;
    background: linear-gradient(180deg, var(--accent), var(--blue));
    border-radius: 0 2px 2px 0;
    transition: height .2s;
}
.lsb-item:hover::before { height: 55%; }
.lsb-item.active::before { height: 65%; }
.lsb-item:hover { background: rgba(0,255,166,.04); }
.lsb-item.active { background: linear-gradient(90deg, rgba(0,255,166,.08), rgba(0,255,166,.02)); }

.lsb-item-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #2a3f4f;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.04);
    flex-shrink: 0;
    transition: all .18s;
    font-size: 16px;
}
.lsb-item:hover .lsb-item-icon {
    background: rgba(255,255,255,.06);
    color: #5b7a8a;
}
.lsb-item.active .lsb-item-icon {
    background: rgba(0,255,166,.1);
    border-color: rgba(0,255,166,.2);
    color: var(--accent);
    box-shadow: 0 0 10px rgba(0,255,166,.1);
}

.lsb-item-body { flex: 1; min-width: 0; }
.lsb-item-name {
    font-size: 11px; font-weight: 700;
    letter-spacing: .06em; color: #8ab0c0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: color .18s;
}
.lsb-item-desc {
    font-size: 9px; font-weight: 600;
    letter-spacing: .05em; color: #3a5060;
    margin-top: 1px;
}
.lsb-item:hover .lsb-item-name { color: #7a9ab0; }
.lsb-item.active .lsb-item-name { color: #e8f4ff; font-weight: 800; }

.lsb-badge {
    font-size: 9px; font-weight: 800;
    letter-spacing: .05em;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}
.lsb-badge-green { background: rgba(0,255,166,.1); color: var(--accent); border: 1px solid rgba(0,255,166,.2); }
.lsb-badge-muted { background: rgba(255,255,255,.04); color: #3a5060; border: 1px solid var(--b1); }

/* Bottom stats */
.lsb-stats {
    display: flex;
    align-items: center; justify-content: space-between;
    padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,.04);
    background: rgba(255,255,255,.01);
    position: relative; z-index: 1; margin-top: auto;
}
.lsb-stats::before {
    content: '';
    position: absolute; top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,166,.15), transparent);
}
.lsb-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.lsb-stat b { font-size: 15px; font-weight: 800; color: #e8f4ff; font-family: var(--font-num); line-height: 1; }
.lsb-stat span { font-size: 8px; font-weight: 700; letter-spacing: .12em; color: #3a5060; }
.lsb-stat-sep { width: 1px; height: 24px; background: rgba(255,255,255,.05); }

/* ================================================================
   RIGHT SIDEBAR — identical to battle-mvp.online rsb
   ================================================================ */
.bmSidebarRight {
    width: var(--sb-w);
    min-width: var(--sb-w);
    max-width: var(--sb-w);
    flex-shrink: 0;
    background: var(--bg);
}
.rsb-inner {
    position: sticky;
    top: var(--hdr-h);
    width: var(--sb-w);
    background: linear-gradient(180deg, #060e18 0%, var(--bg) 100%);
    border-left: 1px solid rgba(0,255,166,.06);
    min-height: calc(100vh - var(--hdr-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.rsb-inner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,166,.4), transparent);
}

.rsb-section { position: relative; z-index: 1; }

.rsb-sec-label {
    font-size: 8px; font-weight: 800;
    letter-spacing: .18em; color: #1a3040;
    padding: 10px 12px 4px;
    text-transform: uppercase;
    display: block;
}

.rsb-blk {
    margin: 0 10px 8px;
    padding: 11px 12px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
    position: relative; overflow: hidden;
}

/* Play CTA block */
.rsb-play-cta {
    border-color: rgba(0,255,166,.1) !important;
    background: linear-gradient(135deg, rgba(0,255,166,.04), rgba(91,127,255,.03)) !important;
}
.rsb-play-cta-title {
    font-family: var(--font-num);
    font-size: 16px; font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}
.rsb-play-cta-sub { font-size: 11px; color: var(--t2); margin: 4px 0 12px; }
.rsb-cta-btn {
    display: flex;
    align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 9px;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    border-radius: 8px;
    font-size: 12px; font-weight: 800;
    color: #001a0f;
    text-decoration: none;
    transition: opacity .15s, transform .12s;
    letter-spacing: .06em;
}
.rsb-cta-btn:hover { opacity: .9; transform: translateY(-1px); }

/* Top players */
.rsb-player-list { padding: 0 8px 6px; }
.rsb-player {
    display: flex;
    align-items: center; gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}
.rsb-player:hover { background: rgba(0,255,166,.04); }

.rsb-p-rank {
    font-size: 10px; font-weight: 700;
    color: #3a5060;
    width: 16px; text-align: center; flex-shrink: 0;
}
.rsb-p-rank--gold { color: #e8b84b; }

.rsb-p-av-wrap { position: relative; flex-shrink: 0; }
.rsb-p-av {
    width: 28px; height: 28px;
    border-radius: 7px;
    object-fit: cover;
    border: 1px solid var(--b1);
    display: block;
}
.rsb-p-dot {
    position: absolute; bottom: -1px; right: -1px;
    width: 7px; height: 7px;
    border-radius: 2px;
    border: 1.5px solid var(--bg);
}
.rsb-p-dot--green { background: var(--accent); }
.rsb-p-dot--grey  { background: #3a5060; }

.rsb-p-info { flex: 1; min-width: 0; }
.rsb-p-name {
    font-size: 10px; font-weight: 700;
    color: #7a9ab0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rsb-p-status { font-size: 8px; font-weight: 700; letter-spacing: .06em; margin-top: 1px; }
.rsb-p-status--green { color: var(--accent); }
.rsb-p-status--grey  { color: #3a5060; }

.rsb-p-br { font-size: 10px; font-weight: 800; color: var(--accent); flex-shrink: 0; }

/* Voice rooms */
.rsb-voice-list { padding: 0 8px 8px; }
.rsb-voice-room {
    display: flex;
    align-items: center; justify-content: space-between;
    padding: 7px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,.02);
    margin-bottom: 3px;
    transition: background .15s;
    text-decoration: none;
}
.rsb-voice-room:hover { background: rgba(0,255,166,.04); }
.rsb-vr-info { min-width: 0; }
.rsb-vr-name { font-size: 12px; font-weight: 600; color: var(--t2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rsb-vr-sub { font-size: 9px; color: var(--t3); margin-top: 1px; letter-spacing: .05em; }
.rsb-vr-slots {
    display: flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.rsb-online-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 5px rgba(0,255,166,.5);
    animation: lsb-pulse 2s infinite;
}

.rsb-see-all {
    display: block; text-align: center;
    font-size: 8px; font-weight: 800;
    color: #3a5060; letter-spacing: .08em;
    padding: 5px; text-decoration: none;
    transition: color .15s;
}
.rsb-see-all:hover { color: var(--accent); }

/* ================================================================
   CONTENT AREA — cards, feed, sections
   ================================================================ */

/* Section header */
.hub-section { margin-bottom: 20px; }
.hub-section-hd {
    display: flex;
    align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.hub-section-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--t3);
}
.hub-section-link {
    font-size: 11px; color: var(--accent); opacity: .7;
    transition: opacity .15s;
}
.hub-section-link:hover { opacity: 1; }

/* Card */
.hub-card {
    background: rgba(255,255,255,.025);
    border: 1px solid var(--b1);
    border-radius: 12px;
    padding: 16px;
    transition: border-color .15s;
}
.hub-card:hover { border-color: rgba(0,255,166,.12); }

/* LIVE dot */
.hub-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--live);
    animation: hub-pulse-red 2s ease-in-out infinite;
}
@keyframes hub-pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,68,68,.5); }
    50%      { box-shadow: 0 0 0 5px rgba(255,68,68,0); }
}

/* Streams placeholder */
.hub-streams-placeholder {
    background: rgba(0,255,166,.02);
    border: 1px dashed rgba(0,255,166,.15);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center; gap: 16px;
    flex-wrap: wrap;
}
.hub-streams-ph-text strong { display: block; color: var(--t1); margin-bottom: 4px; font-size: 13px; }
.hub-streams-ph-text span  { font-size: 12px; color: var(--t2); }
.hub-streams-ph-links { display: flex; gap: 8px; }

/* Feed tabs */
.hub-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.hub-tab {
    padding: 5px 14px;
    border-radius: 6px;
    border: 1px solid var(--b1);
    background: transparent;
    font-size: 12px; font-weight: 500; color: var(--t2);
    transition: color .15s, background .15s, border-color .15s;
}
.hub-tab:hover { color: var(--t1); background: rgba(255,255,255,.04); }
.hub-tab.active {
    color: var(--accent);
    background: var(--accent-dim);
    border-color: var(--accent-border);
}

/* Post composer */
.hub-composer {
    display: flex; gap: 12px; align-items: flex-start;
}
.hub-composer-av {
    width: 36px; height: 36px;
    border-radius: 9px; object-fit: cover;
    flex-shrink: 0; margin-top: 2px;
}
.hub-composer-inner { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hub-composer-input {
    width: 100%; resize: none;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b1);
    border-radius: 8px;
    color: var(--t1);
    font-family: var(--font); font-size: 14px;
    padding: 10px 12px;
    outline: none;
    transition: border-color .15s;
}
.hub-composer-input:focus { border-color: var(--accent-border); }
.hub-composer-input::placeholder { color: var(--t4); }
.hub-composer-footer { display: flex; align-items: center; justify-content: space-between; }
.hub-char-count { font-size: 11px; color: var(--t4); }

/* Post */
.hub-post {
    padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
    border-radius: 12px;
    transition: border-color .15s;
}
.hub-post-hd { display: flex; align-items: flex-start; justify-content: space-between; }
.hub-post-author { display: flex; align-items: center; gap: 10px; }
.hub-post-av { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.hub-post-name { font-size: 13px; font-weight: 600; color: var(--t1); }
.hub-post-time { font-size: 11px; color: var(--t3); margin-top: 2px; }
.hub-post-body { font-size: 14px; line-height: 1.6; color: var(--t1); word-break: break-word; }
.hub-post-actions {
    display: flex; align-items: center; gap: 4px;
    padding-top: 8px; border-top: 1px solid var(--b0);
}
.hub-action-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 10px; border-radius: 6px;
    background: transparent; border: none;
    color: var(--t2); font-size: 12px;
    transition: color .15s, background .15s;
}
.hub-action-btn:hover { color: var(--t1); background: rgba(255,255,255,.04); }
.hub-action-btn--liked { color: #ef4444 !important; }
.hub-action-btn--share { margin-left: auto; }

/* Comments */
.hub-comments { border-top: 1px solid var(--b0); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.hub-comment { display: flex; gap: 8px; align-items: flex-start; }
.hub-comment-av { width: 26px; height: 26px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.hub-comment-body { background: rgba(255,255,255,.03); border-radius: 8px; padding: 6px 10px; font-size: 12px; line-height: 1.4; flex: 1; }
.hub-comment-author { font-weight: 700; margin-right: 6px; }
.hub-comment-text { color: var(--t2); }
.hub-comment-composer { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.hub-comment-input {
    flex: 1; padding: 6px 10px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b1);
    border-radius: 20px;
    color: var(--t1); font-family: var(--font); font-size: 12px;
    outline: none;
    transition: border-color .15s;
}
.hub-comment-input:focus { border-color: var(--accent-border); }

/* Match rows */
.hub-match-list { display: flex; flex-direction: column; gap: 4px; }
.hub-match-row {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--b0);
    transition: border-color .15s, background .15s;
}
.hub-match-row:hover { background: rgba(0,255,166,.02); border-color: rgba(0,255,166,.08); }
.hub-match-mode {
    font-size: 9px; font-weight: 800;
    color: var(--accent); text-transform: uppercase; letter-spacing: .5px;
    width: 36px; flex-shrink: 0;
}
.hub-match-players { display: flex; align-items: center; gap: 8px; flex: 1; }
.hub-match-player { font-size: 12px; font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hub-match-player--r { text-align: right; }
.hub-match-score { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.hub-match-score-sep { color: var(--t3); font-weight: 400; }
.hub-match-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hub-match-time { font-size: 10px; color: var(--t3); white-space: nowrap; }

/* Badges */
.hub-badge {
    font-size: 9px; font-weight: 800;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 2px 7px; border-radius: 4px;
}
.hub-badge--finished { background: rgba(0,216,255,.15); color: #00d8ff; }
.hub-badge--live     { background: rgba(34,197,94,.15); color: #22c55e; }
.hub-badge--cancelled{ background: rgba(255,68,68,.12);  color: #ff5050; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #24df92, #00d8ff);
    border: none; border-radius: 8px;
    font-family: var(--font); font-size: 13px; font-weight: 700;
    color: #001a0f;
    cursor: pointer;
    transition: opacity .15s, transform .12s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 7px 16px;
    background: transparent;
    border: 1px solid var(--b2); border-radius: 8px;
    font-family: var(--font); font-size: 13px; font-weight: 500;
    color: var(--t2);
    cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
}
.btn-secondary:hover { color: var(--t1); border-color: var(--accent-border); background: rgba(255,255,255,.03); }

.btn-sm  { padding: 5px 12px; font-size: 12px; }
.btn-full{ width: 100%; }

/* ── MISC ───────────────────────────────────────────────────────── */
.hub-divider { height: 1px; background: var(--b0); margin: 16px 0; }
.hub-empty {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 32px 20px; color: var(--t3); font-size: 13px; text-align: center;
}
.hub-empty svg { opacity: .3; }
.hub-load-more { display: flex; justify-content: center; padding: 8px 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .bmSidebarRight { display: none; }
}
@media (max-width: 960px) {
    .bmSidebarLeft { display: none; }
    .bmHeader__nav { display: none; }
    .bmHeader__hamburger { display: flex; }
    .bmHeader__center { max-width: 200px; margin: 0 12px; }
}
@media (max-width: 640px) {
    .bmHeader__center { display: none; }
    .bmContent { padding: 12px; }
}