Changed around line 1
+ :root {
+ --primary: #61dafb;
+ --dark: #282c34;
+ --light: #ffffff;
+ --gray: #f8f9fa;
+ --text: #212529;
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--light);
+ }
+
+ header.hero {
+ background: var(--dark);
+ color: var(--light);
+ padding: 2rem 0;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 100%;
+ background: radial-gradient(circle at 10% 20%, rgba(97, 218, 251, 0.1) 0%, transparent 20%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: var(--light);
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .cta-button {
+ background: var(--primary);
+ color: var(--dark);
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto;
+ padding: 0 2rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1.5rem;
+ 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: var(--primary);
+ color: var(--dark);
+ padding: 0.8rem 1.8rem;
+ border-radius: 4px;
+ font-weight: 600;
+ text-decoration: none;
+ 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);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 4rem auto;
+ padding: 0 2rem;
+ }
+
+ .features {
+ margin-bottom: 4rem;
+ }
+
+ .features h2 {
+ text-align: center;
+ font-size: 2.2rem;
+ margin-bottom: 3rem;
+ color: var(--dark);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ background: var(--gray);
+ padding: 2rem;
+ border-radius: 8px;
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ color: var(--dark);
+ }
+
+ .code-demo {
+ background: var(--dark);
+ color: var(--light);
+ padding: 3rem 2rem;
+ border-radius: 8px;
+ margin-top: 4rem;
+ }
+
+ .code-demo h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ font-size: 2rem;
+ }
+
+ .code-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .code-example {
+ background: #1e1e1e;
+ padding: 1.5rem;
+ border-radius: 6px;
+ overflow-x: auto;
+ font-family: 'Courier New', Courier, monospace;
+ font-size: 0.9rem;
+ line-height: 1.5;
+ }
+
+ .code-example code {
+ color: #d4d4d4;
+ }
+
+ .code-output {
+ background: var(--light);
+ color: var(--text);
+ padding: 1.5rem;
+ border-radius: 6px;
+ font-family: 'Courier New', Courier, monospace;
+ }
+
+ footer {
+ background: var(--dark);
+ color: var(--light);
+ padding: 3rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--light);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .footer-links a:hover {
+ color: var(--primary);
+ }
+
+ @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;
+ align-items: center;
+ gap: 1rem;
+ }
+ }