Changed around line 1
+ :root {
+ --primary-color: #4f46e5;
+ --secondary-color: #818cf8;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --accent-color: #c7d2fe;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem 1rem 4rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(to right, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 3rem auto;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary-color);
+ padding: 0.8rem 2rem;
+ border-radius: 2rem;
+ text-decoration: none;
+ font-weight: bold;
+ transition: transform 0.3s;
+ margin-top: 2rem;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .countdown-container {
+ background: white;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ margin: 2rem 0;
+ }
+
+ .countdown {
+ font-size: 3rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .progress-tracker {
+ background: white;
+ border-radius: 0.5rem;
+ padding: 1rem;
+ margin: 2rem 0;
+ }
+
+ .progress-bar {
+ background: var(--accent-color);
+ border-radius: 1rem;
+ height: 1rem;
+ overflow: hidden;
+ }
+
+ .progress {
+ background: var(--primary-color);
+ height: 100%;
+ width: 75%;
+ transition: width 0.3s;
+ }
+
+ .commitment-wall {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .commitment-card {
+ background: white;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .commitment-card:hover {
+ transform: translateY(-4px);
+ }
+
+ .commitment-form {
+ background: white;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: bold;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid var(--accent-color);
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .submit-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ cursor: pointer;
+ font-weight: bold;
+ width: 100%;
+ transition: background-color 0.3s;
+ }
+
+ .submit-button:hover {
+ background: var(--secondary-color);
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .countdown {
+ font-size: 2rem;
+ }
+
+ .commitment-wall {
+ grid-template-columns: 1fr;
+ }
+ }