:root {
  --surface-backdrop: #0f1117;
  --surface-panels: #13151d;
  --surface-hero-card: rgba(19, 21, 29, 0.9);
  --surface-usp-band: rgba(19, 21, 29, 0.6);
  --border-panels: #222738;
  --input-fill: #222738;
  --input-stroke: #323954;
  --text-primary: #fafafa;
  --text-secondary: #a1a4b5;
  --text-tertiary: #8f92a7;
  --text-inverse: #222738;
  --sunrise-grenadine: #ff4f56;
  --sunrise-orange: #ff8c4d;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--surface-backdrop);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface-backdrop);
  color: var(--text-primary);
  font-family:
    "Geist",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.beta-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 24px 0 0;
  background: var(--surface-backdrop);
}

.hero-shell {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}

.hero-inner {
  position: relative;
  display: flex;
  width: min(calc(100% - 48px), 1200px);
  height: 618px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.hero-inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -45px;
  top: -410px;
  width: 1795px;
  height: 1791px;
  background: url("./assets/beta-landing/cta-glow.png") center / contain
    no-repeat;
  opacity: 1;
  pointer-events: none;
  transform: rotate(25.93deg);
  transform-origin: center;
}

.hero-inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -585px;
  top: -267px;
  width: 1667px;
  height: 1664px;
  background: url("./assets/beta-landing/cta-glow.png") center / contain
    no-repeat;
  opacity: 0.2;
  pointer-events: none;
  transform: rotate(-171.11deg);
  transform-origin: center;
}

.brand {
  position: relative;
  z-index: 6;
  width: 200px;
  height: 47px;
  flex: 0 0 47px;
}

.brand img {
  width: 100%;
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  height: 263px;
  flex: 0 0 263px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 64px 0 24px;
}

.hero-copy h1,
.request-copy h2 {
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.hero-copy h1 {
  width: 681px;
  max-width: 100%;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1.6px;
}

.hero-copy p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: -0.6px;
}

.hero-cards {
  position: absolute;
  z-index: 6;
  top: 0;
  right: -361px;
  width: 1279px;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.request-card {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 276px;
  flex: 0 0 276px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  overflow: hidden;
  padding: 64px 16px;
  border: 1px solid var(--border-panels);
  border-radius: var(--radius);
  background: var(--surface-hero-card);
}

.request-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.request-copy h2 {
  width: 100%;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.9px;
}

.request-copy p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -0.45px;
}

.request-controls {
  display: flex;
  width: 546px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}

.email-field {
  position: relative;
  display: flex;
  width: 390px;
  max-width: calc(100% - 100px);
  height: 48px;
  align-items: center;
  border: 1px solid var(--input-stroke);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: var(--input-fill);
}

.email-field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-primary);
  padding: 0 44px 0 12px;
  font-size: 16px;
  line-height: 22px;
}

.email-field input::placeholder {
  color: var(--text-tertiary);
  opacity: 1;
}

.mail-icon {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  color: var(--text-tertiary);
  pointer-events: none;
}

.request-controls button {
  display: inline-flex;
  width: auto;
  height: 48px;
  min-width: 100px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(
    160deg,
    var(--sunrise-grenadine) 12%,
    var(--sunrise-orange) 94%
  );
  color: var(--text-inverse);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.request-controls button:focus-visible {
  outline: 2px solid var(--sunrise-orange);
  outline-offset: 3px;
}

.usp-section {
  --usp-band-start: 64px;
  position: relative;
  display: flex;
  width: 100%;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 112px 24px 48px;
  background: transparent;
}

.usp-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: var(--usp-band-start) 0 0;
  background: var(--surface-usp-band);
  pointer-events: none;
}

.usp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1200px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.usp-card {
  display: flex;
  height: 234px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 32px 24px;
  border: 1px solid var(--border-panels);
  border-radius: var(--radius);
  background: var(--surface-usp-band);
  text-align: center;
}

.usp-card > div:first-child {
  min-height: 70px;
}

.usp-card h2 {
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.usp-card p {
  width: 100%;
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.usp-art {
  position: relative;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  overflow: visible;
}

.usp-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/beta-landing/usp-ellipse-213.svg") center / contain
    no-repeat;
}

.usp-art img {
  position: absolute;
  max-width: none;
  height: auto;
}

.usp-card:nth-child(1) .usp-art img {
  left: -27px;
  top: -14px;
  width: 134px;
}

.usp-card:nth-child(2) .usp-art img {
  left: -6px;
  top: -1px;
  width: 98px;
}

.usp-card:nth-child(3) .usp-art img {
  left: -8px;
  top: -7px;
  width: 100px;
  height: 95px;
}

.games-section {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 508px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 64px 10px 0;
  background: transparent;
}

.games-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: var(--surface-backdrop);
  pointer-events: none;
}

.games-copy,
.game-tiles-wrap {
  position: relative;
  z-index: 1;
}

.games-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: center;
}

.games-copy h2 {
  width: 100%;
  margin: 0;
  color: var(--text-primary);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.9px;
}

.games-copy p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.game-tiles-wrap {
  position: relative;
  width: 1024px;
  max-width: 1024px;
  height: 319.688px;
  max-height: 319.688px;
  flex: 0 0 319.688px;
}

.game-tiles {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.vip-section {
  display: flex;
  width: 100%;
  height: 330px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 32px 10px;
  background: var(--surface-panels);
}

.vip-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  min-width: 0;
  align-items: center;
  padding: 0 48px;
}

.vip-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 450px;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.vip-copy h2 {
  width: 528px;
  max-width: 100%;
  margin: 0;
  color: var(--text-primary);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.9px;
}

.vip-copy p {
  width: 630px;
  max-width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.vip-art {
  position: relative;
  width: 571px;
  height: 330px;
  flex: 0 0 571px;
}

.vip-art img {
  position: absolute;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.vip-main-badge {
  left: 150px;
  top: 0;
  width: 421px;
}

.vip-wood-medal {
  left: 58px;
  top: 0;
  width: 189px;
  opacity: 0.8;
}

.vip-bronze-medal {
  left: 0;
  top: 188px;
  width: 215px;
  opacity: 0.8;
}

.transparency-section {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  height: 330px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 32px 10px;
  background: var(--surface-panels);
}

.transparency-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% - 49px);
  top: 80px;
  width: 1352px;
  height: 1265px;
  background: url("./assets/beta-landing/transparency-glow.png") center / cover
    no-repeat;
  pointer-events: none;
  transform: translateX(-50%) rotate(37.78deg);
  transform-origin: center;
}

.transparency-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 266px;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px;
}

.transparency-art {
  position: relative;
  min-width: 0;
  height: 330px;
  flex: 1 0 0;
  margin-top: -32px;
}

.transparency-search {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 371px;
  max-width: none;
  height: 364px;
  object-fit: cover;
  pointer-events: none;
  transform: translateX(-50%);
}

.transparency-copy {
  display: flex;
  min-width: 450px;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  text-align: right;
}

.transparency-copy h2 {
  width: 100%;
  margin: 0;
  color: var(--text-primary);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.9px;
}

.transparency-copy p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.deposits-section {
  display: flex;
  width: 100%;
  min-height: 268px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 48px 10px;
  background: var(--surface-panels);
}

.deposits-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  text-align: center;
}

.deposits-content h2 {
  width: 100%;
  margin: 0;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.6px;
}

.deposit-logos {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0.8;
}

.deposit-badge {
  position: relative;
  display: flex;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
}

.deposit-badge img {
  display: block;
  max-width: none;
  height: auto;
}

.deposit-badge.bitcoin {
  background: #f5b300;
}

.deposit-badge.bitcoin img {
  width: 32px;
  height: 43px;
}

.deposit-badge.solana {
  background: #1a1a1a;
}

.deposit-badge.solana img {
  width: 43px;
  height: 32px;
}

.deposit-badge.ethereum {
  background: #e9e9e9;
}

.deposit-badge.ethereum img {
  width: 29px;
  height: 45px;
}

.deposit-badge.synthetix {
  background: #150650;
}

.deposit-badge.synthetix img {
  width: 41px;
  height: 29px;
}

.deposit-badge.tron {
  background: #ef0027;
}

.deposit-badge.tron img {
  width: 36px;
  height: 38px;
}

.deposit-badge.tusd {
  background: #002868;
}

.deposit-badge.tusd img {
  width: 43px;
  height: 43px;
}

.deposit-badge.startcoin {
  background: #01aef0;
}

.deposit-badge.startcoin img {
  width: 27px;
  height: 44px;
}

.deposit-badge.dogecoin {
  background: #ba9f33;
}

.deposit-badge.dogecoin img {
  width: 48px;
  height: 48px;
}

.deposits-content > p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.join-section {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  height: 332px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 64px 10px 84px;
  background: var(--surface-panels);
}

.join-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -1154px;
  width: 1795px;
  height: 1791px;
  background: url("./assets/beta-landing/join-glow.png") center / cover
    no-repeat;
  pointer-events: none;
  transform: translateX(-50%) rotate(41.11deg);
  transform-origin: center;
}

.join-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  text-align: center;
}

.join-copy h2 {
  width: 555px;
  max-width: 100%;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}

.join-copy p {
  width: 677px;
  max-width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.join-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 277px;
  height: 60px;
  min-width: 120px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(
    165.36deg,
    var(--sunrise-grenadine) 11.73%,
    var(--sunrise-orange) 94.4%
  );
  box-shadow: inset 0 -3px 0 rgba(220, 38, 38, 0.7);
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-shadow: 0 1px 2px #dc2626;
  white-space: nowrap;
}

.join-button:focus-visible {
  outline: 2px solid var(--sunrise-orange);
  outline-offset: 4px;
}

@media (max-width: 1439px) {
  .hero-inner {
    width: min(calc(100% - 96px), 960px);
    height: 494px;
    gap: 13px;
    padding: 0 19px;
  }

  .brand {
    width: 160px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero-copy {
    height: 210px;
    flex-basis: 210px;
    gap: 13px;
    padding: 51px 0 19px;
  }

  .hero-copy h1 {
    width: 545px;
    font-size: 51px;
    letter-spacing: -1.28px;
  }

  .hero-copy p {
    font-size: 19px;
    line-height: 25px;
    letter-spacing: -0.48px;
  }

  .request-card {
    height: 221px;
    flex-basis: 221px;
    gap: 19px;
    padding: 51px 13px;
  }

  .request-copy h2 {
    font-size: 29px;
    letter-spacing: -0.72px;
  }

  .request-copy p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.36px;
  }

  .request-controls {
    width: 437px;
  }

  .email-field {
    width: 312px;
    max-width: calc(100% - 100px);
    height: 38px;
  }

  .email-field input {
    padding: 0 35px 0 10px;
    font-size: 13px;
    line-height: 18px;
  }

  .mail-icon {
    right: 10px;
    width: 19px;
    height: 19px;
  }

  .request-controls button {
    height: 38px;
    min-width: 100px;
    padding: 0 13px;
    font-size: 13px;
    line-height: 16px;
  }

  .hero-cards {
    top: 0;
    right: -289px;
    width: 1023px;
  }

  .hero-inner::before {
    left: -36px;
    top: -328px;
    width: 1436px;
    height: 1433px;
    transform: rotate(25.93deg);
  }

  .hero-inner::after {
    left: -468px;
    top: -214px;
    width: 1334px;
    height: 1331px;
  }

  .usp-section {
    --usp-band-start: 51px;
    min-height: 264px;
    margin-top: 0;
    padding: 89px 19px 38px;
  }

  .usp-grid {
    width: min(calc(100% - 96px), 960px);
    gap: 19px;
    padding: 0 19px;
  }

  .usp-card {
    height: 187px;
    gap: 13px;
    padding: 26px 19px;
  }

  .usp-card > div:first-child {
    min-height: 54px;
  }

  .usp-card h2 {
    font-size: 16px;
    line-height: 21px;
  }

  .usp-card p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 15px;
  }

  .usp-art {
    width: 67px;
    height: 67px;
    flex-basis: 67px;
  }

  .usp-card:nth-child(1) .usp-art img {
    left: -22px;
    top: -11px;
    width: 107px;
  }

  .usp-card:nth-child(2) .usp-art img {
    left: -5px;
    top: -1px;
    width: 78px;
  }

  .usp-card:nth-child(3) .usp-art img {
    left: -6px;
    top: -5px;
    width: 80px;
    height: 76px;
  }
}

@media (max-width: 1023px) {
  .hero-inner {
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    height: auto;
    flex-basis: auto;
    align-items: center;
    padding-top: 48px;
    text-align: center;
  }

  .hero-copy h1 {
    width: min(100%, 681px);
    font-size: 56px;
  }

  .hero-copy p {
    font-size: 22px;
    line-height: 29px;
  }

  .hero-cards {
    display: none;
  }

  .request-card {
    height: auto;
    min-height: 276px;
    flex-basis: auto;
  }

  .usp-grid {
    padding: 0;
  }

  .usp-section {
    --usp-band-start: 48px;
    margin-top: 0;
    padding-top: 86px;
  }

  .vip-section {
    height: 360px;
    padding: 48px 24px 0;
  }

  .vip-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    text-align: center;
  }

  .vip-copy {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
  }

  .vip-art {
    flex-basis: 260px;
    margin-top: -2px;
    transform: scale(0.82);
    transform-origin: top center;
  }

  .transparency-section {
    height: 430px;
    padding: 56px 24px 0;
  }

  .transparency-section::before {
    left: 50%;
    top: 244px;
    transform: translateX(-50%) rotate(37.78deg) scale(0.82);
  }

  .transparency-content {
    height: 100%;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }

  .transparency-art {
    width: 100%;
    height: 250px;
    flex: 0 0 250px;
    margin-top: 0;
  }

  .transparency-search {
    top: 8px;
    width: 278px;
    height: 273px;
  }

  .transparency-copy {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
  }

  .deposits-content {
    padding: 0;
  }

  .join-copy {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .usp-section {
    --usp-band-start: 48px;
    padding: 88px 24px 40px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .beta-page {
    padding: 24px 0 0;
  }

  .hero-inner {
    width: 100%;
    padding: 32px 16px 0;
  }

  .hero-inner::before {
    left: 50%;
    top: -245px;
    width: 1300px;
    height: 1300px;
    transform: translateX(-50%) rotate(25.93deg);
  }

  .brand {
    width: 154px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero-copy {
    gap: 16px;
    padding: 44px 0 24px;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 360px;
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 18px;
    line-height: 24px;
  }

  .request-card {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding: 64px 16px;
  }

  .request-copy h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .request-copy p {
    font-size: 16px;
    line-height: 22px;
  }

  .request-controls {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }

  .email-field {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-right: 1px solid var(--input-stroke);
    border-radius: 6px;
  }

  .request-controls button {
    width: 100%;
    max-width: 100%;
    height: 54px;
    border-radius: var(--radius);
    font-size: 20px;
    line-height: 26px;
  }

  .usp-card {
    height: 234px;
  }

  .usp-card > div:first-child {
    min-height: 70px;
  }

  .usp-card h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .usp-card p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 20px;
  }

  .usp-art {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .usp-card:nth-child(1) .usp-art img {
    left: -27px;
    top: -14px;
    width: 134px;
  }

  .usp-card:nth-child(2) .usp-art img {
    left: -6px;
    top: -1px;
    width: 98px;
  }

  .usp-card:nth-child(3) .usp-art img {
    left: -8px;
    top: -7px;
    width: 100px;
    height: 95px;
  }

  .usp-section {
    --usp-band-start: 40px;
    margin-top: 0;
    padding-top: 80px;
  }

  .games-section {
    min-height: 315px;
    gap: 40px;
    padding-top: 56px;
  }

  .game-tiles-wrap {
    width: min(calc(100% - 32px), 304px);
    max-width: 304px;
    height: auto;
    max-height: none;
    flex: 0 0 auto;
    aspect-ratio: 1025 / 320;
  }

  .game-tiles {
    object-fit: contain;
  }

  .games-copy h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .games-copy p {
    max-width: 360px;
    align-self: center;
    font-size: 16px;
    line-height: 22px;
  }

  .vip-section {
    height: 420px;
    padding: 56px 16px 0;
  }

  .vip-copy h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .vip-copy p {
    max-width: 360px;
    font-size: 16px;
    line-height: 22px;
  }

  .vip-art {
    margin-top: 10px;
    transform: scale(0.72);
  }

  .transparency-section {
    height: 440px;
    padding: 56px 16px 0;
  }

  .transparency-section::before {
    top: 289px;
    transform: translateX(-50%) rotate(37.78deg) scale(0.68);
  }

  .transparency-art {
    height: 230px;
    flex-basis: 230px;
  }

  .transparency-search {
    width: 250px;
    height: 244px;
  }

  .transparency-copy h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .transparency-copy p {
    max-width: 360px;
    font-size: 16px;
    line-height: 22px;
  }

  .deposits-section {
    padding: 48px 16px;
  }

  .deposit-logos {
    max-width: 304px;
    flex-wrap: wrap;
  }

  .deposits-content > p {
    max-width: 360px;
  }

  .join-section {
    height: 332px;
    padding: 64px 16px 84px;
  }

  .join-section::before {
    top: -1116px;
    width: 1480px;
    height: 1477px;
  }

  .join-copy h2 {
    font-size: 36px;
    letter-spacing: -0.72px;
  }

  .join-copy p {
    max-width: 360px;
    font-size: 16px;
    line-height: 22px;
  }

  .join-button {
    width: min(277px, 100%);
  }
}

@media (max-width: 374px) {
  .hero-copy h1 {
    font-size: 42px;
  }

  .request-copy h2 {
    font-size: 30px;
  }
}
