body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

h1 {
    color: #0d6efd;
    font-weight: 700;
}

.score-board {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.score {
    text-align: center;
}

.score p {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.choices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.choice-btn {
    background-color: white;
    border: 2px solid #0d6efd;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.choice-btn:hover {
    background-color: #0d6efd;
    color: white;
    transform: scale(1.05);
}

.choice-btn i {
    font-size: 40px;
    margin-bottom: 10px;
}

.result {
    min-height: 30px;
    font-size: 20px;
    font-weight: bold;
}

.game-over {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
    min-height: 40px;
}

#reset-btn {
    display: none;
}

@media (max-width: 576px) {
    .choice-btn {
        width: 100px;
        height: 100px;
    }
    
    .choices {
        gap: 10px;
    }
}