/* === Variables === */
:root {
    --off-white: #f0f8ff;
    --gray: #444444;
    --primary: #4CAF50;
    --white: #ffffff;
    --disabled-gray: #d3d3d3;

}

/* === Base Styles === */
body {
    background-color: var(--off-white);
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}


h1 {
    font-size: 2.5rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* === Button Styles === */
.button-container {
    margin-bottom: 30px;
}

button {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}

button:disabled {
    background-color: var(--disabled-gray);
    cursor: not-allowed;
}

/* === Result Styles === */
#result {
    margin-top: 30px;
}

#round-result {
    font-size: 1.5rem;
    margin: 10px 0;
    color: var(--gray);
}

#score {
    font-size: 1.2rem;
    margin: 10px 0;
    color: var(--gray);
}

#winner {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: bold;
    margin-top: 20px;
}

/* === Restart Button Styles === */
#restart {
    margin-top: 20px;
    display: none;
    text-align: center;
}

.hidden {
    display: none;
}

/* === Responsive Design === */
@media (max-width: 600px) {
    button {
        width: 80%;
        padding: 15px;
        margin: 10px 0;
        font-size: 1rem;
    }
}
