Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --primary-light: #a29bfe;
+ --secondary: #00b894;
+ --dark: #2d3436;
+ --light: #f5f6fa;
+ --gray: #dfe6e9;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ 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(--primary-light));
+ 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%, rgba(255,255,255,0) 70%);
+ transform: rotate(30deg);
+ z-index: 0;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ position: relative;
+ z-index: 1;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ padding: 0.5rem 0;
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background-color: white;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto 2rem;
+ padding: 0 1rem;
+ position: relative;
+ z-index: 1;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: white;
+ color: var(--primary);
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: var(--transition);
+ box-shadow: var(--shadow);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 4rem;
+ }
+
+ h2 {
+ font-size: 2.2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 80px;
+ height: 4px;
+ background: linear-gradient(to right, var(--primary), var(--secondary));
+ margin: 0.5rem auto 0;
+ border-radius: 2px;
+ }
+
+ .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: 10px;
+ box-shadow: var(--shadow);
+ transition: var(--transition);
+ text-align: center;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .code-demo {
+ background-color: var(--gray);
+ padding: 3rem 1rem;
+ border-radius: 10px;
+ }
+
+ .example-container {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .example-container {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ .example-note {
+ background: var(--dark);
+ color: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ font-family: monospace;
+ white-space: pre-wrap;
+ height: 100%;
+ }
+
+ .note-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ margin-bottom: 1rem;
+ box-shadow: var(--shadow);
+ }
+
+ .note-card h3 {
+ color: var(--primary);
+ margin-bottom: 0.5rem;
+ }
+
+ .note-card p {
+ color: var(--dark);
+ opacity: 0.8;
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-links a:hover {
+ color: var(--primary-light);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }