:root {
  --bg: #0f1115;
  --panel: #171b22;
  --panel-2: #1f2530;
  --text: #edf2f7;
  --muted: #a7b1c2;
  --accent: #69a7ff;
  --accent-2: #9d7bff;
  --border: #2b3442;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #0d1015 0%, #111621 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(720px, calc(100% - 2rem));
}

.hero,
.subhero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, rgba(105, 167, 255, 0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(157, 123, 255, 0.16), transparent 20%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

h1 span {
  color: var(--accent);
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
}

.button:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.06);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
}

main {
  padding: 2rem 0 4rem;
}

.card {
  background: rgba(23, 27, 34, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

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

.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-link {
  font-weight: 600;
}

.code {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0.25rem 0 0.5rem;
  -webkit-user-select: all;  /* Chrome 49+ */
  -moz-user-select: all;     /* Firefox 43+ */
  -ms-user-select: all;
  user-select: all;
}

.muted {
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero,
  .subhero {
    padding-top: 4rem;
  }

  .card {
    padding: 1.1rem;
  }
}
.pokemon-go-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pokemon-go-player-img {
}
.pokemon-go-player-info {
    display: inline-block;
    vertical-align: middle;
}
