Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --background: #f8f9fa;
+ --text: #2d3436;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ margin: 0;
+ padding: 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ h1 {
+ color: var(--primary);
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .calculator {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ margin-bottom: 2rem;
+ }
+
+ .input-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 600;
+ }
+
+ input {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid var(--secondary);
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ width: 100%;
+ font-size: 1rem;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: #5a4ad1;
+ }
+
+ .result {
+ margin-top: 1.5rem;
+ padding: 1rem;
+ background: var(--secondary);
+ color: white;
+ border-radius: 0.5rem;
+ text-align: center;
+ font-weight: 600;
+ }
+
+ .pros-cons {
+ margin-bottom: 2rem;
+ }
+
+ .grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ }
+
+ .card h3 {
+ color: var(--primary);
+ margin-bottom: 1rem;
+ }
+
+ .card ul {
+ list-style: none;
+ padding: 0;
+ }
+
+ .card li {
+ padding: 0.5rem 0;
+ border-bottom: 1px solid #eee;
+ }
+
+ .decision {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ }
+
+ #decision-text {
+ font-size: 1.2rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .animation {
+ height: 100px;
+ background: var(--secondary);
+ border-radius: 1rem;
+ animation: pulse 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.05); }
+ 100% { transform: scale(1); }
+ }
+
+ footer {
+ text-align: center;
+ margin-top: 3rem;
+ color: #666;
+ }
+
+ @media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .calculator, .card, .decision {
+ padding: 1rem;
+ }
+ }