
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f1f5f9;
        }
        .title-font {
            font-family: 'Cinzel', serif;
        }
        /* Custom Glowing & Glassmorphism effects with light frost styling */
        .glass {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.12);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-active {
            border-color: rgba(255, 69, 0, 0.5);
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.15);
        }
        .glass:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px 0 rgba(148, 163, 184, 0.18);
        }
        /* Custom Keyframe Animations */
        @keyframes pulseGlow {
            0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
            100% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); }
        }
        @keyframes fireFlicker {
            0%, 100% { filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.2)); }
            50% { filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4)); }
        }
        @keyframes floatParticle {
            0% { transform: translateY(100vh) translateX(0) scale(0.8); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateY(-10vh) translateX(60px) scale(1.4); opacity: 0; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        @keyframes bounce-subtle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes glow-pulse {
            0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.2)); }
            50% { filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.6)); }
        }
        @keyframes rotate-smooth {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes wiggle {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }
        .fire-glow-text {
            text-shadow: 0 0 12px rgba(255, 69, 0, 0.4);
            animation: glow-pulse 2.5s ease-in-out infinite;
        }
        /* Hide scrollbar but keep functionality */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        /* Smooth transitions for interactive elements */
        input, select, textarea {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        input:focus, select:focus, textarea:focus {
            transform: scale(1.01);
        }
        button {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        button:active {
            transform: scale(0.98);
        }
        button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        button:active::before {
            animation: ripple 0.6s ease-out;
        }
        @keyframes ripple {
            to {
                width: 300px;
                height: 300px;
                opacity: 0;
            }
        }
        .view-panel {
            animation: fadeIn 0.6s ease-out;
        }
        /* Staggered animations for lists */
        .stagger-item {
            opacity: 0;
            animation: slideInUp 0.6s ease-out forwards;
        }
        .stagger-item:nth-child(1) { animation-delay: 0.1s; }
        .stagger-item:nth-child(2) { animation-delay: 0.2s; }
        .stagger-item:nth-child(3) { animation-delay: 0.3s; }
        .stagger-item:nth-child(4) { animation-delay: 0.4s; }
        .stagger-item:nth-child(5) { animation-delay: 0.5s; }
        .stagger-item:nth-child(6) { animation-delay: 0.6s; }
        .stagger-item:nth-child(7) { animation-delay: 0.7s; }
        .stagger-item:nth-child(8) { animation-delay: 0.8s; }
        /* Card entrance animations */
        .card-enter {
            animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        /* Smooth state transitions */
        .transition-smooth {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .transition-fast {
            transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .transition-slow {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Hover lift effect */
        .hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        /* Badge pulse animations */
        .badge-pulse {
            animation: glow-pulse 2s ease-in-out infinite;
        }
        /* Loading spinner */
        .spinner {
            animation: rotate-smooth 1s linear infinite;
        }
