@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfe0e6;
}
.text {
    text-align: center;
    font-size: 1rem;
    color: #7d2ae8;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.container {
    padding: 2rem 7rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                0 6px 6px rgba(0, 0, 0, 0.15);
}
.result_images{
    display: flex;
    column-gap: 7rem;
}
.container.start .user_result{
    transform-origin: left;
    animation: userShake 0.7s ease infinite;
}
@keyframes userShake {
    50%{
        transform: rotate(10deg);
    }
}
.container.start .cpu_result{
    transform-origin: right;
    animation: cpuShake 0.7s ease infinite;
}
@keyframes cpuShake {
    50%{
        transform: rotate(-10deg);
    }
}

.result_images img{
    width: 100px;
}
.user_result img{
    transform: rotate(90deg);
}
.cpu_result img{
    transform: rotate(-90deg) rotateY(180deg);
}
.result{
    text-align: center;
    font-size: 2rem;
    color: #7d2ae8;
    margin-top: 1.5rem;
}
.option_image img{
    width: 50px;
}
.option_images {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    justify-content: space-between;
    
}
.container.start .option_images{
    pointer-events: none;
}
.option_image{
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.option_image:hover{
    opacity:1;
}
.option_image.active{
    opacity: 1;
}
.option_image img{
    pointer-events: none;
}
.option_image p {
    color: #7d2ae8;
    font-size: 1.235rem;
    margin-top: 1rem;
    pointer-events: none;

}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 3rem;
        margin-top: 20px;
    }
    .result_images {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        row-gap: 3rem;
        column-gap: 3rem;
    }
    .result_images img {
        width: 80px;
    }
    .result {
        font-size: 1.5rem;
    }
    .option_image img {
        width: 50px;
    }
    .option_images {
        flex-direction: column;
        row-gap: 1.5rem;
        margin-top: 1.5rem;
    }
}