Changed around line 1
+ :root {
+ --primary-color: #6b46c1;
+ --secondary-color: #e53e3e;
+ --bg-dark: #1a202c;
+ --text-light: #f7fafc;
+ --text-dark: #2d3748;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-dark);
+ background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
+ url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAzNGgLTJWMzJ6TTIyIDIydjJoMnYtMnoiIGZpbGw9IiNmZmYiIG9wYWNpdHk9Ii4yIi8+PC9nPjwvc3ZnPg==');
+ color: var(--text-light);
+ padding: 2rem;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--primary-color);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .game-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: var(--spacing);
+ }
+
+ .game-card {
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 15px;
+ padding: 1.5rem;
+ transition: transform 0.3s ease;
+ backdrop-filter: blur(10px);
+ }
+
+ .game-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .game-image {
+ height: 200px;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ border-radius: 10px;
+ margin-bottom: 1rem;
+ }
+
+ .game-tag {
+ background: var(--secondary-color);
+ padding: 0.25rem 0.75rem;
+ border-radius: 15px;
+ font-size: 0.8rem;
+ color: var(--text-light);
+ }
+
+ button {
+ background: var(--primary-color);
+ color: var(--text-light);
+ border: none;
+ padding: 0.75rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ button:hover {
+ transform: scale(1.05);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .game-grid {
+ grid-template-columns: 1fr;
+ }
+ }