* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-purple: #b14aff;
  --neon-yellow: #f9f871;
  --bg-darker: #060810;
}

html, body {
  background: var(--bg-darker);
  color: #e8eaf6;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.site-header {
  text-align: center;
  padding: 36px 16px 16px;
  background: radial-gradient(ellipse at top, rgba(177, 74, 255, 0.15), transparent 60%), var(--bg-darker);
}

.site-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.8), 0 0 22px rgba(0, 240, 255, 0.4);
}

.site-header .subtitle {
  color: #9aa3c4;
  font-size: 0.95rem;
  margin-top: 8px;
}

.games-grid {
  max-width: 960px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: rgba(177, 74, 255, 0.06);
  border: 1px solid rgba(177, 74, 255, 0.25);
  border-radius: 16px;
  padding: 28px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-card:not(.game-card-soon):hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.08);
}

.icon-money {
  box-shadow: 0 0 18px rgba(249, 248, 113, 0.35);
  background: rgba(249, 248, 113, 0.08);
}

.icon-soon {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.game-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.game-card p {
  font-size: 0.9rem;
  color: #b6bdda;
  margin-bottom: 16px;
}

.play-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.5px;
}

.game-card-soon {
  opacity: 0.5;
}

.ad-slot {
  max-width: 720px;
  margin: 30px auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-height: 90px;
}

.seo-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 30px;
  color: #c4cae6;
}

.seo-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-cyan);
  margin: 20px 0 10px;
  font-size: 1.2rem;
  border-left: 4px solid var(--neon-pink);
  padding-left: 12px;
}

.seo-content p {
  font-size: 0.95rem;
  color: #b6bdda;
}

.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.78rem;
  color: #555f80;
  border-top: 1px solid rgba(177, 74, 255, 0.15);
}
