@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
}

.game-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.choices {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.choice {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.choice img {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.choice:hover {
    transform: scale(1.1);
}

.result {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #ffeb3b;
}

.scores {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.scores div {
    font-size: 1.2rem;
}

.player-score, .computer-score {
    color: #ffeb3b;
}

button {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffeb3b;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ffc107;
}

@media (max-width: 600px) {
    .choice img {
        width: 80px;
        height: 80px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .result {
        font-size: 1.2rem;
    }
}