<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Play Road Rash in Browser</title>
<style>
body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #000; }
iframe { border: none; width: 100%; height: 100%; max-width: 800px; max-height: 600px; }
</style>
</head>
<body>
<iframe src="https://dos.zone/road-rash" allowfullscreen></iframe>
</body>
</html>