Changed around line 1
+ :root {
+ --primary-color: #9945FF;
+ --secondary-color: #14F195;
+ --background-color: #1A1A1A;
+ --text-color: #FFFFFF;
+ --card-background: #2A2A2A;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(26, 26, 26, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 20px 0;
+ }
+
+ .logo {
+ font-size: 24px;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 30px;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 160px 0 80px;
+ text-align: center;
+ background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.1));
+ }
+
+ .hero h1 {
+ font-size: 48px;
+ margin-bottom: 20px;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ /* Buttons */
+ .cta-button, .download-button {
+ display: inline-block;
+ padding: 15px 30px;
+ border-radius: 30px;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: var(--text-color);
+ text-decoration: none;
+ font-weight: bold;
+ transition: var(--transition);
+ border: none;
+ cursor: pointer;
+ }
+
+ .cta-button:hover, .download-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
+ }
+
+ /* Features Section */
+ .features {
+ padding: 80px 0;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 30px;
+ margin-top: 40px;
+ }
+
+ .feature-card {
+ background: var(--card-background);
+ padding: 30px;
+ border-radius: 15px;
+ text-align: center;
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
+ }
+
+ .feature-icon {
+ font-size: 40px;
+ margin-bottom: 20px;
+ }
+
+ /* How It Works Section */
+ .steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 30px;
+ margin-top: 40px;
+ }
+
+ .step {
+ text-align: center;
+ position: relative;
+ }
+
+ .step-number {
+ display: inline-block;
+ width: 40px;
+ height: 40px;
+ line-height: 40px;
+ border-radius: 50%;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ margin-bottom: 20px;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--card-background);
+ padding: 40px 0;
+ margin-top: 80px;
+ }
+
+ .footer-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 20px;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 20px;
+ }
+
+ .footer-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Mobile Responsive */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--background-color);
+ padding: 20px;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 36px;
+ }
+ }