Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --primary-dark: #5649c0;
+ --secondary: #00cec9;
+ --dark: #2d3436;
+ --light: #f9f9f9;
+ --gray: #dfe6e9;
+ --success: #00b894;
+ --warning: #fdcb6e;
+ --error: #d63031;
+ --shadow: 0 4px 6px rgba(0,0,0,0.1);
+ --radius: 8px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
+ animation: pulse 15s infinite alternate;
+ }
+
+ @keyframes pulse {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 4rem auto;
+ text-align: center;
+ position: relative;
+ z-index: 1;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 2rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: transform 0.2s, box-shadow 0.2s;
+ box-shadow: var(--shadow);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 12px rgba(0,0,0,0.15);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ section.features {
+ text-align: center;
+ }
+
+ .features h2 {
+ margin-bottom: 3rem;
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 0.5rem;
+ }
+
+ .code-demo {
+ background: var(--dark);
+ color: white;
+ border-radius: var(--radius);
+ }
+
+ .code-demo h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .code-container {
+ background: #1e1e1e;
+ border-radius: var(--radius);
+ overflow: hidden;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .code-example {
+ padding: 1.5rem;
+ font-family: 'Courier New', monospace;
+ color: #f8f8f2;
+ background: #1e1e1e;
+ overflow-x: auto;
+ white-space: pre;
+ tab-size: 2;
+ line-height: 1.5;
+ }
+
+ .cta-section {
+ text-align: center;
+ }
+
+ .install-code {
+ background: var(--gray);
+ padding: 1rem;
+ border-radius: var(--radius);
+ max-width: 400px;
+ margin: 1.5rem auto;
+ font-family: monospace;
+ text-align: center;
+ }
+
+ .secondary-button {
+ border: 2px solid var(--primary);
+ color: var(--primary);
+ padding: 0.75rem 2rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: background 0.2s, color 0.2s;
+ }
+
+ .secondary-button:hover {
+ background: var(--primary);
+ color: white;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.2s;
+ }
+
+ .footer-links a:hover {
+ color: var(--secondary);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }