body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

#game-container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 50px auto;
    width: 80%;
    border-radius: 20px;
}

#scoreboard {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.team {
    font-size: 24px;
    font-weight: bold;
}

.blue {
    color: blue;
}

.green {
    color: green;
}

#question-container {
    margin-bottom: 20px;
}

#answer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-container button {
    background-color: #eee;
    border: 2px solid #ccc;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 20px;
    width: 300px;
    height: 70px;
    border-radius: 10px;
}

.btn-container button.correct {
    background-color: #4CAF50;
    color: white;
}

.btn-container button.wrong {
    background-color: #f44336;
    color: white;
}

#start-btn {
    padding: 15px 30px;
    font-size: 26px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 20px;
}

#timer {
    font-size: 28px;
    margin-top: 15px;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: none;
}
