:root {
  color-scheme: dark;
  --green: #48ef73;
  --gold: #ffd33f;
  --orange: #ff941f;
  --text: #f8fff9;
  --muted: rgba(248, 255, 249, 0.72);
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #02070e;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(41, 121, 255, 0.34), transparent 44%),
    url("https://digitlink.mobi/backgrounds/july4-star-tile.svg"),
    linear-gradient(#061832, #000 72%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 47%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.game-wall {
  position: absolute;
  inset: 82px 34px 34px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  opacity: 0.94;
}

.game-wall img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 211, 63, 0.28);
  border-radius: 16px;
}

.topbar {
  position: relative;
  z-index: 3;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 8, 18, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.badge {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 211, 63, 0.3);
  border-radius: 999px;
  background: rgba(255, 211, 63, 0.08);
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
}

.center-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: min(660px, calc(100vw - 48px));
  min-height: 420px;
  transform: translate(-50%, -50%);
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 46px;
  border: 1px solid rgba(255, 211, 63, 0.28);
  border-radius: 28px;
  background: rgba(6, 20, 16, 0.84);
  text-align: center;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: #ffe66a;
  text-shadow: 0 0 26px rgba(255, 211, 63, 0.28);
}

.center-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.35;
}

.cta {
  width: 100%;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe66a, var(--gold) 48%, var(--orange));
  color: #211100;
  font-size: 24px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 22px 52px rgba(255, 166, 31, 0.28);
}

@media (max-width: 820px) {
  .page {
    min-height: 100svh;
  }

  .page::before {
    background:
      radial-gradient(circle at 50% 47%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54) 52%, rgba(0, 0, 0, 0.84)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 18%, transparent 62%, rgba(0, 0, 0, 0.72));
  }

  .topbar {
    height: 70px;
    padding: 0 18px;
    background: linear-gradient(180deg, rgba(0, 8, 18, 0.92), rgba(0, 8, 18, 0.52));
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .badge {
    max-width: 148px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
  }

  .game-wall {
    inset: 70px 10px 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 8px;
    opacity: 0.96;
  }

  .game-wall img {
    border-radius: 11px;
  }

  .center-card {
    top: 52%;
    width: calc(100% - 32px);
    min-height: 430px;
    gap: 14px;
    padding: 28px 22px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 211, 63, 0.18), transparent 42%),
      rgba(6, 20, 16, 0.88);
  }

  .eyebrow {
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  h1 span {
    margin-top: 7px;
    font-size: 1.18em;
  }

  .center-card p:not(.eyebrow) {
    font-size: 17px;
  }


  .cta {
    min-height: 66px;
    margin-top: 4px;
    border-radius: 14px;
    font-size: 20px;
  }
}
