:root {
  color-scheme: dark;
  --ink: #fff4dc;
  --muted: #c7d1c6;
  --read-muted: #d0d8cf;
  --soft: #030806;
  --paper: #07140f;
  --panel: rgba(8, 23, 17, .94);
  --line: rgba(247, 198, 93, .26);
  --green: #18c773;
  --green-dark: #75f0b2;
  --red: #ff415a;
  --violet: #9b6cff;
  --gold: #f7c65d;
  --blue: #f7c65d;
  --shadow: 0 26px 76px rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(247, 198, 93, .1), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 65, 90, .08), transparent 28%),
    linear-gradient(180deg, #030806 0%, #06110d 48%, #030705 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

a,
button,
select,
input,
textarea,
summary {
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease, transform .18s ease, filter .18s ease;
}

p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  background: var(--gold);
  color: #1a1208;
  left: 12px;
  padding: 10px 14px;
  position: absolute;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  background: rgba(3, 10, 7, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247, 198, 93, .2);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-width: 0;
}

.brand span:last-child {
  overflow-wrap: anywhere;
}

.brand-mark {
  align-items: center;
  background: url("/assets/images/logo/wingo-google-site-logo-mark-96.png?v=20260602-wow1") center / contain no-repeat;
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(247, 198, 93, .28);
  color: transparent;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  width: 40px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  border-radius: 8px;
  color: #cbd6cc;
  font-size: .93rem;
  font-weight: 800;
  padding: 10px 11px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(247, 198, 93, .12);
  box-shadow: 0 0 0 1px rgba(247, 198, 93, .18), 0 0 22px rgba(247, 198, 93, .16);
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--gold);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero,
.section,
.band,
.page-hero,
.game-layout,
.article-grid,
.blog-list,
.contact-layout,
.article-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 32px);
}

.hero {
  align-items: center;
  display: flex;
  gap: clamp(30px, 5vw, 58px);
  isolation: isolate;
  max-width: none;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(4, 14, 10, .96) 0%, rgba(4, 14, 10, .82) 38%, rgba(4, 14, 10, .42) 68%, rgba(4, 14, 10, .2) 100%),
    linear-gradient(0deg, rgba(6, 19, 15, 1) 0%, rgba(6, 19, 15, 0) 32%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  display: grid;
  gap: 24px;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-lede,
.page-hero p {
  font-size: 1.12rem;
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease, transform .18s ease, filter .18s ease;
}

.button:hover {
  box-shadow: 0 0 0 1px rgba(247, 198, 93, .28), 0 0 34px rgba(247, 198, 93, .26);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.text-link:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button.primary {
  background: linear-gradient(135deg, #f9d36a, #f2a51f);
  border-color: rgba(255, 223, 138, .9);
  box-shadow: 0 16px 36px rgba(247, 198, 93, .28);
  color: #221605;
}

.button.secondary {
  background: rgba(8, 30, 22, .78);
  border-color: rgba(247, 198, 93, .32);
  color: var(--ink);
}

.button.secondary:hover {
  background: rgba(247, 198, 93, .12);
  border-color: rgba(247, 198, 93, .72);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 8px 0 0;
}

.hero-stats div {
  background: rgba(3, 14, 10, .9);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.hero-stats div:hover,
.live-result-card:hover,
.step-card:hover,
.pick-card:hover,
.feature-card:hover,
.post-card:hover,
.content-card:hover,
.article-cta:hover,
.mode-item:hover {
  background: var(--panel);
  border-color: rgba(247, 198, 93, .62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32), 0 0 28px rgba(247, 198, 93, .12);
  transform: translateY(-2px);
}

.hero-stats div:hover {
  background: rgba(3, 14, 10, .94);
}

.feature-card:hover,
.post-card:hover,
.content-card:hover,
.article-cta:hover,
.live-result-card:hover,
.step-card:hover,
.pick-card:hover {
  background-image: none;
  color: inherit;
}

.feature-card:hover *,
.post-card:hover *,
.content-card:hover *,
.article-cta:hover *,
.live-result-card:hover *,
.step-card:hover *,
.pick-card:hover * {
  color: inherit;
}

.feature-card:hover h2,
.feature-card:hover h3,
.post-card:hover h2,
.post-card:hover h3,
.content-card:hover h2,
.content-card:hover h3,
.article-cta:hover h2,
.article-cta:hover h3,
.live-result-card:hover strong,
.step-card:hover h3,
.pick-card:hover strong {
  color: var(--ink);
}

.feature-card:hover p,
.post-card:hover p,
.content-card:hover p,
.article-cta:hover p,
.step-card:hover p,
.pick-card:hover small {
  color: var(--muted);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 950;
  margin: 0;
}

.hero-stats dd {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  margin: 4px 0 0;
}

.hero-media {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 850px;
}

.practice-lobby,
.how-play-section {
  display: grid;
  gap: 30px;
}

.practice-lobby {
  align-items: center;
  grid-template-columns: .86fr 1.14fr;
  padding-bottom: clamp(40px, 6vw, 72px);
  padding-top: clamp(40px, 6vw, 72px);
}

.lobby-board {
  display: grid;
  gap: 16px;
}

.lobby-board-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.lobby-board-heading h3 {
  margin-top: 6px;
}

.lobby-board-heading strong {
  color: var(--gold);
  font-size: .92rem;
  text-align: right;
  white-space: nowrap;
}

.lobby-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lobby-points span {
  background: rgba(247, 198, 93, .1);
  border: 1px solid rgba(247, 198, 93, .28);
  border-radius: 8px;
  color: #f2d99e;
  font-size: .86rem;
  font-weight: 900;
  padding: 9px 11px;
}

.how-play-section,
.intro-grid,
.image-section,
.faq {
  padding-bottom: clamp(42px, 6vw, 72px);
  padding-top: clamp(42px, 6vw, 72px);
}

.live-results-grid,
.step-grid,
.pick-grid {
  display: grid;
  gap: 16px;
}

.live-results-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.live-result-card,
.step-card,
.pick-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.live-result-card::before,
.step-card::before,
.pick-card::before {
  background: linear-gradient(90deg, transparent, rgba(247, 198, 93, .5), transparent);
  content: "";
  height: 1px;
  left: 0;
  opacity: .55;
  position: absolute;
  right: 0;
  top: 0;
}

.live-result-card {
  align-items: center;
  min-height: 190px;
  text-align: center;
}

.practice-lobby .live-result-card {
  gap: 10px;
  min-height: 142px;
  padding: 16px 14px;
}

.live-result-card small {
  color: #e7dbc4;
}

.live-result-card strong,
.pick-card strong {
  color: var(--ink);
}

.live-result-card.active {
  border-color: rgba(247, 198, 93, .72);
  box-shadow: 0 0 0 1px rgba(247, 198, 93, .24), 0 0 34px rgba(247, 198, 93, .18), var(--shadow);
}

.live-result-card.active .result-ball {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .08), 0 0 30px rgba(247, 198, 93, .2);
}

.step-card {
  min-height: 184px;
}

.step-card h3 {
  margin-top: 4px;
}

.practice-copy {
  display: grid;
  gap: 18px;
}

.pick-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pick-card {
  align-content: start;
  min-height: 170px;
}

.practice-lobby .pick-grid {
  grid-template-columns: repeat(4, 1fr);
}

.practice-lobby .pick-card {
  gap: 10px;
  min-height: 132px;
  padding: 16px 14px;
}

.pick-card .token {
  height: 48px;
  width: 48px;
}

.practice-lobby .result-ball {
  height: 52px;
  width: 52px;
}

.practice-lobby .pick-card .token {
  height: 38px;
  width: 38px;
}

.pick-card.gold-pick > span {
  align-items: center;
  background: linear-gradient(135deg, #f9d36a, #f2a51f);
  border-radius: 999px;
  color: #221605;
  display: inline-flex;
  font-size: .95rem;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.practice-lobby .pick-card.gold-pick > span {
  height: 42px;
  width: 42px;
}

.intro-grid {
  display: grid;
  gap: 26px;
}

.feature-grid,
.article-grid,
.blog-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.post-card,
.content-card,
.contact-form,
.game-board,
.result-panel,
.mini-board,
.article-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card,
.post-card,
.content-card,
.article-cta {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.number-badge {
  align-items: center;
  background: rgba(247, 198, 93, .13);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 950;
  justify-content: center;
  min-height: 32px;
  padding: 7px 10px;
  width: fit-content;
}

.band {
  background: linear-gradient(135deg, rgba(13, 35, 26, .96), rgba(42, 20, 24, .86));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: clamp(30px, 5vw, 56px);
  margin-top: clamp(30px, 5vw, 56px);
}

.two-column,
.contact-layout,
.game-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.two-column > div,
.content-band {
  display: grid;
  gap: 18px;
}

.text-link {
  color: var(--gold);
  font-weight: 950;
  width: fit-content;
}

.text-link:hover {
  color: #ffe6a6;
  text-shadow: 0 0 18px rgba(247, 198, 93, .36);
}

.mini-board {
  background: radial-gradient(circle at 78% 22%, rgba(247, 198, 93, .16), transparent 28%), #030d09;
  color: #fff;
  display: grid;
  gap: 22px;
  padding: 24px;
}

.mini-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.mini-top span,
.mini-top strong {
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 10px 12px;
}

.token-row {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  min-height: 120px;
}

.token,
.result-ball {
  border-radius: 999px;
  display: inline-flex;
}

.token {
  height: 62px;
  width: 62px;
}

.token.active {
  box-shadow: 0 0 0 12px rgba(255, 255, 255, .1);
  height: 84px;
  width: 84px;
}

.red,
.dot.red,
.result-ball.red {
  background: var(--red);
}

.green,
.dot.green,
.result-ball.green {
  background: var(--green);
}

.violet,
.dot.violet,
.result-ball.violet {
  background: var(--violet);
}

.history-stack {
  display: grid;
  gap: 10px;
}

.history-stack span {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px;
}

.dot {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.image-section {
  align-items: center;
}

.image-frame {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.check-list {
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
}

.check-list.columns {
  grid-template-columns: repeat(2, 1fr);
}

.faq {
  display: grid;
  gap: 16px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

details:hover {
  border-color: rgba(247, 198, 93, .55);
  box-shadow: 0 0 26px rgba(247, 198, 93, .12);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-top: 12px;
}

.page-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 36px;
}

.article-page .page-hero {
  padding-bottom: 28px;
}

.page-hero p:not(.eyebrow) {
  color: var(--read-muted);
}

.page-hero h1 {
  font-size: clamp(2.45rem, 5.6vw, 4.35rem);
}

.article-page {
  max-width: 920px;
}

.article-body {
  display: grid;
  gap: 24px;
}

.article-body p,
.article-body li,
.article-body span {
  color: var(--read-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.article-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-top: 12px;
}

.article-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}

.rules-table {
  display: grid;
  gap: 12px;
}

.rules-table div {
  align-items: start;
  background: rgba(10, 30, 22, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 120px 1fr;
  padding: 16px;
}

.rules-table span {
  color: var(--muted);
}

.article-cta {
  margin-top: 14px;
}

.game-board,
.result-panel,
.contact-form {
  padding: clamp(18px, 4vw, 28px);
}

.game-status {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}

.game-status > div {
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

small {
  color: var(--muted);
  display: block;
  font-weight: 800;
}

[data-countdown] {
  color: var(--red);
}

.choice-panel,
.stake-panel {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.stake-panel {
  grid-template-columns: repeat(4, 1fr);
}

.choice-panel button,
.stake-panel button {
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 56px;
}

.choice-panel button:hover,
.stake-panel button:hover {
  border-color: rgba(247, 198, 93, .72);
  box-shadow: 0 0 24px rgba(247, 198, 93, .18);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.choice-panel button {
  color: #fff;
}

.stake-panel button {
  background: #251b0b;
  border-color: rgba(247, 198, 93, .32);
  color: #fff;
}

.choice-panel button.selected,
.stake-panel button.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(247, 198, 93, .18), 0 0 24px rgba(247, 198, 93, .22);
}

.round-reveal {
  align-items: center;
  background: radial-gradient(circle at 18% 18%, rgba(247, 198, 93, .12), transparent 38%), rgba(255, 255, 255, .06);
  border: 1px solid rgba(247, 198, 93, .26);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
}

.round-reveal strong {
  color: var(--ink);
}

.round-reveal.revealed {
  animation: revealPulse .42s ease;
  border-color: rgba(247, 198, 93, .78);
  box-shadow: 0 0 34px rgba(247, 198, 93, .16);
}

@keyframes revealPulse {
  0% {
    transform: scale(.985);
  }

  70% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

.round-message,
.fine-print,
.form-note {
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  margin-top: 16px;
  padding: 14px;
}

.result-panel {
  display: grid;
  gap: 18px;
}

.latest-result {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.result-ball {
  align-items: center;
  color: #fff;
  font-weight: 950;
  height: 50px;
  justify-content: center;
  width: 50px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
}

tr:hover td {
  background: rgba(247, 198, 93, .06);
}

.article-grid {
  grid-template-columns: repeat(2, 1fr);
}

.blog-list {
  grid-template-columns: repeat(3, 1fr);
}

.post-card img,
.card-image,
.post-graphic {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.post-graphic {
  align-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(247, 198, 93, .18), transparent 38%), #081b14;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.post-graphic .token:nth-child(2) {
  transform: translateY(-18px);
}

.warning {
  border-color: rgba(255, 65, 90, .44);
}

.contact-layout {
  grid-template-columns: 1fr .9fr;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(247, 198, 93, .68);
  box-shadow: 0 0 24px rgba(247, 198, 93, .12);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--green-dark);
  margin: 0;
}

.site-footer {
  align-items: start;
  background: #020604;
  color: #fff;
  display: grid;
  column-gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(280px, 430px) max-content;
  justify-content: center;
  row-gap: 28px;
  padding: 38px clamp(18px, 4vw, 54px);
}

.site-footer > div:first-child {
  max-width: 430px;
}

.site-footer p {
  color: #b5c2b7;
  margin-top: 12px;
  max-width: 430px;
}

.site-footer .copyright {
  color: var(--gold);
  font-size: .92rem;
  font-weight: 850;
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 0;
  max-width: none;
  text-align: center;
  width: 100%;
}

.footer-links {
  align-content: start;
  border-left: 1px solid rgba(247, 198, 93, .22);
  display: grid;
  gap: 12px;
  justify-items: start;
  padding-left: 28px;
}

.footer-links a {
  color: #e7dbc4;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(247, 198, 93, .34);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(3, 10, 7, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    left: 18px;
    padding: 10px;
    position: absolute;
    right: 18px;
    top: 68px;
  }

  .site-nav.open {
    display: grid;
  }

  .hero,
  .two-column,
  .contact-layout,
  .game-layout,
  .practice-lobby {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .live-results-grid,
  .step-grid,
  .article-grid,
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-lobby .pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div:first-child {
    width: 100%;
  }

  .footer-links {
    border-left: 0;
    justify-items: start;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3.05rem;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: .95rem;
  }

  .hero,
  .section,
  .band,
  .page-hero,
  .game-layout,
  .article-grid,
  .blog-list,
  .contact-layout,
  .article-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-stats,
  .feature-grid,
  .live-results-grid,
  .step-grid,
  .practice-lobby .pick-grid,
  .pick-grid,
  .article-grid,
  .blog-list,
  .game-status,
  .choice-panel,
  .stake-panel,
  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .hero .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats div {
    padding: 12px;
  }

  .hero-stats dt {
    font-size: 1.35rem;
  }

  .hero-stats dd {
    font-size: .78rem;
  }

  .rules-table div {
    grid-template-columns: 1fr;
  }

  .band {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
  }
}
