* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none;
    color: white;
    transition: background-color 0.2s ease;
}

.state-start {
    background: #2c3e50;
}

.state-waiting {
    background: #c0392b;
}

.state-go {
    background: #27ae60;
}

.state-early {
    background: #f1c40f;
    color: black;
}

.state-result {
    background: #2c3e50;
}

.game-container {
    width: 100%;
    max-width: 700px;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#game-text {
    margin: auto;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.stats-panel {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    background: rgba(0,0,0,.35);
    border-radius: 8px;
    font-size: 1.2rem;
}
