/* CSS Styles - Dark Mode */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #252525; /* Dark background */
    color: #ffffff; /* Light text */
    margin: 0;
    padding: 20px;
}

.container {
    background-color: #333333; /* Darker container */
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

h1 {
    color: #ffffff;
}

.score-board {
    display: flex;
    justify-content: space-around;
    border: 2px solid #ffffff; /* White border */
    border-radius: 5px;
    padding: 10px;
    margin: 20px 0;
    font-size: 1.2rem;
    background-color: #333;
    color: #fff;
}

.badge {
    background-color: #e25822;
    color: white;
    padding: 2px 10px;
    font-size: 1rem;
    border-radius: 4px;
}

.result {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
    min-height: 40px;
}

.choices {
    margin: 20px 0;
}

.choice-btn {
    background: #333; /* Dark button background */
    border: 3px solid #ffffff; /* White border */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 10px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.choice-btn:hover {
    background-color: #555; /* Lighter grey on hover */
    transform: scale(1.1);
}

#action-message {
    font-size: 1.2rem;
    color: #cccccc; /* Light grey text */
    margin-top: 20px;
}

/* Reset Button Styles - Dark Mode */
.reset-section {
    margin-top: 30px;
}

#reset-score {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#reset-score:hover {
    background-color: #fff;
    color: #333;
}
