* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 15px;
}

.logo {
    display: block;
    margin: 0 auto 10px auto;
    width: 100px;
    height: 100px;
}

.progress-bar {
    background-color: #886d47;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress {
    background-color: #ba9a6d;
    height: 100%;
}

h1, h2 {
    font-weight: bold;
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 10px;
}

.correct-title {
    color: green;
    font-size: 1.5rem;
}

.incorrect-title {
    color: #886d47;
    font-size: 1.5rem;
}

.correct-description, .incorrect-description, .description, .question-description {
    text-align: center;
    color: #808080;
    margin-bottom: 30px;
}

.main-image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 15px auto;
}

.continue-button, .retry-button {
    width: 100%;
    padding: 15px;
    background-color: #ba9a6d;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 1rem;
}

.answer-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.answer-card {
    background-color: #ffffff;
    border-radius: 10px;
    width: 48%;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.answer-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

.answer-text {
    background-color: #ba9a6d;
    color: #ffffff;
    padding: 8px 0;
    border-radius: 10px;
    font-weight: 600;
}

.button-answer {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    background-color: #ba9a6d;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.button-answer .image-box {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.button-answer span {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    flex-grow: 1;
}

.terms {
    font-size: 0.8rem;
    color: #808080;
    text-align: center;
    line-height: 1.4;
    margin-top: 30px;
}

.info-title {
    font-size: 1.3rem;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

.completion-title {
    font-size: 1.3rem;
    color: #ba9a6d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.completion-description {
    font-size: 1rem;
    color: #808080;
    text-align: center;
    margin-bottom: 20px;
}

.completion-image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 5px;
}

.reward-box {
    background-color: rgba(59, 237, 1, 0.1);
    color: green;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.reward-box #timer {
    color: green;
    font-weight: normal;
}

.highlight {
    color: #ba9a6d;
}