@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@400;700&display=swap');

body {
    font-family: 'Gaegu', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffe8e8; /* Light pink background */
}

#game-container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

#question {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

#options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-button {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ffb6c1; /* Light pink border */
    border-radius: 10px;
    background-color: #fff0f5;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.2rem;
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
}

.option-button:hover {
    background-color: #ffdde1;
    transform: translateY(-2px);
}

.option-button.selected {
    background-color: #ff69b4; /* Hot pink */
    color: white;
    border-color: #ff69b4;
}

#next-button {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    background-color: #ff69b4; /* Hot pink */
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    transition: background-color 0.3s;
}

#next-button:hover {
    background-color: #ff55a3;
}

#next-button:active {
    transform: translateY(1px);
}

#result-container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

#result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff69b4;
}

#result-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#lang-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px solid #ffb6c1;
    background-color: #fff0f5;
    cursor: pointer;
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

#lang-button:hover {
    background-color: #ffdde1;
}
