Changed around line 1
+ :root {
+ --primary: #ff4757;
+ --secondary: #2f3542;
+ --accent: #ffa502;
+ --background: #f1f2f6;
+ --text: #2f3542;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary), var(--accent));
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 0.5rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ opacity: 0.9;
+ }
+
+ main {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .calculator {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .question-container {
+ display: grid;
+ gap: 1.5rem;
+ margin: 2rem 0;
+ }
+
+ .question {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+
+ input {
+ padding: 0.8rem;
+ border: 2px solid #dfe4ea;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ transition: border-color 0.3s;
+ }
+
+ input:focus {
+ border-color: var(--accent);
+ outline: none;
+ }
+
+ button {
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s, background-color 0.3s;
+ }
+
+ button:hover {
+ background: #ff6b81;
+ transform: translateY(-2px);
+ }
+
+ .meter {
+ height: 20px;
+ background: #dfe4ea;
+ border-radius: 10px;
+ margin: 1rem 0;
+ overflow: hidden;
+ }
+
+ .meter-fill {
+ height: 100%;
+ background: linear-gradient(90deg, #ff4757, #ff6b81);
+ width: 0;
+ transition: width 1s ease-in-out;
+ }
+
+ .result {
+ margin-top: 2rem;
+ padding-top: 2rem;
+ border-top: 2px solid #dfe4ea;
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ .pulse {
+ animation: pulse 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% {
+ box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
+ }
+ 70% {
+ box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
+ }
+ 100% {
+ box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
+ }
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary);
+ color: white;
+ }
+
+ footer nav {
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ footer a:hover {
+ color: var(--accent);
+ }
+
+ @media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .calculator {
+ padding: 1rem;
+ }
+
+ .question-container {
+ gap: 1rem;
+ }
+ }