* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Oswald', sans-serif;
    background: #0d0d0d;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 10px 20px 30px;
}

/* ── Header ──────────────────────────────────── */
.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
    flex-shrink: 0;
}
.status-hdr-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #fff;
}
.status-nav { display: flex; gap: 10px; }
.status-hdr-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s;
    background: #222;
    color: #aaa;
    border: 1px solid #444;
}
.status-hdr-btn:hover { color: #fff; border-color: #888; }
.status-nav .status-hdr-menu {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #111;
    border: none;
}
.status-nav .status-hdr-menu:hover { transform: scale(1.05); }

/* ── Grid 2 rows × 6 ─────────────────────────── */
.status-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px 8px;
    max-width: 1100px;
    margin: 0 auto;
    flex: 1;
    align-content: start;
}

.status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.status-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #fff;
    text-shadow:
        0 0 8px #fff,
        0 0 18px rgba(255, 255, 255, 0.45);
}

.status-card-img-wrap {
    position: relative;
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.status-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.status-card-pts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 6.5rem);
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.25);
    pointer-events: none;
    line-height: 1;
}

.status-card.is-top .status-card-img-wrap {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.status-card.st-no-votes .status-card-pts {
    color: rgba(255, 255, 255, 0.25);
    text-shadow: none;
}

.status-card.st-eliminated .status-card-img-wrap {
    filter: grayscale(65%) brightness(0.55);
}

.status-card.st-eliminated .status-card-name {
    color: #aaa;
    text-shadow: none;
}

.status-card.st-active .status-card-img-wrap {
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.25);
}

.status-card.st-nominated .status-card-img-wrap {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.status-card.st-used .status-card-img-wrap {
    border-color: rgba(255, 215, 0, 0.45);
}

/* Context menu (right-click — testing) */
.status-ctx-menu {
    position: fixed;
    background: #1e1e1e;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 4px 0;
    display: none;
    z-index: 3000;
    min-width: 165px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.status-ctx-menu.active { display: block; }

.status-ctx-label {
    font-size: 0.7rem;
    color: #555;
    padding: 6px 14px 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: default;
    border-bottom: 1px solid #333;
    margin-bottom: 2px;
}

.status-ctx-menu div:not(.status-ctx-label) {
    padding: 10px 18px;
    cursor: pointer;
    font-size: 1rem;
    color: #ddd;
    transition: background 0.15s;
}

.status-ctx-menu div:not(.status-ctx-label):hover {
    background: #333;
    color: #fff;
}

.ctx-dot {
    display: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 6px;
}

.ctx-dot-active { background: #22c55e; box-shadow: 0 0 5px #22c55e; }
.ctx-dot-nominated { background: #ffd700; box-shadow: 0 0 5px #ffd700; }
.ctx-dot-eliminated { background: #cc0000; box-shadow: 0 0 5px #cc0000; }
