

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    padding: 15px;
    align-item: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 535px;
    width: 100%;
    padding: 2rem 5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.result_images {
    display: flex;
    gap: 7rem;
    justify-content: center;
}

.container.start .user_result {
    transform-origin: left;
    animation: userShake 0.7s ease infinite;
}

@keyframes userShake {
    50% { transform: rotate(10deg); }
}

.container.start .bot_result {
    transform-origin: right;
    animation: botShake 0.7s ease infinite;
}

@keyframes botShake {
    50% { transform: rotate(-10deg); }
}

.result_images img {
    width: 120px;
    transition: all 0.3s ease;
}

.user_result img {
    transform: rotate(90deg);
}

.bot_result img {
    transform: rotate(-90deg) rotateY(180deg);
}

.result {
    text-align: center;
    font-size: 2.2rem;
    color: #7d2ae8;
    margin: 2rem 0;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.option_image img {
    width: 70px;
    transition: all 0.3s ease;
}

.option_images {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 3rem;
    justify-content: space-evenly;
}

.container.start .option_images {
    pointer-events: none;
}

.option_image {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
}

.option_image:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(125, 42, 232, 0.1);
}

,option_image.active {
    opacity: 1;
    transform: scale(1.15);
    background: rgba(125, 42, 232, 0.2);
}

.option_image p {
    color: #7d2ae8;
    font-size: 1.4rem;
    margin-top: 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 2rem;
    }
    .result_images {
        gap: 3rem;
    }
    .result_image img {
        width: 90px;
    }
}

@media (max-width: 500px) {
    .option_images {
        flex-direction: column;
        gap: 1rem;
    }
    .option_image img {
        width: 60px;
    }
}