/* MBTI Page Specific Styles */

.mbti-section {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
    background: radial-gradient(circle at 10% 20%, rgb(45, 12, 114) 0%, rgb(18, 18, 41) 90%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mbti-section::before {
    content: '🎷';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 400px;
    opacity: 0.05;
    transform: rotate(20deg);
    pointer-events: none;
}

.mbti-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.mbti-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mbti-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f2b96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mbti-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-start {
    padding: 15px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(45deg, #FF512F 0%, #DD2476 51%, #FF512F 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 10px 20px rgba(221, 36, 118, 0.3);
}

.btn-start:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(221, 36, 118, 0.5);
}

/* Question Styles */
.question-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-answer {
    padding: 20px 30px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.btn-answer:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    transition: width 0.3s ease;
}

.question-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Result Styles */
.result-type {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700; /* Gold */
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.result-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.result-match-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.result-match-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.result-match-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4cd964;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.4s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mbti-title { font-size: 2.5rem; }
    .mbti-card { padding: 30px 20px; }
    .question-text { font-size: 1.5rem; }
    .btn-answer { padding: 15px; font-size: 1rem; }
}
