:root {
  color-scheme: dark;
  --bg: rgb(22, 26, 29);
  --bg-soft: #171c20;
  --panel: #1b2025;
  --panel-2: #22272d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f7fafc;
  --muted: #9aa4ad;
  --blue: #3d9bea;
  --blue-2: #237bd1;
  --green: #43e58e;
  --amber: #ffca5c;
  --rose: #ff6b9a;
  --violet: #9d7cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shell-width: min(1280px, calc(100% - 32px));
}

@media (max-width: 640px) {
  :root {
    --shell-width: min(100% - 22px, 1240px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

html.menu-scroll-locked,
body.menu-scroll-locked {
  overflow: hidden;
}

html {
  scrollbar-gutter: stable;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(29, 33, 37);
}

.topbar.menu-open {
  z-index: 1000;
}

.topbar-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 33px;
  width: var(--shell-width);
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
}

.topbar-inner > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(145deg, #ffffff, #b8d6ff);
  color: #101417;
  box-shadow: inset 0 -6px 16px rgba(61, 155, 234, 0.35);
  transform: rotate(-13deg);
}

.brand-logo {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links,
.top-actions,
.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
}

.nav-links {
  position: relative;
  gap: 8px;
  min-width: 0;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background-color: transparent;
  color: #f4f7fb;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  transition:
    color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 150ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a span {
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-hovered {
  color: rgb(250, 250, 250);
}

.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: rgb(250, 250, 250);
}

.nav-links:has(a:nth-of-type(1):hover),
.nav-links:has(a:nth-of-type(1):focus-visible) {
  --nav-hover-x: 0px;
  --nav-hover-width: 88.23px;
  --nav-hover-opacity: 1;
}

.nav-links:has(a:nth-of-type(2):hover),
.nav-links:has(a:nth-of-type(2):focus-visible) {
  --nav-hover-x: 96.23px;
  --nav-hover-width: 96.91px;
  --nav-hover-opacity: 1;
}

.nav-links:has(a:nth-of-type(3):hover),
.nav-links:has(a:nth-of-type(3):focus-visible) {
  --nav-hover-x: 201.14px;
  --nav-hover-width: 87.39px;
  --nav-hover-opacity: 1;
}

.nav-links:has(a:nth-of-type(4):hover),
.nav-links:has(a:nth-of-type(4):focus-visible) {
  --nav-hover-x: 296.53px;
  --nav-hover-width: 86.73px;
  --nav-hover-opacity: 1;
}

.nav-links:has(a:nth-of-type(5):hover),
.nav-links:has(a:nth-of-type(5):focus-visible) {
  --nav-hover-x: 391.27px;
  --nav-hover-width: 94.94px;
  --nav-hover-opacity: 1;
}

.nav-links:has(a:nth-of-type(6):hover),
.nav-links:has(a:nth-of-type(6):focus-visible) {
  --nav-hover-x: 494.2px;
  --nav-hover-width: 109.88px;
  --nav-hover-opacity: 1;
}

.nav-hover-indicator {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: var(--nav-hover-width, 0px);
  height: 36px;
  border-radius: 6px;
  background-color: rgb(52, 56, 60);
  opacity: var(--nav-hover-opacity, 0);
  transform: translateX(var(--nav-hover-x, 0px));
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    width 180ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 120ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-links i,
.nav-links svg,
.top-actions i,
.top-actions svg {
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  color: #7a8084;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.nav-links .draw-icon {
  stroke-width: 1.5;
}

.top-actions svg {
  top: 0;
}

.top-actions {
  gap: 8px;
}

.topbar .button:hover,
.topbar .icon-button:hover,
.nav-links a:hover {
  transform: none;
}

.button,
.icon-button {
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  transition:
    color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    outline-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    text-decoration-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 150ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button {
  min-height: 36px;
  min-width: 96px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.topbar .button {
  width: 96px;
  min-width: 96px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.topbar .button.muted:hover {
  background: rgb(90, 94, 98);
}

.topbar .button.primary:hover {
  background: rgb(49, 130, 206);
}

.button.big {
  min-height: 40px;
  padding-inline: 24px;
}

.button.primary {
  background: rgb(66, 153, 225);
  box-shadow: none;
}

.button.muted {
  background: rgb(52, 56, 60);
  box-shadow: none;
}

.icon-button {
  background: #242a31;
  border-color: #363e47;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.sound-button {
  background: transparent;
  color: rgb(122, 128, 132);
}

.profile-button {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgb(122, 128, 132);
  cursor: pointer;
}

.profile-button svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.is-logged-in .sign-in-trigger,
body.is-logged-in .register-trigger {
  display: none;
}

body.is-logged-in .profile-button {
  display: grid;
}

.sound-button svg {
  color: currentColor;
  stroke: currentColor;
}

.sound-button:hover {
  color: rgb(255, 255, 255);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(250, 250, 250);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle .close-icon {
  display: none;
}

.mobile-menu-auth {
  display: none;
}

.header-separator {
  width: 1px;
  height: 24px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.12);
}

main {
  width: var(--shell-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 597px) minmax(420px, 556px);
  justify-content: start;
  gap: 96px;
  align-items: center;
  min-height: 460px;
  padding: 22px 0 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 597px;
  margin-bottom: 24px;
  color: rgb(255, 255, 255);
  font-size: clamp(40px, 4.8vw, 48px);
  font-weight: 800;
  line-height: 60px;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-subtext {
  max-width: 597px;
  margin-bottom: 36px;
  color: rgb(122, 128, 132);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.hero-actions {
  gap: 0;
}

.hero .button.big {
  min-height: 40px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.text-link {
  color: #c6d3dd;
  font-weight: 800;
}

.live-card,
.stats-strip,
.banner {
  border: 1px solid var(--line);
  background: rgb(22, 26, 29);
  box-shadow: var(--shadow);
}

.live-card {
  width: 100%;
  max-width: 556px;
  height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgb(34, 39, 43);
  border-radius: 16px;
  box-shadow: none;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 16px;
  margin-bottom: 10px;
  color: rgb(237, 242, 247);
  font-size: 12px;
  font-weight: 800;
  line-height: 14.4px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.live-dot {
  color: var(--green);
}

.live-status {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.wins-list {
  position: relative;
  height: 254px;
  overflow: hidden;
}

.wins-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.win-item {
  position: absolute;
  z-index: var(--win-z, 1);
  inset-inline: 0;
  top: var(--win-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 8px 16px 8px 8px;
  border-radius: 8px;
  background: rgb(29, 33, 37);
  transition:
    top 0.64s ease-in-out,
    opacity 0.64s ease-in-out;
}

.win-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.win-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.win-title,
.win-meta {
  display: block;
  overflow: hidden;
  max-width: 278px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.win-title {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
}

.win-meta {
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
}

.win-price {
  flex: 0 0 auto;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 800;
  line-height: 16.8px;
  white-space: nowrap;
}

.item-art {
  display: grid;
  position: relative;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 4px;
  border-radius: 6px;
  background: rgb(22, 26, 29);
}

.item-art::before {
  content: "";
  display: block;
  position: absolute;
  inset: 4px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgb(29, 33, 37);
}

.item-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  min-height: 112px;
  padding: 32px 48px;
  border: 0;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  box-shadow: none;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 48px;
}

.stat-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(52, 56, 60);
  border-radius: 12px;
  background: transparent;
  color: rgb(122, 128, 132);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-copy {
  display: flex;
  flex-direction: column;
}

.stat strong {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
}

.stat-copy span {
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
}

.stat-copy em {
  color: rgb(72, 187, 120);
  font-style: normal;
}

.promo-line {
  margin: 16px 0 88px;
  text-align: center;
  color: rgb(203, 213, 224);
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
}

.promo-line span {
  color: rgb(66, 153, 225);
}

.section {
  padding: 54px 0;
}

.banner p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

.how-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 54px 0 0;
  scroll-margin-top: 96px;
}

.how-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.how-head .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.how-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-copy h2 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
}

.how-copy p,
.how-card-copy p {
  margin: 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.how-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 234px;
  padding: 32px;
  overflow: hidden;
  border-radius: 16px;
  background: rgb(29, 33, 37);
}

.how-card-large {
  grid-row: span 2;
  gap: 24px;
  min-height: 493px;
}

.how-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.how-card-copy h3 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.pack-preview-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 492px;
  min-height: 250px;
  margin: auto 0;
}

.pack-preview {
  position: absolute;
  width: 156px;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgb(22, 26, 29);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.75);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pack-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-preview-left {
  z-index: 10;
  transform: translate(-75px, 18px) rotate(-13deg);
}

.pack-preview-center {
  z-index: 30;
  transform: translateY(-9px);
}

.pack-preview-right {
  z-index: 20;
  transform: translate(75px, 18px) rotate(13deg);
}

.how-card-large:hover .pack-preview-center {
  transform: translateY(-18px);
}

.how-card-large:hover .pack-preview-left {
  transform: translate(-99px, 15px) rotate(-18deg);
}

.how-card-large:hover .pack-preview-right {
  transform: translate(99px, 15px) rotate(18deg);
}

.item-preview-row {
  width: 100%;
  overflow: hidden;
}

.item-preview-track {
  display: flex;
  width: max-content;
  gap: 12px;
}

.how-card:hover .item-preview-track {
  animation: item-marquee 1s ease-in-out 0s 1 normal none running;
}

.item-preview-track span {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: rgb(22, 26, 29);
}

.item-preview-track img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@keyframes item-marquee {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(-50%);
  }
}

.ship-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 84px;
  padding: 12px 24px 12px 12px;
  border-radius: 12px;
  background: rgb(22, 26, 29);
}

.ship-thumb {
  display: block;
  flex: 0 0 auto;
  width: 66px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.ship-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.ship-copy strong,
.ship-preview b {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 800;
  line-height: 16.8px;
}

.ship-copy span {
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
}

.ship-preview b {
  white-space: nowrap;
}

.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
}

#packs .section-heading .button {
  min-height: 40px;
  background: rgb(66, 153, 225);
}

#packs .section-heading .button:hover {
  background: rgb(49, 130, 206);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(144px, 1fr));
  gap: 48px;
  align-self: stretch;
}

.pack-card {
  position: relative;
  height: auto;
  background: transparent;
}

.pack-card-responsive-only {
  display: none;
}

.pack-card:nth-child(n + 5) {
  display: none;
}

.pack-card:nth-child(-n + 5) {
  display: block;
}

.pack-hit {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.pack-tilt {
  display: block;
  position: relative;
  width: 100%;
  height: 316px;
  border-radius: 8px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.pack-tilt-inner {
  display: block;
  width: 100%;
  height: 316px;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.pack-image-wrap {
  display: flex;
  position: relative;
  width: 100%;
  height: 316px;
}

.pack-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pack-hover-actions {
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms ease-in-out;
}

.pack-hit:hover .pack-hover-actions,
.pack-tilt.is-active .pack-hover-actions {
  opacity: 1;
}

.pack-hover-actions span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgb(52, 56, 60);
  color: rgb(255, 255, 255);
}

.pack-hover-actions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pack-price {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.banner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 217px;
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  box-shadow: none;
}

.banner-art {
  display: block;
  flex: 0 0 36.4%;
  width: 36.4%;
  min-width: 360px;
  height: 217px;
  object-fit: cover;
}

.banner-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
}

.banner h2 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  letter-spacing: 0;
}

.banner p {
  max-width: 720px;
  margin: 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.banner p span {
  color: rgb(66, 153, 225);
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  min-width: 0;
  padding: 0 24px;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq h2 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 800;
  line-height: 38.4px;
  letter-spacing: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: rgb(29, 33, 37);
  color: var(--text);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: rgb(250, 250, 250);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-weight: 500;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: rgb(255, 255, 255);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease-out;
}

.faq-item p {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  color: rgb(250, 250, 250);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: height 200ms ease-out;
}

.faq-item.open p {
  height: var(--faq-content-height, 120px);
  padding-bottom: 16px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 532px) 156px 180px 208px;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
}

.footer-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 800;
  line-height: 19.2px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column label {
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.footer-column a:hover {
  color: rgb(250, 250, 250);
}

.footer-legal h3:nth-of-type(2),
.footer-contact h3 {
  margin-top: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgb(52, 56, 60);
  color: rgb(255, 255, 255);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="X"] svg {
  width: 18px;
  height: 18px;
}

.social-links a[aria-label="Instagram"] svg {
  width: 18px;
  height: 18px;
}

.social-links a[aria-label="YouTube"] svg {
  width: 17px;
  height: 17px;
}

.language-select {
  position: relative;
  width: 208px;
}

.language-toggle {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 12px;
  border: 1px solid rgb(34, 39, 43);
  border-radius: 6px;
  background: rgb(22, 26, 29);
  color: rgb(255, 255, 255);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

.language-menu {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 12;
  padding: 5px;
  border: 1px solid rgb(52, 56, 60);
  border-radius: 6px;
  background: rgb(29, 33, 37);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.language-select.open .language-menu {
  display: flex;
  flex-direction: column;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 30px;
  padding: 0 10px 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgb(255, 255, 255);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-selected="true"] {
  background: rgb(52, 56, 60);
}

.language-option::before {
  content: "";
  display: block;
  width: 16px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 1;
}

.language-option[aria-selected="true"]::before {
  content: "✓";
}

.language-select svg {
  position: absolute;
  right: 11px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  color: rgb(122, 128, 132);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 160ms ease;
  pointer-events: none;
}

.language-select.open svg {
  transform: rotate(180deg);
}

.footer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  min-height: 80px;
  margin: 0 auto;
  padding: 16px;
  border-top: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  width: auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.footer-copyright {
  color: rgb(160, 174, 192);
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 4px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.72);
}

body.modal-open {
  overflow: hidden;
}

.promo-modal {
  padding: 24px 12px;
}

.promo-dialog {
  position: relative;
  width: min(640px, calc(100vw - 24px));
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.promo-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgb(22, 26, 29), rgb(38, 30, 10));
}

.promo-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-copy-wrap {
  margin-bottom: 18px;
}

.promo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.36px;
  line-height: 26px;
  text-transform: uppercase;
}

.promo-badge-green {
  background: rgba(83, 226, 150, 0.12);
  color: rgb(83, 226, 150);
}

.promo-badge-gold {
  background: rgba(255, 208, 88, 0.14);
  color: rgb(255, 208, 88);
}

.promo-dialog h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  text-align: left;
}

.promo-copy {
  margin: 10px 0 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.promo-payout-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.95fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgb(34, 39, 43);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(22, 26, 29, 0.75), rgba(34, 27, 12, 0.72)),
    url("./assets/promo/winner-reward.jpg") center center / cover no-repeat;
}

.promo-payout-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 208, 88, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.promo-payout-row > * {
  position: relative;
  z-index: 1;
}

.promo-reward-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(12, 14, 16, 0.2);
}

.promo-reward-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 12px 12px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, rgba(255, 208, 88, 0.1), rgba(255, 208, 88, 0));
  backdrop-filter: blur(3px);
}

.promo-reward-label {
  color: rgb(83, 226, 150);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.44px;
  line-height: 14.4px;
  text-transform: uppercase;
}

.promo-reward-value {
  color: rgb(250, 250, 250);
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
}

.promo-reward-note {
  color: rgb(203, 213, 224);
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  margin-top: 2px;
}

.promo-withdraw-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px 10px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46)),
    rgba(12, 14, 16, 0.2);
  backdrop-filter: blur(3px);
}

.promo-withdraw-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-withdraw-head strong {
  color: rgb(250, 250, 250);
  font-size: 18px;
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 2px;
}

.promo-withdraw-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
  cursor: pointer;
  text-align: left;
}

.promo-withdraw-option:hover {
  background: rgb(49, 130, 206);
}

.promo-withdraw-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  text-align: center;
}

.promo-withdraw-copy strong {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
}

.crypto-modal {
  padding: 24px 12px;
}

.crypto-dialog {
  width: min(684px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 18px;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: auto;
}

.crypto-heading {
  margin-bottom: 14px;
}

.crypto-heading h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  text-align: left;
}

.crypto-heading p {
  margin: 5px 0 0;
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.crypto-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgb(38, 43, 47);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(34, 39, 43, 0.95), rgba(29, 33, 37, 0.98)),
    rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  cursor: pointer;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.crypto-card:hover,
.crypto-card:focus-visible {
  border-color: rgb(66, 153, 225);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.crypto-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
}

.crypto-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.crypto-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.crypto-copy strong {
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
}

.crypto-copy span {
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

.withdraw-modal {
  padding: 24px 12px;
}

.withdraw-dialog {
  width: min(720px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 18px;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: auto;
}

.withdraw-dialog.is-processing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 392px;
}

.withdraw-dialog.is-processing .withdraw-main {
  display: none;
}

.withdraw-processing-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 392px;
  padding: 36px 18px;
  text-align: center;
}

.withdraw-processing-state:not([hidden]) {
  display: flex;
}

.withdraw-processing-state::before {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 0;
}

.withdraw-processing-state h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

.withdraw-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.withdraw-heading {
  min-width: 0;
}

.withdraw-eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  color: rgb(83, 226, 150);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 14px;
  text-transform: uppercase;
}

.withdraw-heading h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

.withdraw-heading p {
  margin: 6px 0 0;
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.withdraw-heading strong,
.withdraw-heading .withdraw-coin-name,
.withdraw-heading .withdraw-network-name {
  color: rgb(250, 250, 250);
}

.withdraw-back {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: rgb(52, 56, 60);
  color: rgb(250, 250, 250);
  cursor: pointer;
}

.withdraw-back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

.withdraw-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.withdraw-summary-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgb(38, 43, 47);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 39, 43, 0.95), rgba(29, 33, 37, 0.98));
}

.withdraw-summary-label {
  color: rgb(83, 226, 150);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.36px;
  line-height: 14px;
  text-transform: uppercase;
}

.withdraw-summary-card strong {
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

.withdraw-coin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.withdraw-coin-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  overflow: hidden;
}

.withdraw-coin-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.withdraw-coin-row strong {
  display: block;
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
}

.withdraw-selected-ticker {
  display: block;
  margin-top: 1px;
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

.withdraw-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.withdraw-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.withdraw-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.withdraw-field > span {
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
}

.withdraw-field input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  outline: none;
}

.withdraw-field input[readonly] {
  cursor: default;
}

.withdraw-field input::placeholder {
  color: rgb(122, 128, 132);
}

.withdraw-field input:focus {
  box-shadow: none;
}

.withdraw-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-width: 180px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  cursor: pointer;
}

.withdraw-submit:hover {
  background: rgb(49, 130, 206);
}

.withdraw-submit:disabled {
  background: rgb(66, 153, 225);
  opacity: 0.45;
  cursor: not-allowed;
}

.withdraw-submit:disabled:hover {
  background: rgb(66, 153, 225);
}

.withdraw-warning-modal,
.withdraw-verify-modal {
  padding: 24px 12px;
}

.withdraw-loading-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgb(66, 153, 225);
  border-radius: 50%;
  animation: auth-spin 0.85s linear infinite;
}

.withdraw-warning-dialog {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  padding: 22px;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.withdraw-warning-heading {
  margin-bottom: 16px;
}

.withdraw-warning-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.16);
  color: rgb(248, 113, 113);
}

.withdraw-warning-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.withdraw-warning-heading h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

.withdraw-warning-heading p {
  margin: 8px 0 0;
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.withdraw-warning-text-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34, 39, 43, 0.96), rgba(27, 31, 35, 0.98));
}

.withdraw-warning-text-card p {
  margin: 0;
  color: rgb(184, 190, 196);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.withdraw-warning-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(34, 39, 43, 0.95), rgba(29, 33, 37, 0.98)),
    rgb(29, 33, 37);
}

.withdraw-warning-card > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.withdraw-warning-card strong {
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
  word-break: break-word;
}

.withdraw-warning-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.withdraw-warning-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.withdraw-warning-verify {
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
}

.withdraw-warning-verify:hover {
  background: rgb(49, 130, 206);
}

.withdraw-verify-dialog {
  width: min(620px, calc(100vw - 24px));
  padding: 22px 22px 24px;
  border-radius: 16px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.withdraw-verify-steps {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
  padding-top: 6px;
}

.withdraw-verify-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.withdraw-verify-step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
  color: rgb(122, 128, 132);
  text-align: center;
}

.withdraw-verify-step-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(40, 46, 52), rgb(32, 37, 42));
  color: rgb(122, 128, 132);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.2);
}

.withdraw-verify-step-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 72%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: -1;
}

.withdraw-verify-step-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.withdraw-verify-step-label {
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
}

.withdraw-verify-step-item.is-active,
.withdraw-verify-step-item.is-complete {
  color: rgb(250, 250, 250);
}

.withdraw-verify-step-item.is-active .withdraw-verify-step-icon {
  background: rgba(66, 153, 225, 0.18);
  color: rgb(66, 153, 225);
}

.withdraw-verify-step-item.is-complete .withdraw-verify-step-icon {
  background: rgba(34, 197, 94, 0.16);
  color: rgb(34, 197, 94);
}

.withdraw-verify-step-item.is-active[data-step-item="2"] .withdraw-verify-step-icon {
  background: rgba(249, 115, 22, 0.18);
  color: rgb(249, 115, 22);
}

.withdraw-verify-stage {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.withdraw-verify-stage.is-active {
  display: flex;
}

.withdraw-verify-stage[data-step-panel="2"].is-activation {
  justify-content: flex-start;
  align-items: center;
  min-height: 360px;
  padding-top: 12px;
}

.withdraw-verify-stage[data-step-panel="2"].is-activation > :not(.withdraw-verify-activation):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-stage[data-step-panel="2"].is-crypto-selection {
  align-items: stretch;
  min-height: 360px;
  padding-top: 4px;
}

.withdraw-verify-stage[data-step-panel="2"].is-crypto-selection > :not(.withdraw-verify-crypto):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-selection {
  align-items: stretch;
  min-height: 360px;
  padding-top: 4px;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-selection > :not(.withdraw-verify-payment):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-done {
  min-height: 360px;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-done > :not(.withdraw-verify-payment-done):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-selection {
  align-items: stretch;
  min-height: 360px;
  padding-top: 4px;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-selection > :not(.withdraw-verify-aml-crypto):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-payment-selection {
  align-items: stretch;
  min-height: 360px;
  padding-top: 4px;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-payment-selection > :not(.withdraw-verify-aml-payment):not(.withdraw-verify-footnote) {
  display: none !important;
}

.withdraw-verify-payment-done {
  position: relative;
  isolation: isolate;
  display: none;
  width: 100%;
  max-width: 500px;
  margin: 2px auto 0;
  padding: 0 20px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.withdraw-verify-payment-done::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  left: 50%;
  width: 100%;
  height: 230px;
  transform: translateX(-50%);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.03) 48%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-done .withdraw-verify-payment-done {
  display: block;
}

.withdraw-verify-payment-done h2 {
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
  color: rgb(249, 115, 22);
  font-size: 27px;
  line-height: 33px;
}

.withdraw-verify-notice-copy {
  width: 100%;
  max-width: 430px;
  margin: 16px auto 0;
}

.withdraw-verify-payment-done p {
  max-width: none;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  color: rgb(190, 197, 204);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}

.withdraw-verify-payment-done p + p {
  margin-top: 12px;
}

.withdraw-verify-orange {
  color: rgb(249, 115, 22);
  font-weight: 800;
}

.withdraw-verify-aml-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  cursor: pointer;
}

.withdraw-verify-aml-button:hover {
  background: rgb(49, 130, 206);
}

.withdraw-verify-aml-button:focus-visible {
  outline: 3px solid rgba(66, 153, 225, 0.32);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .withdraw-verify-payment-done {
    padding: 22px 18px 24px;
  }

  .withdraw-verify-payment-done h2 {
    font-size: 23px;
    line-height: 29px;
  }

  .withdraw-verify-notice-copy {
    margin-top: 14px;
  }

  .withdraw-verify-payment-done p {
    font-size: 14px;
    line-height: 22px;
  }

  .withdraw-verify-aml-button {
    width: 100%;
    margin-top: 20px;
  }
}

.withdraw-verify-stage[hidden] {
  display: none !important;
}

.withdraw-verify-stage h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
}

.withdraw-verify-stage p {
  max-width: 460px;
  margin: 10px 0 0;
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.withdraw-verify-support {
  display: none;
  align-items: center;
  gap: 14px;
  width: min(100%, 440px);
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: rgb(34, 39, 43);
  color: rgb(234, 236, 239);
  text-align: left;
  box-shadow: none;
}

.withdraw-verify-support.is-visible {
  display: flex;
}

.withdraw-verify-support-avatar {
  flex: 0 0 auto;
  width: 144px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.withdraw-verify-support p {
  margin: 0;
  max-width: 220px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.withdraw-verify-activation {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 460px);
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgb(234, 236, 239);
  text-align: center;
}

.withdraw-verify-stage[data-step-panel="2"].is-activation .withdraw-verify-activation {
  display: flex;
}

.withdraw-verify-activation-logo {
  display: block;
  width: 156px;
  height: 156px;
  margin-bottom: 16px;
  object-fit: contain;
}

.withdraw-verify-activation .withdraw-verify-activation-copy {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
}

.withdraw-verify-activation .withdraw-verify-activation-subcopy {
  max-width: 460px;
  margin: 0;
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.withdraw-verify-activation-accent {
  color: rgb(66, 153, 225);
}

.withdraw-verify-activation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.withdraw-verify-activation-button:hover {
  background: rgb(49, 130, 206);
}

.withdraw-verify-crypto {
  display: none;
  width: 100%;
  text-align: left;
}

.withdraw-verify-stage[data-step-panel="2"].is-crypto-selection .withdraw-verify-crypto {
  display: block;
}

.withdraw-verify-crypto .crypto-heading {
  margin-bottom: 14px;
}

.withdraw-verify-aml-crypto {
  display: none;
  width: 100%;
  text-align: left;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-selection .withdraw-verify-aml-crypto {
  display: block;
}

.withdraw-verify-aml-crypto .crypto-heading {
  margin-bottom: 14px;
}

.withdraw-verify-payment,
.withdraw-verify-aml-payment {
  display: none;
  width: 100%;
  text-align: left;
}

.withdraw-verify-stage[data-step-panel="2"].is-payment-selection .withdraw-verify-payment {
  display: block;
}

.withdraw-verify-stage[data-step-panel="2"].is-aml-payment-selection .withdraw-verify-aml-payment {
  display: block;
}

.withdraw-verify-finish {
  align-items: stretch;
  min-height: 360px;
  padding-top: 4px;
}

.withdraw-verify-aml-done,
.withdraw-verify-reward-crypto,
.withdraw-verify-reward-processing,
.withdraw-verify-reward-done {
  display: none;
  width: 100%;
}

.withdraw-verify-aml-done {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.withdraw-verify-aml-done::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  left: 50%;
  width: min(100%, 500px);
  height: 230px;
  transform: translateX(-50%);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04) 48%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.withdraw-verify-finish.is-active .withdraw-verify-aml-done:not([hidden]) {
  display: flex;
}

.withdraw-verify-finish-message h2 {
  margin: 0;
  color: rgb(34, 197, 94);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.withdraw-verify-finish-message p {
  color: rgb(189, 195, 201);
}

.withdraw-verify-reward-highlight {
  color: rgb(34, 197, 94);
  font-weight: 900;
}

.withdraw-verify-reward-button {
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  background: rgb(66, 153, 225);
  color: rgb(255, 255, 255);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.withdraw-verify-reward-button:hover {
  background: rgb(90, 172, 238);
}

.withdraw-verify-reward-crypto {
  text-align: left;
}

.withdraw-verify-finish.is-active .withdraw-verify-reward-crypto:not([hidden]) {
  display: block;
}

.withdraw-verify-reward-withdraw {
  display: none;
  width: 100%;
  text-align: left;
}

.withdraw-verify-finish.is-active .withdraw-verify-reward-withdraw:not([hidden]) {
  display: block;
}

.withdraw-verify-reward-processing,
.withdraw-verify-reward-done {
  min-height: 340px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.withdraw-verify-finish.is-active .withdraw-verify-reward-processing:not([hidden]),
.withdraw-verify-finish.is-active .withdraw-verify-reward-done:not([hidden]) {
  display: flex;
}

.withdraw-verify-reward-processing h2,
.withdraw-verify-reward-done h2 {
  margin: 18px 0 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.withdraw-verify-reward-done h2 {
  margin-top: 0;
}

.withdraw-verify-reward-done p {
  max-width: 500px;
  margin: 14px auto 0;
  color: rgb(189, 195, 201);
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.withdraw-verify-reward-withdraw .withdraw-header {
  margin-bottom: 16px;
}

.withdraw-verify-reward-withdraw .withdraw-summary-card {
  border-radius: 8px;
}

.withdraw-verify-reward-withdraw .withdraw-submit {
  background: rgb(66, 153, 225);
  color: rgb(255, 255, 255);
}

.withdraw-verify-reward-withdraw .withdraw-submit:hover {
  background: rgb(90, 172, 238);
}

.withdraw-verify-reward-withdraw .withdraw-submit:disabled {
  background: rgb(44, 96, 139);
}

.withdraw-verify-reward-crypto .crypto-heading {
  margin-bottom: 14px;
}

.withdraw-verify-aml-done > p {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.withdraw-verify-payment .crypto-heading,
.withdraw-verify-aml-payment .crypto-heading {
  margin-bottom: 14px;
}

.withdraw-verify-payment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.withdraw-verify-payment-header .crypto-heading {
  min-width: 0;
  margin-bottom: 0;
}

.withdraw-verify-payment-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.withdraw-verify-payment-back {
  margin-top: 0;
  background: rgb(41, 47, 52);
}

.withdraw-verify-payment-back:hover {
  background: rgb(52, 58, 63);
}

.withdraw-verify-payment-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.withdraw-verify-payment-usd,
.withdraw-verify-payment-coin-amount,
.withdraw-verify-aml-payment-usd,
.withdraw-verify-aml-payment-coin-amount {
  display: block;
  margin-top: 4px;
  color: rgb(250, 250, 250);
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
}

.withdraw-verify-payment-coin-amount,
.withdraw-verify-aml-payment-coin-amount {
  color: rgb(154, 160, 166);
  font-size: 13px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.withdraw-verify-payment-amount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.withdraw-verify-payment-amount-row .withdraw-verify-payment-coin-amount,
.withdraw-verify-payment-amount-row .withdraw-verify-aml-payment-coin-amount {
  flex: 1 1 auto;
  min-width: 0;
}

.withdraw-verify-amount-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 7px;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  cursor: pointer;
}

.withdraw-verify-amount-copy svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.withdraw-verify-payment-field {
  gap: 10px;
}

.withdraw-verify-payment-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.withdraw-verify-payment-address {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  box-shadow: none;
}

.withdraw-verify-payment-address:focus {
  outline: none;
  box-shadow: none;
}

.withdraw-verify-payment-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.withdraw-verify-payment-copy:hover {
  background: rgb(52, 58, 63);
}

.withdraw-verify-payment-copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.withdraw-verify-payment-copy.is-copied,
.withdraw-verify-amount-copy.is-copied {
  background: rgb(66, 153, 225);
  color: rgb(255, 255, 255);
}

.withdraw-verify-payment-copy.is-copied::after,
.withdraw-verify-amount-copy.is-copied::after {
  content: attr(data-copy-label);
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  min-width: max-content;
  border-radius: 6px;
  background: rgb(66, 153, 225);
  color: rgb(255, 255, 255);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 14px;
  pointer-events: none;
}

.withdraw-verify-payment-copy,
.withdraw-verify-amount-copy {
  position: relative;
}

.withdraw-verify-payment-status,
.withdraw-verify-aml-payment-status {
  margin: 10px 0 0;
  color: rgb(154, 160, 166);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.withdraw-verify-form {
  width: 100%;
  margin-top: 22px;
}

.withdraw-verify-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
  width: 100%;
}

.withdraw-verify-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgb(250, 250, 250);
  text-align: left;
}

.withdraw-verify-field-label {
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
}

.withdraw-verify-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  box-shadow: none;
}

.withdraw-verify-input::placeholder {
  color: rgba(250, 250, 250, 0.38);
  font-weight: 600;
}

.withdraw-verify-input:focus {
  box-shadow: none;
  outline: none;
}

.withdraw-verify-field-help {
  color: rgb(122, 128, 132);
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
}

.withdraw-verify-form .withdraw-verify-primary {
  width: 100%;
  margin-top: 18px;
}

.withdraw-verify-graphic {
  display: block;
  width: 156px;
  height: 156px;
  margin-bottom: 16px;
}

.withdraw-verify-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: rgb(66, 153, 225);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.withdraw-verify-primary:hover {
  background: rgb(49, 130, 206);
}

.withdraw-verify-primary:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.withdraw-verify-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgb(122, 128, 132);
  text-align: center;
}

.withdraw-verify-footnote[hidden] {
  display: none !important;
}

.withdraw-verify-footnote-logo {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-color: currentColor;
  -webkit-mask: url("./assets/sumsub.svg") center / contain no-repeat;
  mask: url("./assets/sumsub.svg") center / contain no-repeat;
}

.withdraw-verify-footnote p {
  margin: 0;
  max-width: 520px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  color: inherit;
  text-align: left;
}

@media (max-width: 760px) {
  .crypto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .crypto-grid {
    grid-template-columns: 1fr;
  }

  .withdraw-summary,
  .withdraw-grid {
    grid-template-columns: 1fr;
  }

  .withdraw-submit {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  .promo-payout-row {
    grid-template-columns: 1fr;
  }

  .promo-reward-card {
    min-height: 150px;
  }
}

.auth-dialog {
  width: min(512px, calc(100vw - 8px));
  min-height: 624px;
  border-radius: 12px;
  background: rgb(29, 33, 37);
  color: rgb(250, 250, 250);
  overflow: hidden;
}

.auth-dialog-reset {
  min-height: 420px;
}

.auth-dialog-check {
  min-height: 270px;
}

.auth-dialog-session {
  min-height: 314px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 36px 64px 24px;
}

.auth-form-signin .auth-submit {
  margin-top: 19px;
}

.auth-heading {
  margin-bottom: 25px;
  text-align: center;
}

.auth-heading h2 {
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
}

.auth-heading p {
  margin: 3px 0 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.google-auth-button,
.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  cursor: default;
}

.auth-button-spinner {
  display: none;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgb(255, 255, 255);
  border-radius: 50%;
  animation: auth-spin 0.85s linear infinite;
}

.google-auth-button {
  gap: 19px;
  margin-bottom: 10px;
  background: rgb(52, 56, 60);
  color: rgb(143, 146, 149);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.google-auth-message {
  display: none;
  margin: 0 0 12px;
  border: 1px solid rgba(255, 192, 76, 0.28);
  border-radius: 6px;
  background: rgba(255, 192, 76, 0.08);
  color: rgb(255, 216, 149);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.google-auth-message.is-visible {
  display: block;
}

.google-auth-button.is-accepted {
  color: rgb(255, 255, 255);
}

.google-auth-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.google-auth-button.is-loading .auth-button-spinner,
.auth-submit.is-loading .auth-button-spinner,
.withdraw-submit.is-loading .auth-button-spinner {
  display: inline-block;
}

.google-auth-button.is-loading svg,
.google-auth-button.is-loading .auth-button-label,
.auth-submit.is-loading .auth-button-label,
.withdraw-submit.is-loading .auth-button-label {
  display: none;
}

.google-auth-button.is-loading .auth-button-label,
.auth-submit.is-loading .auth-button-label,
.withdraw-submit.is-loading .auth-button-label {
  opacity: 0.82;
}

.google-auth-button.is-loading,
.auth-submit.is-loading,
.withdraw-submit.is-loading {
  cursor: progress;
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: flex-start;
  column-gap: 8px;
  margin: 0;
  color: rgb(250, 250, 250);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.auth-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.auth-check > span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1px solid rgb(66, 153, 225);
  border-radius: 4px;
  background: transparent;
}

.auth-check input:checked + span {
  border-color: rgb(66, 153, 225);
  background: rgb(66, 153, 225);
}

.auth-check input:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 4px;
  border: solid rgb(255, 255, 255);
  border-width: 0 0 1.5px 1.5px;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center;
}

.auth-check b {
  display: block;
  margin-top: -2px;
  font-weight: 500;
}

.auth-terms {
  color: rgb(250, 250, 250);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: default;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 28px 0 14px;
  color: rgb(52, 56, 60);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgb(52, 56, 60);
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 14px;
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.auth-field input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  outline: none;
  background: rgb(41, 47, 52);
  color: rgb(250, 250, 250);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition:
    background-color 150ms ease,
    box-shadow 150ms ease,
    outline-color 150ms ease;
}

.auth-field input:focus {
  background: rgb(41, 47, 52);
  box-shadow: inset 0 0 0 2px rgb(250, 250, 250);
}

.password-control {
  position: relative;
  display: block;
}

.password-control input {
  padding-right: 42px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(250, 250, 250);
  transform: translateY(-50%);
  cursor: pointer;
}

.password-toggle svg {
  width: 16px;
  height: 16px;
  color: rgb(250, 250, 250);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle:hover svg {
  color: rgb(250, 250, 250);
}

.password-toggle .eye-icon-visible {
  display: none;
}

.password-toggle.is-visible .eye-icon-visible {
  display: block;
}

.password-toggle.is-visible .eye-icon-hidden {
  display: none;
}

.password-guide {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.password-guide.is-visible {
  display: flex;
}

.password-guide-text {
  color: rgb(122, 128, 132);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.password-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  height: 8px;
}

.password-bars span {
  display: block;
  background: rgb(237, 242, 247);
}

.password-guide.strength-weak .password-bars span:nth-child(-n + 1) {
  background: rgb(246, 86, 113);
}

.password-guide.strength-fair .password-bars span:nth-child(-n + 2) {
  background: rgb(251, 146, 60);
}

.password-guide.strength-good .password-bars span:nth-child(-n + 3) {
  background: rgb(250, 204, 21);
}

.password-guide.strength-great .password-bars span {
  background: rgb(74, 222, 128);
}

.auth-submit {
  margin-top: 27px;
  background: rgb(66, 153, 225);
  color: rgb(45, 116, 178);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.auth-submit.is-ready {
  color: rgb(255, 255, 255);
}

.reset-submit.is-ready {
  color: rgb(255, 255, 255);
}

.auth-remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.auth-check-remember {
  flex: 1 1 auto;
  max-width: fit-content;
}

.auth-forgot {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(66, 153, 225);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: default;
}

.auth-login {
  margin: 29px 0 0;
  text-align: center;
  color: rgb(250, 250, 250);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.auth-login button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(250, 250, 250);
  font: inherit;
  cursor: default;
}

.auth-form-signin .auth-login button,
.auth-form-reset .auth-login button,
.auth-form-check .auth-login button {
  color: rgb(66, 153, 225);
}

.auth-form:not(.auth-form-signin):not(.auth-form-reset):not(.auth-form-check) .auth-login button {
  color: rgb(250, 250, 250);
}

.check-email-copy {
  margin: 52px 0 38px;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.auth-field-reset {
  margin-bottom: 14px;
}

.auth-form-reset .auth-submit {
  margin-top: 8px;
}

.auth-form-check .auth-heading {
  margin-bottom: 0;
}

.auth-form-check .auth-login {
  margin-top: 20px;
}

.auth-form-session {
  padding-top: 44px;
  padding-bottom: 32px;
}

.auth-form-session .auth-heading {
  margin-bottom: 16px;
}

.logged-in-email {
  margin: 4px 0 0;
  color: rgb(122, 128, 132);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.auth-session-copy {
  margin: 34px 0 30px;
}

.auth-logout {
  margin-top: 0;
}

@media (max-width: 540px) {
  .auth-form {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    padding: 10px 0;
    gap: 12px 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    padding: 16px 16px 32px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: rgb(29, 33, 37);
    box-shadow: none;
    z-index: 1000;
  }

  .topbar.menu-open .nav-links {
    display: flex;
    z-index: 1001;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 44px 0 34px;
  }

  .live-card {
    max-width: none;
  }

  .stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }

  .pack-grid {
    grid-template-columns: repeat(3, minmax(144px, 1fr));
    gap: 44px 28px;
  }

  .pack-card {
    display: block;
  }

  .pack-card:nth-child(n + 5) {
    display: block;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-card-large {
    grid-row: auto;
  }

  .banner {
    align-items: center;
  }

  .banner-art {
    flex-basis: 38%;
    min-width: 300px;
  }
}

@media (max-width: 1080px) and (min-width: 981px) {
  .pack-grid {
    grid-template-columns: repeat(4, minmax(144px, 1fr));
    gap: 44px 28px;
  }

  .pack-card:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .top-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    padding: 0 8px;
  }

  .nav-links a span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-hover-indicator {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 23px;
    height: 23px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-actions .muted,
  .icon-button {
    display: none;
  }

  .header-separator {
    display: none;
  }

  .hero {
    gap: 28px;
    padding: 34px 0 30px;
  }

  h1 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: 36px;
    line-height: 43px;
    text-wrap: balance;
  }

  .hero-subtext {
    margin-bottom: 28px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .live-card {
    height: 318px;
    padding: 18px;
    border-radius: 14px;
  }

  .wins-list {
    height: 244px;
  }

  .win-item {
    padding-right: 12px;
  }

  .win-title,
  .win-meta {
    max-width: 100%;
  }

  .hero-actions,
  .banner {
    align-items: stretch;
    flex-direction: column;
  }

  .banner-art {
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 449 / 217;
  }

  .banner-copy {
    padding: 24px;
  }

  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 18px;
  }

  .how-head {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-strip,
  .banner,
  .how-card {
    padding: 22px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px;
  }

  .pack-card {
    height: auto;
    min-height: 0;
  }

  .pack-image-wrap,
  .pack-tilt,
  .pack-tilt-inner {
    height: auto;
    aspect-ratio: 208 / 316;
  }

  .pack-image {
    height: 100%;
  }

  .how-head {
    gap: 18px;
  }

  .how-copy h2,
  .section-heading h2,
  .faq h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .pack-preview-stage {
    min-height: 220px;
  }

  .pack-preview {
    width: min(132px, 38vw);
  }

  .ship-preview {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px;
  }

  .ship-copy {
    flex: 1 1 calc(100% - 78px);
  }

  .ship-preview b {
    width: 100%;
    padding-left: 78px;
  }

  .faq-item {
    padding: 0 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 11px 24px;
  }

  .footer-brand p {
    max-width: none;
  }

  .language-select {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .top-actions .button {
    width: 86px;
    min-width: 86px;
  }

  .nav-links a {
    height: 34px;
    padding: 0 10px;
    font-size: 14px;
  }

  .nav-links svg {
    width: 18px;
    height: 18px;
  }

  h1 {
    font-size: 31px;
    line-height: 37px;
  }

  .hero-subtext,
  .how-copy p,
  .how-card-copy p,
  .banner p {
    font-size: 15px;
    line-height: 20px;
  }

  .live-card {
    height: 306px;
    padding: 16px;
  }

  .wins-list {
    height: 232px;
  }

  .win-item {
    height: 54px;
    padding: 8px;
  }

  .win-left {
    gap: 8px;
  }

  .item-art {
    width: 36px;
    height: 36px;
  }

  .item-art::before {
    width: 28px;
    height: 28px;
  }

  .win-title,
  .win-meta {
    max-width: 100%;
  }

  .win-copy {
    max-width: 42vw;
  }

  .win-price {
    font-size: 13px;
  }

  .section {
    padding: 42px 0;
  }

  .stats-strip {
    border-radius: 14px;
  }

  .stat {
    gap: 12px;
  }

  .stat strong {
    font-size: 22px;
    line-height: 26px;
  }

  .how-card {
    padding: 18px;
  }

  .pack-preview-stage {
    min-height: 190px;
  }

  .pack-preview-center {
    transform: translateY(-6px);
  }

  .pack-preview-left {
    transform: translate(-52px, 14px) rotate(-13deg);
  }

  .pack-preview-right {
    transform: translate(52px, 14px) rotate(13deg);
  }

  .how-card-large:hover .pack-preview-left {
    transform: translate(-64px, 12px) rotate(-18deg);
  }

  .how-card-large:hover .pack-preview-right {
    transform: translate(64px, 12px) rotate(18deg);
  }

  .item-preview-track span {
    width: 72px;
    height: 72px;
  }

  .item-preview-track img {
    width: 52px;
    height: 52px;
  }

  .pack-grid {
    gap: 38px 14px;
  }

  .pack-price {
    font-size: 15px;
  }

  .banner-art {
    min-width: 0;
  }

  .banner-copy {
    padding: 20px;
  }

  .footer {
    padding: 16px 11px;
  }
}

@media (max-width: 340px) {
  .brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-actions .button {
    width: 78px;
    min-width: 78px;
    font-size: 13px;
  }

  .nav-links a {
    flex-basis: calc(50% - 8px);
  }

  h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .win-copy {
    max-width: 38vw;
  }

  .pack-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pack-card {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .top-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    right: 0;
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    align-items: stretch;
    width: min(240px, calc(100vw - 12px));
    max-width: none;
    gap: 0;
    padding: 8px 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    background: rgb(29, 33, 37);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  }

  .topbar.menu-open .nav-links {
    display: flex;
    z-index: 1001;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 44px 0 34px;
  }

  .live-card {
    max-width: none;
  }

  h1,
  .hero-subtext {
    max-width: 100%;
  }

  .nav-hover-indicator {
    display: none;
  }

  .nav-links a {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    gap: 12px;
    border-radius: 0;
    color: rgb(250, 250, 250);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .nav-links a span {
    overflow: visible;
    text-overflow: clip;
    font-weight: 600;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: transparent;
    color: rgb(250, 250, 250);
  }

  .nav-links svg {
    top: 0;
    width: 18px;
    height: 18px;
    color: rgb(250, 250, 250);
    stroke-width: 1.8;
  }

  .nav-links a[href="#draws"]::after {
    content: "new";
    position: relative;
    top: -12px;
    margin-left: -2px;
    color: rgb(72, 187, 120);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
  }

  .topbar.menu-open .menu-toggle .menu-icon {
    display: none;
  }

  .topbar.menu-open .menu-toggle .close-icon {
    display: block;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 58px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .topbar-inner {
    min-height: 58px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-actions .button {
    display: none;
  }

  .header-separator {
    display: block;
    width: 1px;
    height: 24px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.12);
  }

  .sound-button {
    display: grid;
    width: 32px;
    height: 32px;
    background: transparent;
    color: rgb(122, 128, 132);
  }

  .sound-button svg {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    color: rgb(250, 250, 250);
  }

  .menu-toggle svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }

  .nav-links {
    position: fixed;
    top: 58px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    padding: 16px 16px 32px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: rgb(29, 33, 37);
    box-shadow: none;
  }

  .topbar.menu-open .nav-links {
    display: flex;
    z-index: 1001;
  }

  .mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px;
    padding: 24px 40px;
    border-radius: 8px;
    background: rgb(34, 39, 43);
  }

  .mobile-menu-auth .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 24px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .mobile-menu-auth .button.muted {
    background: rgb(52, 56, 60);
  }

  .mobile-menu-auth .button.primary {
    background: rgb(66, 153, 225);
  }

  .nav-links a {
    height: 52px;
    padding: 0 8px;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
  }

  .nav-links a span {
    font-weight: 700;
  }

  .nav-links svg {
    width: 18px;
    height: 18px;
    color: rgb(122, 128, 132);
  }

  .nav-links a[href="#draws"]::after {
    top: -12px;
    margin-left: -4px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 23px;
    height: 23px;
  }

  .top-actions .button {
    width: 86px;
    min-width: 86px;
  }
}

