.mbti-test-container {
    max-width: 800px;
    margin: 2em auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.mbti-title {
    font-size: 35px;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    font-family: "yekan";
}

.mbti-form {
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mbti-question {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
}

.mbti-question p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 1em;
    font-family: "yekan";
}

.mbti-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.mbti-options label {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: "yekan";
}

.mbti-options label:hover {
    background: #e9e9e9;
}

.mbti-options input[type="radio"] {
    margin-left: 8px;
}

.mbti-submit {
    text-align: center;
    margin-top: 2em;
}

.mbti-submit-btn {
    background: #F26B0F !important;
    color: #fff !important;
    border-color: #F26B0F !important;
    font-family: "yekan";
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mbti-submit-btn:hover {
    background: #d85a0d !important;
}

.mbti-results {
    margin-top: 2em;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mbti-results h2 {
    color: #333;
    margin-bottom: 1em;
    font-family: "yekan";
    text-align: center;
}

.mbti-personality-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2em;
    border-radius: 12px;
    margin-bottom: 2em;
    text-align: center;
}

.mbti-personality-card h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    font-family: "yekan";
}

.mbti-personality-card .mbti-type {
    font-size: 3em;
    font-weight: bold;
    margin: 0.5em 0;
    font-family: "yekan";
}

.mbti-personality-card .mbti-title {
    font-size: 1.5em;
    margin-bottom: 1em;
    font-family: "yekan";
}

.mbti-personality-card .mbti-summary {
    font-size: 1.1em;
    line-height: 1.6;
    font-family: "yekan";
}

.mbti-section {
    margin-bottom: 2em;
    padding: 1.5em;
    background: #f9f9f9;
    border-radius: 8px;
}

.mbti-section h3 {
    color: #333;
    margin-bottom: 1em;
    font-family: "yekan";
    font-size: 1.3em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5em;
}

.mbti-strengths ul,
.mbti-weaknesses ul,
.mbti-careers ul {
    list-style: none;
    padding: 0;
    font-family: "yekan";
}

.mbti-strengths li,
.mbti-weaknesses li,
.mbti-careers li {
    padding: 0.5em 0;
    padding-right: 1.5em;
    position: relative;
}

.mbti-strengths li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #4CAF50;
    font-weight: bold;
}

.mbti-weaknesses li:before {
    content: "⚠";
    position: absolute;
    right: 0;
    color: #ff9800;
}

.mbti-careers li:before {
    content: "💼";
    position: absolute;
    right: 0;
}

.mbti-scores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    margin-top: 1em;
}

.mbti-score-item {
    background: #fff;
    padding: 1em;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    font-family: "yekan";
}

.mbti-score-item strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 0.5em;
    color: #667eea;
}

.mbti-score-item .score-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

@media only screen and (max-width: 600px) {
    .mbti-title {
        font-size: 30px;
    }
    
    .mbti-scores {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mbti-options {
        flex-direction: column;
    }
    
    .mbti-personality-card .mbti-type {
        font-size: 2em;
    }
}
