/* turkish_igaming_v1 — статика; цвета в духе прототипа, без внешних CDN */
:root {
  --bg: #0c1222;
  --card: #151d33;
  --accent: #f59e0b;
  --text: #f1f5f9;
  --muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a {
  color: var(--accent);
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 8px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent);
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #0c1222;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}

.cta:hover {
  filter: brightness(1.05);
}

footer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}