/*
Theme Name: CrazyGames Theme
Theme URI: https://crazygames.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: Modern, fast, SEO-optimized WordPress theme for browser-game hosting platforms (like CrazyGames). Responsive, light/dark, game-centric, AJAX, analytics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crazygames-theme
Tags: games, browser-games, responsive, light, dark, ajax, analytics
*/

:root {
  --accent: #FF5722;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f8fafc;
  color: #222;
  transition: background 0.2s, color 0.2s;
}

body.dark {
  background: #18181b;
  color: #fafafa;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.accent {
  color: var(--accent) !important;
}
.bg-accent {
  background: var(--accent) !important;
  color: #fff !important;
}

.bg-gradient-cats {
  background: linear-gradient(90deg, #4f8cff 0%, #9b59b6 100%);
}

