Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #4f46e5;
+ --bg-color: #ffffff;
+ --text-color: #1f2937;
+ --gray-light: #f3f4f6;
+ --border-radius: 8px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, #a5b4fc, #6366f1);
+ color: white;
+ padding: 2rem 1rem 4rem;
+ }
+
+ 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(135deg, #fff, #e0e7ff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1rem;
+ border-radius: var(--border-radius);
+ font-weight: 500;
+ }
+
+ .hero-content {
+ text-align: center;
+ max-width: 800px;
+ margin: 4rem auto 0;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-group {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary-color);
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--border-radius);
+ text-decoration: none;
+ font-weight: 500;
+ transition: transform 0.2s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .secondary-button {
+ background: rgba(255, 255, 255, 0.1);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--border-radius);
+ text-decoration: none;
+ font-weight: 500;
+ backdrop-filter: blur(10px);
+ }
+
+ .features {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: var(--gray-light);
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ text-align: center;
+ transition: transform 0.2s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .link-creator {
+ background: var(--gray-light);
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ .creator-container {
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ input[type="url"] {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid var(--primary-color);
+ border-radius: var(--border-radius);
+ margin-bottom: 1rem;
+ font-size: 1rem;
+ }
+
+ .statistics {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .stat-card {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ text-align: center;
+ }
+
+ footer {
+ background: var(--gray-light);
+ padding: 2rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .cta-group {
+ flex-direction: column;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }