/* style/main.css */
body {
    background-color: #272e33;
    color: #d3c6aa;
    margin: 0;
    font-family: sans-serif;
    min-height: 100vh;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.button-row {
    display: flex;
    gap: 15px;
}

button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    border: 1px solid #a7c080;
    background-color: #3c4841;
    color: #d3c6aa;
    cursor: pointer;
    transition:
        transform 0.1s,
        background-color 0.2s;
}

button:hover {
    background-color: #a7c080;
    color: #2e383c;
}

button:active {
    transform: scale(0.95);
}

.result-card {
    background-color: #374145;
    border: 2px solid #d3c6aa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.cpu-choice {
    color: #9da9a0;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.game-result {
    font-size: 1.8rem;
    margin: 0;
    color: #d3c6aa;
    text-align: center;
}
