:root {
  --bg-1: #030712;
  --bg-2: #0f172a;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --card: rgba(15, 23, 42, 0.62);
  --stroke: rgba(148, 163, 184, 0.2);
  --primary: #38bdf8;
  --secondary: #8b5cf6;
  --accent: #22d3ee;
  --shadow: 0 18px 38px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px circle at 12% 8%, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(700px circle at 85% 15%, rgba(139, 92, 246, 0.2), transparent 56%),
    linear-gradient(160deg, var(--bg-2), var(--bg-1));
  min-height: 100vh;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  z-index: 20;
}

.brand {
  color: #f8fafc;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand::after {
  content: " PRO";
  font-size: 0.68rem;
  padding: 2px 6px;
  margin-right: 8px;
  border-radius: 999px;
  color: #67e8f9;
  border: 1px solid rgba(103, 232, 249, 0.35);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.hero {
  padding: 88px 0 62px;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(8, 47, 73, 0.4);
  color: #7dd3fc;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #67e8f9, #818cf8, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 0 0 14px;
  color: #f8fafc;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.btn-ghost {
  color: #e2e8f0;
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.5);
}

.section {
  padding: 54px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.game-card .meta {
  padding: 12px;
}

.game-card h3 {
  margin: 0 0 6px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

a.card {
  color: inherit;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.5);
}

.page-head {
  padding: 64px 0 20px;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  margin-top: 32px;
  padding: 24px 0 40px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

ul.clean {
  padding: 0 20px 0 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
