* { 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: 8px 6px;
    max-width: 1100px;
    margin: 0 auto;
    flex: 1;
    align-content: start;
}

.status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 4px 4px 6px;
    border-radius: 10px;
    border: 3px solid #333;
    background: #141414;
    transition: transform 0.18s, border-color 0.2s, box-shadow 0.2s;
    user-select: none;
}
.status-card:hover { transform: scale(1.05); }

.status-card img {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    pointer-events: none;
}

.status-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.status-card-state {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-top: 1px;
    text-transform: uppercase;
}

/* Status borders and labels */
.status-card.st-active {
    border-color: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.45);
}
.status-card.st-active .status-card-name,
.status-card.st-active .status-card-state { color: #22c55e; }

.status-card.st-nominated {
    border-color: #f59e0b;
    box-shadow: 0 0 12px rgba(245,158,11,0.5);
}
.status-card.st-nominated .status-card-name,
.status-card.st-nominated .status-card-state { color: #f59e0b; }

.status-card.st-used {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255,215,0,0.35);
}
.status-card.st-used .status-card-name,
.status-card.st-used .status-card-state { color: #FFD700; }

.status-card.st-eliminated {
    border-color: #cc0000;
    box-shadow: 0 0 10px rgba(200,0,0,0.4);
    filter: grayscale(70%) brightness(0.5);
}
.status-card.st-eliminated .status-card-name,
.status-card.st-eliminated .status-card-state { color: #cc0000; }

/* ── Context menu (same as Summary) ───────────── */
.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; }
