Changed around line 1
+ :root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --dark-color: #2d3436;
+ --light-color: #f5f6fa;
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--dark-color);
+ overflow-x: hidden;
+ }
+
+ .hero {
+ background: var(--gradient);
+ min-height: 100vh;
+ padding: 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::after {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ background: url('data:image/svg+xml,');
+ background-size: 50px;
+ opacity: 0.5;
+ z-index: 1;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ position: relative;
+ z-index: 2;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: bold;
+ }
+
+ .hero-content {
+ text-align: center;
+ color: white;
+ margin-top: 10vh;
+ position: relative;
+ z-index: 2;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary-color);
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ text-decoration: none;
+ font-weight: bold;
+ margin-top: 2rem;
+ transition: transform 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .features {
+ padding: 5rem 2rem;
+ background: var(--light-color);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .games-showcase {
+ padding: 5rem 2rem;
+ }
+
+ .game-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .game-card {
+ background: var(--gradient);
+ padding: 2rem;
+ border-radius: 15px;
+ color: white;
+ min-height: 200px;
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-end;
+ transition: transform 0.3s;
+ }
+
+ .game-card:hover {
+ transform: scale(1.05);
+ }
+
+ .pricing {
+ padding: 5rem 2rem;
+ background: var(--light-color);
+ }
+
+ .pricing-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .pricing-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .pricing-card.premium {
+ background: var(--gradient);
+ color: white;
+ transform: scale(1.05);
+ }
+
+ footer {
+ background: var(--dark-color);
+ color: white;
+ padding: 3rem 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid, .game-grid, .pricing-grid {
+ grid-template-columns: 1fr;
+ }
+ }