.page-status .floating-status-tag {
    display: none;
}

.status-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 16px 40px;
    min-height: 70vh;
}

/* ── Player Tag ──────────────────────────────────────────────── */

.player-tag {
    width: 69vw;
    max-width: 360px;
    height: 108vw;
    max-height: 570px;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 16px;
    box-shadow:
        4px 6px 18px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.28),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    margin: 20px auto 12px;
    position: relative;
}

.tag-hole {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    border: 2px solid rgba(0, 0, 0, 0.38);
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
}

.tag-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    width: 100%;
    padding: 12px 0;
    text-align: center;
}

.tag-team-name {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 1.5rem;
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.tag-player-name {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 3.8rem;
    line-height: 1.1;
    word-break: break-word;
}

.tag-status {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

/* ── Queue Status ────────────────────────────────────────────── */

.queue-status {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--highlightColor, #03426B);
    margin: 8px 0 20px;
    min-height: 2rem;
}

/* ── No-Team State ───────────────────────────────────────────── */

.no-team-prompt {
    text-align: center;
    padding: 40px 20px;
    font-family: sans-serif;
    font-size: 2.8rem;
    color: var(--highlightColor, #03426B);
}

.no-team-prompt a {
    color: var(--highlightColor, #03426B);
}

.join-team-button {
    display: block;
    margin: 16px auto 0;
    font-family: sans-serif;
    font-size: 2.4rem;
    padding: 14px 32px;
    border-radius: 8px;
    background-color: var(--neutralColor, #FFDEB887);
    color: var(--highlightColor, #03426B);
}

/* ── Court Status ────────────────────────────────────────────── */

.status-divider {
    width: 80%;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin: 4px 0 16px;
}

.court-status-header {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3.2rem;
    color: var(--highlightColor, #03426B);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    align-self: center;
}

.court-status-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.court-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--neutralColor, #FFDEB887);
    font-family: 'Covered By Your Grace', cursive;
    font-size: 3.6rem;
    color: var(--highlightColor, #03426B);
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.2);
}

.court-mini-matchup {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.court-mini-label {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2.2rem;
    color: var(--highlightColor, #03426B);
    opacity: 0.75;
    margin-right: 6px;
    flex-shrink: 0;
}

.court-color-chip {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.court-mini-score {
    font-family: 'Wallpoet', sans-serif;
    font-size: 2.6rem;
    opacity: 0.9;
    margin: 0 6px;
}

.court-mini-vs {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 4rem;
    opacity: 0.7;
    margin: 0 8px;
    color: var(--highlightColor, #03426B);
}
