Changed around line 1
+ :root {
+ --primary: #2a6b9c;
+ --secondary: #4a90e2;
+ --background: #ffffff;
+ --text: #333333;
+ --card-bg: #f5f7fa;
+ --shadow: rgba(0,0,0,0.1);
+ }
+
+ [data-theme="dark"] {
+ --primary: #4a90e2;
+ --secondary: #2a6b9c;
+ --background: #1a1a1a;
+ --text: #ffffff;
+ --card-bg: #2d2d2d;
+ --shadow: rgba(255,255,255,0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ transition: all 0.3s ease;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ header {
+ padding: 1rem;
+ background: var(--primary);
+ box-shadow: 0 2px 4px var(--shadow);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .theme-toggle {
+ cursor: pointer;
+ font-size: 1.5rem;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .comparison {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .path-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .path {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px var(--shadow);
+ transform: translateY(0);
+ }
+
+ .path:hover {
+ transform: translateY(-5px);
+ }
+
+ .path h2 {
+ color: var(--primary);
+ margin-bottom: 1.5rem;
+ }
+
+ .pros, .cons {
+ margin-bottom: 1.5rem;
+ }
+
+ ul {
+ list-style-position: inside;
+ margin-left: 1rem;
+ }
+
+ button {
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ font-size: 1rem;
+ margin-top: 1rem;
+ }
+
+ button:hover {
+ background: var(--secondary);
+ }
+
+ .score {
+ text-align: center;
+ font-size: 1.5rem;
+ margin-top: 1rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .decision-meter {
+ height: 2rem;
+ background: var(--card-bg);
+ border-radius: 1rem;
+ overflow: hidden;
+ margin: 2rem 0;
+ }
+
+ .meter-fill {
+ width: 50%;
+ height: 100%;
+ background: linear-gradient(90deg, var(--primary), var(--secondary));
+ transition: width 0.5s ease;
+ }
+
+ .recommendation {
+ text-align: center;
+ padding: 2rem;
+ background: var(--card-bg);
+ border-radius: 1rem;
+ margin: 2rem auto;
+ max-width: 800px;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--card-bg);
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .path-container {
+ grid-template-columns: 1fr;
+ }
+ }