Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --secondary: #4f46e5;
+ --background: #f8fafc;
+ --text: #1e293b;
+ --card-bg: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.5;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ .header {
+ background: var(--card-bg);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(79,70,229,0.1));
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .cta-button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s, box-shadow 0.3s;
+ margin-top: 2rem;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 20px rgba(99,102,241,0.3);
+ }
+
+ .quiz-container {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: var(--card-bg);
+ border-radius: 20px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ }
+
+ .progress-bar {
+ height: 6px;
+ background: #e2e8f0;
+ border-radius: 3px;
+ margin-bottom: 2rem;
+ }
+
+ .progress {
+ height: 100%;
+ background: var(--primary);
+ border-radius: 3px;
+ width: 25%;
+ transition: width 0.3s ease;
+ }
+
+ .options {
+ display: grid;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .option {
+ padding: 1rem;
+ border: 2px solid #e2e8f0;
+ border-radius: 10px;
+ background: none;
+ cursor: pointer;
+ transition: all 0.3s;
+ }
+
+ .option:hover {
+ border-color: var(--primary);
+ background: rgba(99,102,241,0.1);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 20px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2.5rem; }
+ .nav-links { display: none; }
+ .feature-grid { grid-template-columns: 1fr; }
+ }