/* MBTI Test Premium Styles */
#mbti-quiz-root {
    font-family: 'Inter', sans-serif;
    color: #000;
}

/* Reset for WordPress prose class if it exists */
#mbti-quiz-root * {
    max-width: none;
    margin-bottom: 0px;
    line-height: inherit;
}

#mbti-quiz-root h2,
#mbti-quiz-root h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

#mbti-quiz-root p {
    margin-bottom: 2rem;
}

#mbti-quiz-root button {
    margin: 0;
}

.score-btn {
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 10;
}

.score-btn:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.score-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: transparent;
}

/* Custom transitions for progress bar */
#mbti-quiz-root .transition-all {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Neo-brutalism shadow utility */
.brutalist-shadow {
    box-shadow: 12px 12px 0px 0px rgba(0, 0, 0, 1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .score-btn {
        border-width: 3px;
    }
}