Changed around line 1
+ :root {
+ --primary: #2a6bf2;
+ --secondary: #1e1e2e;
+ --accent: #f72585;
+ --text: #333;
+ --light: #ffffff;
+ --gradient: linear-gradient(135deg, var(--primary), var(--accent));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ }
+
+ .hero-section {
+ background: var(--gradient);
+ min-height: 100vh;
+ padding: 2rem;
+ color: var(--light);
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .cta-button {
+ background: rgba(255,255,255,0.2);
+ padding: 0.5rem 1rem;
+ border-radius: 2rem;
+ backdrop-filter: blur(10px);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .hero-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ text-decoration: none;
+ transition: transform 0.3s;
+ }
+
+ .primary-button {
+ background: var(--light);
+ color: var(--primary);
+ }
+
+ .secondary-button {
+ background: rgba(255,255,255,0.1);
+ color: var(--light);
+ backdrop-filter: blur(10px);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 1rem;
+ background: #fff;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .gallery {
+ background: var(--secondary);
+ color: var(--light);
+ padding: 4rem 2rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .gallery-item {
+ aspect-ratio: 1;
+ background: var(--gradient);
+ border-radius: 1rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 1.5rem;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .gallery-item:hover {
+ transform: scale(1.05);
+ }
+
+ .get-started {
+ text-align: center;
+ padding: 4rem 2rem;
+ }
+
+ .start-button {
+ display: inline-block;
+ padding: 1rem 3rem;
+ background: var(--gradient);
+ color: var(--light);
+ text-decoration: none;
+ border-radius: 2rem;
+ margin-top: 2rem;
+ transition: transform 0.3s;
+ }
+
+ footer {
+ background: var(--secondary);
+ color: var(--light);
+ padding: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--light);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .hero-buttons {
+ flex-direction: column;
+ align-items: center;
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }