Changed around line 1
+ :root {
+ --primary: #6b21a8;
+ --secondary: #d946ef;
+ --background: #ffffff;
+ --text: #1a1a1a;
+ --accent: #f0abfc;
+ --transition: all 0.3s ease;
+ }
+
+ [data-theme="dark"] {
+ --primary: #9333ea;
+ --secondary: #d946ef;
+ --background: #1a1a1a;
+ --text: #ffffff;
+ --accent: #c026d3;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ transition: var(--transition);
+ }
+
+ header {
+ background: var(--primary);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ text-shadow: 0 0 10px var(--accent);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .login-btn {
+ background: var(--secondary);
+ color: white;
+ border: none;
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .login-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.2);
+ }
+
+ main {
+ padding-top: 80px;
+ }
+
+ .hero {
+ height: 80vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 25px;
+ font-size: 1.2rem;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 5px 20px rgba(0,0,0,0.2);
+ }
+
+ .games-grid {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .game-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .game-card {
+ background: rgba(255,255,255,0.1);
+ border-radius: 15px;
+ padding: 1rem;
+ text-align: center;
+ backdrop-filter: blur(10px);
+ border: 1px solid rgba(255,255,255,0.1);
+ transition: var(--transition);
+ }
+
+ .game-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .game-image {
+ height: 200px;
+ border-radius: 10px;
+ margin-bottom: 1rem;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .features {
+ background: var(--primary);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto 0;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(255,255,255,0.1);
+ border-radius: 15px;
+ transition: var(--transition);
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }