Changed around line 1
+ :root {
+ --primary-color: #6e44ff;
+ --secondary-color: #2a1b3d;
+ --accent-color: #ff44a4;
+ --text-light: #ffffff;
+ --text-dark: #1a1a1a;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-dark);
+ background: linear-gradient(135deg, #1a1a1a, #2a1b3d);
+ min-height: 100vh;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(42, 27, 61, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--text-light);
+ text-shadow: 0 0 10px var(--accent-color);
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ #hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ color: var(--text-light);
+ z-index: 2;
+ }
+
+ .hero-backdrop {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
+ opacity: 0.3;
+ animation: pulse 4s infinite;
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 0 0 20px var(--primary-color);
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--accent-color);
+ border: none;
+ border-radius: 30px;
+ color: var(--text-light);
+ cursor: pointer;
+ transition: var(--transition);
+ box-shadow: 0 0 20px rgba(255, 68, 164, 0.3);
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 0 30px rgba(255, 68, 164, 0.5);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: rgba(255, 255, 255, 0.1);
+ padding: 2rem;
+ border-radius: 15px;
+ backdrop-filter: blur(10px);
+ transition: var(--transition);
+ color: var(--text-light);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 10px 30px rgba(110, 68, 255, 0.2);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ section {
+ padding: 5rem 1rem;
+ }
+
+ h2 {
+ text-align: center;
+ color: var(--text-light);
+ margin-bottom: 2rem;
+ font-size: 2.5rem;
+ }
+
+ footer {
+ background: rgba(42, 27, 61, 0.95);
+ padding: 2rem 5%;
+ color: var(--text-light);
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .footer-links {
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ .footer-links a:hover {
+ color: var(--accent-color);
+ }
+
+ @keyframes pulse {
+ 0% { opacity: 0.3; }
+ 50% { opacity: 0.5; }
+ 100% { opacity: 0.3; }
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links a {
+ margin: 0 1rem;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }