/* BEERLEAGUE Players Online sidebar module */
.blpo-card {
    --blpo-bg: rgba(2, 20, 13, .98);
    --blpo-bg-2: rgba(7, 55, 35, .96);
    --blpo-green: #00dc9a;
    --blpo-orange: #ffb000;
    --blpo-border: rgba(0, 220, 154, .36);
    --blpo-muted: rgba(248, 250, 252, .72);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--blpo-border);
    border-radius: 12px;
    background:
        radial-gradient(circle at top left, rgba(0, 220, 154, .16), transparent 35%),
        linear-gradient(135deg, var(--blpo-bg), var(--blpo-bg-2));
    color: #fff !important;
    padding: 11px;
    box-shadow: 0 12px 28px rgba(0,0,0,.26);
    font-size: 12px;
    line-height: 1.25;
}
.blpo-card,
.blpo-card * { box-sizing: border-box; }
.blpo-head {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.blpo-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--blpo-green);
    box-shadow: 0 0 14px rgba(0,220,154,.82);
}
.blpo-head div {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.blpo-head strong {
    color: #fff !important;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
}
.blpo-head span {
    color: var(--blpo-muted) !important;
    font-size: 10px;
    font-weight: 800;
}
.blpo-head b {
    margin-left: auto;
    border: 1px solid rgba(255, 176, 0, .48);
    border-radius: 999px;
    background: rgba(255, 176, 0, .15);
    color: var(--blpo-orange) !important;
    font-size: 16px;
    font-weight: 950;
    line-height: 1;
    padding: 5px 8px;
}
.blpo-empty {
    display: grid;
    gap: 4px;
    margin-top: 10px;
    border: 1px dashed rgba(255, 176, 0, .38);
    border-radius: 10px;
    background: rgba(255, 176, 0, .07);
    padding: 10px;
    text-align: center;
}
.blpo-empty strong { color: #fff !important; font-size: 12px; }
.blpo-empty span { color: var(--blpo-muted) !important; font-size: 10px; line-height: 1.35; }
.blpo-list {
    display: grid;
    gap: 7px;
    max-height: 420px;
    overflow: auto;
    margin-top: 10px;
    padding-right: 2px;
}
.blpo-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 8px;
    align-items: center;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 10px;
    background: rgba(255,255,255,.055);
    padding: 8px;
}
.blpo-main {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.blpo-main strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff !important;
    font-size: 12px;
    font-weight: 950;
}
.blpo-main span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--blpo-green) !important;
    font-size: 10px;
    font-weight: 850;
}
.blpo-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--blpo-muted) !important;
    font-size: 10px;
}
.blpo-meta span {
    color: var(--blpo-orange) !important;
    font-weight: 900;
}
.blpo-meta em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--blpo-muted) !important;
    font-style: normal;
}
.blpo-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 232, 154, .55);
    border-radius: 8px;
    background: linear-gradient(180deg, #00b885, #007a5d);
    color: #fff !important;
    font-size: 9px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: .05em;
    padding: 6px 8px;
    text-decoration: none !important;
    text-transform: uppercase;
}
.blpo-connect:hover,
.blpo-connect:focus { color: #fff !important; filter: brightness(1.12); text-decoration: none !important; }
.blpo-row.names-hidden .blpo-main strong { color: rgba(255,255,255,.78) !important; }
@media (max-width: 520px) {
    .blpo-row { grid-template-columns: 1fr; }
    .blpo-connect { justify-self: start; }
}
