body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF6B35; text-align: center; }
        h2 { color: #2E86AB; border-bottom: 2px solid #FFD166; }
        h3 { color: #06AED5; }
        .logo { font-size: 2em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
        .nav { background: #FF6B35; padding: 10px; display: flex; justify-content: space-between; }
        .nav-mobile { display: none; }
        .nav-links { display: flex; gap: 20px; }
        .download-btn { background: #06AED5; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; }
        .login-btn { background: #2E86AB; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; }
        .game-image { width: 100%; max-width: 600px; margin: 20px auto; display: block; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-mobile { display: block; }
        }
