*{margin:0;padding:0;box-sizing:border-box}html{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}body{width:100%;overflow-x:hidden}#root{width:100%}:root{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;line-height:1.6;font-weight:400;--primary: #2563EB;--primary-dark: #1D4ED8;--primary-light: #3B82F6;--secondary: #4F46E5;--accent: #6366F1;--success: #10B981;--warning: #F59E0B;--danger: #EF4444;--info: #3B82F6;--gray-50: #FFFFFF;--gray-100: #F9FAFB;--gray-200: #E5E7EB;--gray-300: #D1D5DB;--gray-400: #9CA3AF;--gray-500: #6B7280;--gray-600: #4B5563;--gray-700: #374151;--gray-800: #1F2937;--gray-900: #000000;--bg-primary: #FFFFFF;--bg-secondary: #FFFFFF;--bg-tertiary: #F9FAFB;--bg-hover: #F3F4F6;--text-primary: #000000;--text-secondary: #374151;--text-tertiary: #6B7280;--text-white: #FFFFFF;--border-color: #E5E7EB;--border-color-dark: #D1D5DB;--shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);--shadow: 0 4px 14px rgba(0, 0, 0, .05);--shadow-md: 0 8px 24px rgba(0, 0, 0, .06);--shadow-lg: 0 12px 32px rgba(0, 0, 0, .08);--shadow-xl: 0 20px 40px rgba(0, 0, 0, .1);--radius-sm: 6px;--radius: 8px;--radius-md: 10px;--radius-lg: 14px;--radius-xl: 16px;--radius-2xl: 20px;--radius-circle: 50%;--radius-button: 10px;--radius-card: 14px;--radius-input: 8px;--radius-badge: 6px;--gradient-primary: linear-gradient(135deg, #2563EB, #3B82F6);--gradient-success: linear-gradient(135deg, #10B981, #34D399);--gradient-warning: linear-gradient(135deg, #F59E0B, #FBBF24);--gradient-info: linear-gradient(135deg, #3B82F6, #60A5FA);--gradient-light: linear-gradient(135deg, #F9FAFB, #FFFFFF);color:var(--text-primary);background-color:var(--bg-primary);font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[data-theme=dark]{--primary: #60A5FA;--primary-dark: #3B82F6;--primary-light: #93C5FD;--secondary: #818CF8;--accent: #A5B4FC;--success: #34D399;--warning: #FBBF24;--danger: #F87171;--bg-primary: #0F172A;--bg-secondary: #1E293B;--bg-tertiary: #334155;--bg-hover: #475569;--bg-navbar: #1E293B;--text-primary: #F1F5F9;--text-secondary: #E2E8F0;--text-tertiary: #CBD5E1;--border-color: #475569;--border-color-dark: #64748B;--shadow-sm: 0 2px 8px rgba(0, 0, 0, .8);--shadow: 0 4px 14px rgba(0, 0, 0, .9);--shadow-md: 0 8px 24px rgba(0, 0, 0, .95);--shadow-lg: 0 12px 32px rgba(0, 0, 0, 1);--shadow-xl: 0 20px 40px rgba(0, 0, 0, 1);--gradient-primary: linear-gradient(135deg, #60A5FA, #818CF8);--gradient-success: linear-gradient(135deg, #34D399, #6EE7B7);--gradient-warning: linear-gradient(135deg, #FBBF24, #FCD34D);--gradient-info: linear-gradient(135deg, #60A5FA, #93C5FD);--gradient-light: linear-gradient(135deg, #1E293B, #334155);--gray-50: #0F172A;--gray-100: #1E293B;--gray-200: #334155;--gray-300: #475569;--gray-400: #64748B;--gray-500: #94A3B8;--gray-600: #CBD5E1;--gray-700: #E2E8F0;--gray-800: #F1F5F9;--gray-900: #F8FAFC}body{margin:0;padding:0;width:100%;min-height:100vh;overflow-x:hidden;background:var(--bg-primary);background-attachment:fixed;transition:background-color .3s ease,color .3s ease}#root{width:100%;min-height:100vh;background:var(--bg-primary);transition:background-color .3s ease}a{font-weight:500;color:var(--primary);text-decoration:inherit;transition:color .2s ease}a:hover{color:var(--primary-dark)}button{cursor:pointer;font-family:inherit;transition:all .2s ease}button:hover{transform:translateY(-2px)}button:active{transform:translateY(0)}button:focus,button:focus-visible{outline:2px solid var(--primary);outline-offset:2px}html{scroll-behavior:smooth}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track{background:#fff}::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:5px}::-webkit-scrollbar-thumb:hover{background:#9ca3af}@keyframes slideIn{0%{transform:translate(400px);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOut{0%{transform:translate(0);opacity:1}to{transform:translate(400px);opacity:0}}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes scaleIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes shimmer{0%{background-position:-1000px 0}to{background-position:1000px 0}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}.animate-fadeIn{animation:fadeIn .5s ease-out}.animate-fadeInUp{animation:fadeInUp .6s ease-out}.animate-scaleIn{animation:scaleIn .3s ease-out}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-bounce{animation:bounce 1s infinite}.animate-spin{animation:spin 1s linear infinite}.glass{background:#ffffff1a;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2)}.gradient-text{background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.card-hover{transition:all .3s cubic-bezier(.4,0,.2,1)}.card-hover:hover{transform:translateY(-8px);box-shadow:0 25px 50px -12px #00000040}.shimmer{background:linear-gradient(90deg,#f0f0f0,#e0e0e0,#f0f0f0);background-size:1000px 100%;animation:shimmer 2s infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}.float{animation:float 3s ease-in-out infinite}.theme-bg-primary{background:var(--bg-primary)!important}.theme-bg-secondary{background:var(--bg-secondary)!important}.theme-bg-tertiary{background:var(--bg-tertiary)!important}.theme-bg-card{background:var(--bg-secondary)!important}.theme-text-primary{color:var(--text-primary)!important}.theme-text-secondary{color:var(--text-secondary)!important}.theme-text-tertiary{color:var(--text-tertiary)!important}.theme-border{border-color:var(--border-color)!important}.theme-shadow{box-shadow:var(--shadow)!important}.theme-shadow-md{box-shadow:var(--shadow-md)!important}.theme-shadow-lg{box-shadow:var(--shadow-lg)!important}.theme-button-primary{background:var(--gradient-primary)!important;color:var(--text-white)!important;border:none!important}.theme-button-secondary{background:var(--bg-secondary)!important;color:var(--primary)!important;border:2px solid var(--border-color)!important}.theme-card{background:var(--bg-secondary)!important;border:1px solid var(--border-color)!important;box-shadow:var(--shadow)!important;color:var(--text-primary)!important}.theme-input{background:var(--bg-secondary)!important;border:2px solid var(--border-color)!important;color:var(--text-primary)!important}.theme-input:focus{border-color:var(--primary)!important;outline:none!important}.theme-link{color:var(--primary)!important}.theme-link:hover{color:var(--primary-light)!important}*{transition:background-color .3s ease,color .3s ease,border-color .3s ease,box-shadow .3s ease!important}[data-theme=dark] *{color:inherit}[data-theme=dark] body,[data-theme=dark] #root,[data-theme=dark] div,[data-theme=dark] section,[data-theme=dark] article,[data-theme=dark] aside,[data-theme=dark] nav,[data-theme=dark] header,[data-theme=dark] footer,[data-theme=dark] main{background-color:var(--bg-primary)!important;color:var(--text-primary)!important}[data-theme=dark] header{background:#ffffff0d!important;backdrop-filter:blur(10px)!important;-webkit-backdrop-filter:blur(10px)!important;border-bottom:1px solid rgba(255,255,255,.1)!important;box-shadow:0 4px 20px #0000004d!important}[data-theme=dark] nav{background:transparent!important}[data-theme=dark] nav a{color:#60a5fa!important;font-weight:700!important}[data-theme=dark] nav a:hover{color:#93c5fd!important}[data-theme=dark] header img,[data-theme=dark] nav img{filter:brightness(1.2) contrast(1.1)!important}[data-theme=dark] .desktop-nav a,[data-theme=dark] .mobile-nav a{color:#60a5fa!important}[data-theme=dark] button.mobile-nav{background:linear-gradient(135deg,#60a5fa,#818cf8)!important;color:#fff!important}[data-theme=dark] div[style*="position: fixed"][style*="right: 0"][style*="width: 280px"]{background:#1e293bf2!important;backdrop-filter:blur(10px)!important;-webkit-backdrop-filter:blur(10px)!important;border-left:1px solid rgba(255,255,255,.1)!important}[data-theme=dark] button[style*="position: absolute"][style*="top: 15px"]{color:#e2e8f0!important}[data-theme=dark] a[style*="padding: 15px"]{color:#f1f5f9!important}[data-theme=dark] a[style*="padding: 15px"]:hover{background:#ffffff1a!important}[data-theme=dark] .desktop-nav svg,[data-theme=dark] .mobile-nav svg{filter:brightness(1.1)!important}[data-theme=dark] [style*="color: #1e293b"],[data-theme=dark] [style*="color:#1e293b"],[data-theme=dark] [style*="color: #0f172a"],[data-theme=dark] [style*="color:#0f172a"],[data-theme=dark] [style*="color: #374151"],[data-theme=dark] [style*="color:#374151"],[data-theme=dark] [style*="color: #64748b"],[data-theme=dark] [style*="color:#64748b"],[data-theme=dark] [style*="color: #4b5563"],[data-theme=dark] [style*="color:#4b5563"],[data-theme=dark] [style*="color: #111"],[data-theme=dark] [style*="color:#111"],[data-theme=dark] [style*="color: #000"],[data-theme=dark] [style*="color:#000"],[data-theme=dark] [style*="color: black"],[data-theme=dark] [style*="color:black"]{color:var(--text-primary)!important}[data-theme=dark] [style*="background: #fff"],[data-theme=dark] [style*="background:#fff"],[data-theme=dark] [style*="background: #ffffff"],[data-theme=dark] [style*="background:#ffffff"],[data-theme=dark] [style*="background: white"],[data-theme=dark] [style*="background:white"],[data-theme=dark] [style*="background: #f9fafb"],[data-theme=dark] [style*="background:#f9fafb"],[data-theme=dark] [style*="background: #f3f4f6"],[data-theme=dark] [style*="background:#f3f4f6"],[data-theme=dark] [style*="background: rgba(255,255,255"],[data-theme=dark] [style*="background:rgba(255,255,255"],[data-theme=dark] [style*="background: rgba(255, 255, 255"]{background:var(--bg-secondary)!important}[data-theme=dark] [style*="background: #dcfce7"]{background:#10b98133!important}[data-theme=dark] [style*="background: #fee2e2"]{background:#ef444433!important}[data-theme=dark] [style*="background: #dbeafe"]{background:#3b82f633!important}[data-theme=dark] [style*="background: #fef3c7"]{background:#fbbf2433!important}[data-theme=dark] [style*="color: #166534"],[data-theme=dark] [style*="color:#166534"]{color:#4ade80!important}[data-theme=dark] [style*="color: #991b1b"],[data-theme=dark] [style*="color:#991b1b"]{color:#f87171!important}[data-theme=dark] [style*="color: #1e40af"],[data-theme=dark] [style*="color:#1e40af"]{color:#60a5fa!important}[data-theme=dark] [style*="color: #92400e"],[data-theme=dark] [style*="color:#92400e"]{color:#fbbf24!important}[data-theme=dark] h1,[data-theme=dark] h2,[data-theme=dark] h3,[data-theme=dark] h4,[data-theme=dark] h5,[data-theme=dark] h6,[data-theme=dark] p,[data-theme=dark] span,[data-theme=dark] div,[data-theme=dark] label,[data-theme=dark] li,[data-theme=dark] td,[data-theme=dark] th,[data-theme=dark] a{color:var(--text-primary)!important}[data-theme=dark] [style*="color: #2563EB"],[data-theme=dark] [style*="color:#2563EB"],[data-theme=dark] [style*="color: #3b82f6"],[data-theme=dark] [style*="color:#3b82f6"]{color:var(--primary)!important}[data-theme=dark] [style*="color: #10b981"],[data-theme=dark] [style*="color:#10b981"]{color:var(--success)!important}[data-theme=dark] [style*="color: #f59e0b"],[data-theme=dark] [style*="color:#f59e0b"]{color:var(--warning)!important}[data-theme=dark] [style*="color: #ef4444"],[data-theme=dark] [style*="color:#ef4444"]{color:var(--danger)!important}[data-theme=dark] input,[data-theme=dark] textarea,[data-theme=dark] select{background-color:var(--bg-secondary)!important;color:var(--text-primary)!important;border-color:var(--border-color)!important}[data-theme=dark] button:not([style*=linear-gradient]){background-color:var(--bg-secondary)!important;color:var(--text-primary)!important}[data-theme=dark] table{background-color:var(--bg-secondary)!important;color:var(--text-primary)!important}[data-theme=dark] th,[data-theme=dark] td{border-color:var(--border-color)!important;color:var(--text-primary)!important}[data-theme=dark] [style*="border: 1px solid #e"],[data-theme=dark] [style*="border:1px solid #e"],[data-theme=dark] [style*="border: 2px solid #e"],[data-theme=dark] [style*="border:2px solid #e"],[data-theme=dark] [style*="border: 1px solid #d"],[data-theme=dark] [style*="border:1px solid #d"],[data-theme=dark] [style*="border: 2px solid #d"],[data-theme=dark] [style*="border:2px solid #d"]{border-color:var(--border-color)!important}[data-theme=dark] [style*="color: #fff"],[data-theme=dark] [style*="color:#fff"],[data-theme=dark] [style*="color: #ffffff"],[data-theme=dark] [style*="color:#ffffff"],[data-theme=dark] [style*="color: white"],[data-theme=dark] [style*="color:white"]{color:#fff!important}[data-theme=dark] img,[data-theme=dark] svg{filter:none}[data-theme=dark] .gradient-text{background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}[data-theme=dark]::-webkit-scrollbar-track{background:var(--bg-primary)}[data-theme=dark]::-webkit-scrollbar-thumb{background:var(--gray-400)}[data-theme=dark]::-webkit-scrollbar-thumb:hover{background:var(--gray-500)}html,body{width:100%;overflow-x:hidden;-webkit-text-size-adjust:100%}*{box-sizing:border-box}.desktop-nav{display:flex!important}.mobile-nav{display:none!important}@media screen and (max-width:768px){.desktop-nav{display:none!important}.mobile-nav{display:flex!important}body{min-width:100%!important;overflow-x:hidden!important}#root{min-width:100%!important;width:100%!important}div[style*="maxWidth: 1200px"],div[style*="max-width: 1200px"]{max-width:100%!important;padding-left:10px!important;padding-right:10px!important}header{padding:6px 0!important;margin-bottom:10px!important}header nav{flex-direction:row!important;justify-content:space-between!important;align-items:center!important;gap:8px!important;padding:0 10px!important}header nav>div:first-child{flex-direction:row!important;gap:8px!important;flex-wrap:nowrap!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}header nav>div:first-child>a>div{font-size:.9rem!important}header nav>div:first-child>a{font-size:.75rem!important;padding:6px 8px!important;white-space:nowrap!important}header nav>div:last-child{gap:8px!important;flex-shrink:0!important}header nav>div:last-child>a svg{width:24px!important;height:24px!important}header nav>div:last-child>div>div:first-child{font-size:1.2rem!important}header nav>div:last-child>div:nth-child(3)>div:first-child{font-size:1.2rem!important}header nav>div:last-child>div:last-child>div:first-child{padding:4px 8px!important;gap:6px!important}header nav>div:last-child>div:last-child>div:first-child>div:first-child{width:28px!important;height:28px!important;font-size:.9rem!important}header nav>div:last-child>div:last-child>div:first-child>div:nth-child(2){display:none!important}header nav>div:last-child>div:last-child>div:first-child>div:last-child{font-size:.7rem!important}header nav>div:last-child>div>div[style*="position: absolute"]{position:fixed!important;inset:50px 10px auto auto!important;width:280px!important;max-width:calc(100vw - 20px)!important;max-height:80vh!important;overflow-y:auto!important;z-index:9999!important}div[style*="display: flex"][style*="gap: 20px"]{flex-direction:column!important;gap:15px!important}.question-navigator-desktop{display:none!important}.mobile-menu-btn{display:block!important}div[style*="position: fixed"][style*="zIndex: 10000"]{padding:60px 10px 10px!important}button[style*="position: fixed"][style*="top: 15px"][style*="left: 15px"]{top:10px!important;left:10px!important;padding:8px 15px!important;font-size:.85rem!important}div[style*="position: fixed"][style*="zIndex: 10000"]>div>div:first-child{flex-direction:column!important;align-items:flex-start!important;gap:10px!important}div[style*="position: fixed"][style*="zIndex: 10000"]>div>div:first-child>div:last-child{width:100%!important;justify-content:space-between!important}div[style*="flex: 1"]{flex:1 1 100%!important;max-width:100%!important}button{font-size:.9rem!important;padding:10px 15px!important}div[style*=gridTemplateColumns]{grid-template-columns:1fr!important}div[style*="padding: 40px"],div[style*="padding: 50px"],div[style*="padding: 30px"]{padding:15px!important}h1{font-size:1.5rem!important}h2{font-size:1.3rem!important}h3{font-size:1.1rem!important}}@media screen and (max-width:480px){body{font-size:14px!important}header{padding:6px 0!important}header nav{padding:0 8px!important}header nav>div:first-child>a>div{font-size:.8rem!important}header nav>div:first-child>a{font-size:.7rem!important;padding:4px 6px!important}header nav>div:last-child>a svg{width:20px!important;height:20px!important}header nav>div:last-child>div>div:first-child{font-size:1rem!important}header nav>div:last-child>div:last-child>div:first-child>div:first-child{width:24px!important;height:24px!important;font-size:.8rem!important}header nav>div:last-child>div>div[style*="position: absolute"],header nav>div:last-child>div>div[style*="position: fixed"]{top:45px!important;right:5px!important;width:260px!important}button{font-size:.85rem!important;padding:8px 12px!important}.mobile-menu-btn{width:50px!important;height:50px!important;font-size:1.3rem!important}}@media screen and (max-width:768px)and (orientation:landscape){div[style*="padding: 40px"],div[style*="padding: 50px"],div[style*="padding: 60px"]{padding:15px 20px!important}header{padding:6px 0!important;margin-bottom:10px!important}}@media(hover:none)and (pointer:coarse){a,button,input,select{min-height:44px!important;min-width:44px!important}*:hover{transition:none!important}}
