/* ==========================================
   CUSTOM BRANDED SCROLLBAR
   ========================================== */
/* Firefox standard scrollbar */
html, body, * {
    scrollbar-width: thin;
    scrollbar-color: #ff2d92 #fff0f6;
}

/* Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #fff0f6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff2d92 0%, #e01a7d 100%);
    border-radius: 9999px;
    border: 2px solid #fff0f6;
    transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e01a7d 0%, #ba0f65 100%);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.chunky-text {
    letter-spacing: -0.03em;
}

/* Quiz Modal Animations & Styles */
.quiz-option-btn {
    transition: all 0.2s ease-in-out;
}

.quiz-option-btn:hover {
    transform: translateY(-2px);
    border-color: #ff2d92;
    background-color: #fff5f9;
}

.quiz-option-btn.selected {
    border-color: #ff2d92;
    background-color: #ffe0ed;
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 45, 146, 0.15);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-pop-in {
    animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 45, 146, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 45, 146, 0.6);
    }
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

