/* Base styles copied from Tic Tac Toe theme */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #1e1e2e;
    color: white;
    margin: 0;
    padding: 0;
}

header,
footer {
    background: #282a36;
    padding: 15px;
    color: #f8f8f2;
}

header h1 {
    margin: 5px;
}

.back-link {
    color: #50fa7b;
    text-decoration: none;
    font-size: 0.9em;
}

.scoreboard {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    font-size: 1.2em;
}

/* Choices */
.choices {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.choice-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 3.5em;
    border: 3px solid #50fa7b;
    background: #282a36;
    color: #50fa7b;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #50fa7b;
}

/* Result text */
#result {
    font-size: 1.5em;
    margin: 20px 0;
}

/* Restart button */
button#resetBtn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #6272a4;
    color: white;
    transition: background 0.3s;
}

button#resetBtn:hover {
    background: #7082b6;
}

/* Pop animation for selected choice */
@keyframes pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}