:root {
  --bg: #02070E;
  --navy: #06121F;
  --navy2: #0B1E33;
  --navy3: #122C49;
  --primary: #34BDFF;
  --primary-mid: #0A84E8;
  --light: #ABE2FD;
  --white: #EAF6FF;
  --steel: #6C879F;
  --slate: #9DB4CC;
  --accent: #F5A623;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% 15%, var(--navy3), var(--bg) 65%);
  color: var(--white);
  font-family: 'Barlow', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  max-width: 32rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.badge {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.club-name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--white);
}

.headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light);
  margin: 0.5rem 0 1.5rem;
}

.body-copy {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 2rem;
}

.handle {
  font-size: 0.9rem;
  color: var(--accent);
  margin: 0;
}

.ig-link {
  color: inherit;
  text-decoration: none;
}

.ig-link:hover {
  text-decoration: underline;
}
