:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

#app {
  width: 100%;
  min-height: 100vh;
  text-align: center;
}

#landing-page {
  --max-width: 750px;
  position: relative;
  width: 100vw;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-touch-callout: none;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #120305;
  cursor: pointer;
}

.full-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.hero,
.games {
  width: 100%;
  line-height: 0;
}

/* ===== Top bar (DIV + CSS) — spacing based on 750px target ===== */
.top-bar {
  --bar-h: clamp(72px, calc(92 / 750 * 100vw), 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, calc(79 / 750 * 100%), 79px);
  width: 100%;
  height: var(--bar-h);
  padding: 0 calc(32 / 750 * 100%) 0 calc(42 / 750 * 100%);
  background: #120305;
  border-bottom: 1px solid #3a0a10;
}

.top-bar__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(13px, calc(20 / 750 * 100vw), 20px);
  line-height: 1.2;
  text-align: left;
}

.top-bar__text .num {
  display: inline-block;
  margin: 0 2px;
  font-style: italic;
  font-weight: 900;
  font-size: 1.35em;
  line-height: 1;
  vertical-align: baseline;
  background: linear-gradient(180deg, #fff2a8 0%, #ffd23a 45%, #f0a010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffd23a;
  filter: drop-shadow(0 0 2px rgba(255, 210, 80, 0.55));
}

.top-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, calc(184 / 750 * 100%), 184px);
  height: clamp(36px, calc(55 / 750 * 100vw), 55px);
  padding: 0;
  border-radius: 8px;
  color: #3a2200;
  font-size: clamp(13px, calc(18 / 750 * 100vw), 18px);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffe28a 0%, #f0c040 48%, #d49a18 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

/* ===== CTA (DIV + CSS) ===== */
.cta {
  width: 100%;
  padding: 10px 18px 14px;
  background: #120305;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(44px, 12vw, 56px);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(15px, 4.4vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg, #ff5a5a 0%, #e2272f 40%, #b01018 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 200, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.35);
}

.cta__btn .num {
  display: inline-block;
  margin: 0 4px;
  font-weight: 800;
  color: #ffe14a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.cta__tip {
  margin-top: 10px;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(180deg, #f8e7b0 0%, #d4b56a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e6c97a;
}

@media (min-width: 750px) {
  #landing-page {
    max-width: 750px;
    margin: 0 auto;
  }

  .top-bar {
    --bar-h: 92px;
    height: 92px;
    padding: 0 32px 0 42px;
    gap: 79px;
  }

  .top-bar__btn {
    width: 184px;
    height: 55px;
  }
}

@media (max-width: 750px) {
  #landing-page {
    max-width: 750px;
    margin: 0 auto;
  }
}
