html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #FF69B4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.version {
    font-size: 12px;
    opacity: 0.7;
}

.settings-icon {
    width: 24px;
    height: 24px;
}

.logo-container {
    margin: 20px 0;
}

.logo {
    font-size: 96px;
    font-weight: bold;
    background: white;
    color: #FF69B4;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.subtitle {
    font-size: 36px;
    font-family: 'Brush Script MT', cursive;
    margin: 10px 0;
}

.content {
    background: white;
    color: #FF69B4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.description {
    font-size: 16px;
    margin: 20px 0;
}

.question {
    font-size: 20px;
    margin-bottom: 20px;
}

.emoji {
    font-size: 24px;
}

.quiz-button {
    background: #FF69B4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.quiz-button:hover {
    background: #FF1493;
}

.option-button {
    background: #FF69B4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 10px 0;
}

.option-button:hover {
    background: #FF1493;
}

.footer {
    margin-top: 20px;
}

.subtitle {
    font-size: 36px;
    font-family: 'Brush Script MT', cursive;
    margin: 10px 0;
}

.account {
    font-size: 14px;
    margin-top: 20px;
}

.account a {
    color: #FF69B4;
    text-decoration: none;
}
