        /* ========== QUIZ STYLES ========== */
        .quiz-glass-premium {
        	background: hsla(195, 50%, 35%, 0.45) !important;
			/*background: linear-gradient(135deg, rgba(12, 35, 55, 0.95), rgba(8, 25, 45, 0.98));*/
            backdrop-filter: blur(18px);
            border-radius: 2.5rem;
            border: 1px solid rgba(100, 255, 200, 0.4);
            border-top: 1px solid rgba(100, 255, 200, 0.6);
            border-left: 1px solid rgba(100, 255, 200, 0.5);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 200, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            animation: glassBreathing 4s ease-in-out infinite alternate;
        }

		.quiz-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .quiz-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #7fffd4, #ffb347, #ff77aa, #ffd966);
            background-size: 300% 300%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: auroraTextGold 7s ease infinite;
        }

        @keyframes auroraTextGold {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .quiz-header p {
            color: rgba(255, 255, 245, 0.75);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Option cards */
        .quiz-option-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 1.25rem;
            padding: 1rem 0.75rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.65rem;
        }
        
        /* Hover: static background change - NO movement, NO transition */
        .quiz-option-card:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: #D4AF37;
        }
        
        /* Selected state - instant static change, NO animation, NO transition */
        .quiz-option-card.selected {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
            border-color: #D4AF37;
        }
        
        /* Step indicators - static styling only */
        .step-indicator {
            width: 48px;
            height: 48px;
            border-radius: 48px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            z-index: 2;
            position: relative;
            color: #D4AF37;
        }
        .step-indicator.active {
            background: linear-gradient(135deg, #D4AF37, #F5E8C7);
            color: #0A0F1F;
            border-color: #D4AF37;
        }
        .step-indicator.completed {
            background: #D4AF37;
            color: #0A0F1F;
            border-color: #D4AF37;
        }
        .step-indicator.completed span { display: none; }
        .step-indicator.completed::after { content: "✓"; font-size: 1.4rem; font-weight: bold; }
        
        .gold-gradient-text {
            background: linear-gradient(135deg, #D4AF37, #F5E8C7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Buttons - only hover effect on actionable buttons, NO movement on selection */
        .btn-gold-primary {
            background: linear-gradient(105deg, #D4AF37, #C89B3C);
            color: #0A0F1F;
            font-weight: bold;
        }
        .btn-gold-primary:hover:not(:disabled) {
            filter: brightness(1.02);
        }
        .btn-gold-primary:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        
        .btn-outline-gold {
            border: 1.5px solid #D4AF37;
            background: transparent;
        }
        .btn-outline-gold:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        
        /* Progress bar - only width change, no visual effects */
        .progress-fill {
            width: 0%;
        }
        
        /* No animation on panel changes */
        .animate-fade-slide {
            animation: none;
            opacity: 1;
        }
        
        /* Responsive grid */
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 1.2rem;
        }
        
        @media (min-width: 1024px) {
            .options-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .options-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Check icon - static */
        .check-icon {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            border: 2px solid #D4AF37;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }
        
        .quiz-option-card.selected .check-icon {
            background: #D4AF37;
        }
        
        .quiz-option-card.selected .check-icon i {
            color: #0A0F1F;
        }
        
        /* Recommendation area */
        .recommendation-deep {
            background: linear-gradient(125deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
            border-left: 4px solid #D4AF37;
            border-radius: 1.25rem;
            padding: 1.5rem;
        }
        
        /* Quiz action bar */
        .quiz-action-bar {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.25);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
        }
        
        #quizPanel {
            min-height: 380px;
        }
		


/***************************modal quiz*********************************/

/* Optimized modal - no scrollbars, perfect dimensions */

/* Modal Container - wider but not scrollable */
#thequiz .relative.w-full.max-w-4xl {
    max-width: 1000px !important;
    width: 1000px !important;
    background: linear-gradient(135deg, #0f172a, #0a0f1f, #050814) !important;
    border: 2px solid rgba(212, 175, 55, 0.6) !important;
    border-top-color: rgba(255, 215, 0, 0.8) !important;
    border-left-color: rgba(255, 200, 100, 0.5) !important;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    border-radius: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Main tile height reduction */
#thequiz .quiz-option-card {
    min-height: 105px !important;
    padding: 8px 6px !important;
}

/* Icon size reduction */
#thequiz .quiz-option-card .text-2xl {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
}

/* Text label size reduction */
#thequiz .quiz-option-card .font-bold {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
}

/* Remove scrollbar by controlling modal height */
#thequiz .relative.w-full.max-w-4xl {
    max-height: none !important;
    overflow-y: visible !important;
}

/* Reduce tile height further */
#thequiz .quiz-option-card {
    min-height: 65px !important;
    padding: 4px 4px !important;
}

/* Reduce quiz panel height */
#thequiz #quizPanel {
    min-height: 200px !important;
}

/* Reduce overall modal content to fit without scroll */
#thequiz .quiz-glass-premium {
    padding: 0.75rem !important;
}

/*********************************/

/* Target ALL h4 headings in the quiz results */
[data-theme="light"] #quizPanel h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    border-left: 3px solid #D4AF37;
    padding-left: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Style the icons inside all headings uniformly */
[data-theme="light"] #quizPanel h4 i {
    color: #ffffff !important;
    font-size: 1.2rem;
}
