/* endgame.css */

.endgame-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.endgame-title {
    color: #0f0;
    font-family: monospace;
    font-size: 3em;
    margin-bottom: 20px;
}

.endgame-stats-container {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.endgame-team-panel {
    background: rgba(0,255,0,0.1);
    border: 1px solid #0f0;
    padding: 20px;
    color: #0f0;
    font-family: monospace;
}

.endgame-team-header {
    text-align: center;
    margin-top: 0;
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
}

.endgame-stats-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.endgame-stats-th {
    padding: 8px;
}

.endgame-stats-tr-header {
    border-bottom: 1px solid rgba(0,255,0,0.5);
}

.endgame-controls {
    display: flex;
    gap: 20px;
}

.endgame-btn {
    background: transparent;
    color: #0f0;
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid #0f0;
    padding: 10px 30px;
    cursor: pointer;
    text-transform: uppercase;
}
