/* body  */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    margin: 0;
    padding: 20px;
    color: white;
}

/* container */
.container {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

/* Title */
h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Btn  Design */
.game button {
    padding: 15px 25px;
    margin: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Result part */
#result {
    margin-top: 30px;
    font-size: 1.3rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    animation: bounceIn 1s ease-out;
}

#result span {
    font-weight: bold;
}

#user-choice {
    color: #00e676;
}

#computer-choice {
    color: #ff1744;
}

#game-result {
    color: #ffea00;
    font-size: 1.5rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
