Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --secondary: #818cf8;
+ --dark: #1e1b4b;
+ --light: #f5f3ff;
+ --accent: #4f46e5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background: var(--light);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ min-height: 100vh;
+ color: white;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem;
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: rgba(255,255,255,0.2);
+ padding: 0.5rem 1rem;
+ border-radius: 2rem;
+ backdrop-filter: blur(5px);
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .cta-group {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ border: none;
+ cursor: pointer;
+ font-weight: bold;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-btn {
+ background: white;
+ color: var(--primary);
+ }
+
+ .secondary-btn {
+ background: rgba(255,255,255,0.2);
+ color: white;
+ backdrop-filter: blur(5px);
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .game-card {
+ background: white;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .game-preview {
+ height: 200px;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ }
+
+ .pricing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .price-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ text-align: center;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .price-card.featured {
+ transform: scale(1.05);
+ border: 2px solid var(--primary);
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-group {
+ flex-direction: column;
+ }
+ }