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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    color: #7f8c8d;
    font-size: 1.1em;
    line-height: 1.6;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

#question-page {
    display: none;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #3498db;
    transition: width 0.3s ease;
}

#question-text {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-btn {
    background-color: #ecf0f1;
    color: #2c3e50;
    width: 100%;
}

.answer-btn:hover {
    background-color: #bdc3c7;
}

#result-page {
    display: none;
}

#mbti-type {
    color: #3498db;
    font-size: 4em;
    margin: 10px 0;
}

#mbti-title {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 15px;
}

#restart-btn {
    background-color: #9b59b6;
}

#restart-btn:hover {
    background-color: #8e44ad;
}
