:root {
  --bg: #030817;
  --bg-soft: #080d20;
  --panel: rgba(11, 15, 33, .86);
  --panel-strong: rgba(16, 21, 46, .94);
  --line: rgba(126, 73, 255, .32);
  --line-soft: rgba(151, 164, 212, .18);
  --text: #f8f7ff;
  --muted: #b8bad4;
  --muted-2: #8f95b6;
  --purple: #8a43ff;
  --purple-2: #6026db;
  --purple-3: #b278ff;
  --green: #19e676;
  --red: #ff4e70;
  --orange: #ff9718;
  --radius: 16px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(90, 28, 190, .24), transparent 28%),
    radial-gradient(circle at 18% 24%, rgba(42, 72, 162, .12), transparent 34%),
    linear-gradient(180deg, #030716 0%, #071026 52%, #040817 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0 32%, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 120%, rgba(54, 91, 179, .16), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, .34), transparent 18%, transparent 82%, rgba(0, 0, 0, .34));
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1392px, calc(100% - 64px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 7, 18, .68);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: rotate(-18deg);
  border-radius: 12px;
  background:
    linear-gradient(145deg, #a06bff 0%, #6f2df4 47%, #3a168e 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .24),
    0 0 28px rgba(136, 67, 255, .42);
}

.logo::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 6px;
}

.logo span {
  position: relative;
  transform: rotate(18deg);
  font-weight: 950;
  line-height: 1;
}

.menu,
.nav-actions,
.footer-menu,
.socials {
  display: flex;
  align-items: center;
}

.menu {
  justify-content: center;
  gap: 36px;
}

.menu a,
.footer-menu a {
  color: #f5f3ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
}

.menu a {
  position: relative;
  padding: 9px 0;
}

.menu a.active {
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(138, 67, 255, .13);
  box-shadow: 0 0 24px rgba(138, 67, 255, .18);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple-3);
  box-shadow: 0 0 16px var(--purple);
}

.menu a:hover,
.footer-menu a:hover {
  color: #c9b3ff;
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  padding: 0 25px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #8e44ff 0%, #6728eb 100%);
  box-shadow: 0 18px 46px rgba(96, 38, 219, .34);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
}

.btn.ghost {
  background: rgba(10, 13, 30, .58);
  border: 1px solid rgba(143, 88, 255, .42);
  box-shadow: inset 0 0 30px rgba(98, 53, 186, .08);
}

.btn.small {
  min-height: 38px;
  min-width: 96px;
  padding: 0 21px;
  font-size: 14px;
}

.hero {
  padding: 40px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 657px);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  padding-top: 18px;
}

.badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border: 1px solid rgba(122, 138, 188, .32);
  border-radius: 999px;
  color: #f7f6ff;
  background: rgba(7, 11, 27, .64);
  box-shadow: inset 0 0 18px rgba(143, 88, 255, .05);
  font-size: 14px;
  line-height: 1.35;
}

.dot,
.live-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(25, 230, 118, .9);
  flex: 0 0 auto;
}

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

h1 {
  max-width: 660px;
  margin: 19px 0 9px;
  font-size: clamp(42px, 4.8vw, 61px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 950;
}

#hero-title span {
  color: var(--purple);
  text-shadow: 0 0 26px rgba(138, 67, 255, .34);
}

.lead {
  max-width: 610px;
  margin-bottom: 19px;
  color: #dcdef0;
  font-size: 18px;
  line-height: 1.48;
}

.claim-form {
  max-width: 618px;
}

.coins {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 21px;
}

.coin-pick {
  min-width: 49px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #f5f3ff;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.coin-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.coin {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    inset 0 6px 10px rgba(255, 255, 255, .16),
    0 11px 22px rgba(0, 0, 0, .34);
  transition: transform .18s ease, box-shadow .18s ease, outline-color .18s ease;
}

.coin-input:checked + .coin {
  outline: 2px solid rgba(179, 128, 255, .88);
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow:
    inset 0 6px 10px rgba(255, 255, 255, .17),
    0 0 22px rgba(138, 67, 255, .48);
}

.coin.ltc,
.coin-mini.ltc {
  background: linear-gradient(135deg, #f3f4fb, #6c748b 52%, #3b4158);
}

.coin.btc,
.coin-mini.btc {
  background: linear-gradient(135deg, #ffcc57, #ff8c12 55%, #d26408);
}

.coin.doge,
.coin-mini.doge {
  background: linear-gradient(135deg, #f4dc70, #c89b24 56%, #8a6715);
}

.coin.trx,
.coin-mini.trx {
  background: linear-gradient(135deg, #ff5066, #e00024 56%, #9f0018);
}

.coin.usdt,
.coin-mini.usdt {
  background: linear-gradient(135deg, #54e3bd, #1aa980 56%, #0c7c5c);
}

.coin.bch,
.coin-mini.bch {
  background: linear-gradient(135deg, #78ee63, #20b332 56%, #11801d);
}

.coin.dash,
.coin-mini.dash {
  background: linear-gradient(135deg, #48b7ff, #136ed5 58%, #0d469c);
}

.coin.eth,
.coin-mini.eth {
  background: linear-gradient(135deg, #9ea8ff, #5d63d7 55%, #363689);
}

.claim-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 175px;
  gap: 13px;
  align-items: stretch;
}

.input-wrap {
  position: relative;
}

.claim-box input,
input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(120, 135, 182, .26);
  border-radius: 10px;
  outline: 0;
  color: #fff;
  background: rgba(7, 12, 30, .83);
  padding: 14px 17px;
  font-size: 15px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.claim-box input {
  padding-left: 49px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(171, 121, 255, .74);
  box-shadow: 0 0 0 4px rgba(138, 67, 255, .12);
  background: rgba(9, 14, 34, .94);
}

input::placeholder,
textarea::placeholder {
  color: #aeb2ca;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border: 1.7px solid #f1efff;
  border-radius: 50% 50% 42% 42%;
  opacity: .9;
}

.input-icon::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -12px;
  height: 10px;
  border: 1.7px solid #f1efff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.claim-btn {
  min-height: 52px;
}

.send-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  clip-path: polygon(0 43%, 100% 0, 62% 100%, 43% 60%);
  background: currentColor;
  transform: rotate(-8deg);
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
  color: #c6c8da;
  font-size: 13px;
}

.micro-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 1.6px solid var(--purple-3);
  border-radius: 50%;
}

.check::after {
  content: "";
  display: block;
  width: 5px;
  height: 3px;
  margin: 2.5px 0 0 2.4px;
  border-left: 1.7px solid var(--purple-3);
  border-bottom: 1.7px solid var(--purple-3);
  transform: rotate(-45deg);
}

.alert {
  margin: 16px 0;
  padding: 15px 17px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.success {
  color: #bdfbd8;
  background: rgba(25, 230, 118, .12);
  border: 1px solid rgba(25, 230, 118, .34);
}

.error {
  color: #ffd4dc;
  background: rgba(255, 78, 112, .13);
  border: 1px solid rgba(255, 78, 112, .36);
}

.art-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  border: 1px solid rgba(138, 67, 255, .5);
  border-radius: 15px;
  background:
    radial-gradient(circle at 72% 34%, rgba(153, 72, 255, .36), transparent 34%),
    radial-gradient(circle at 93% 78%, rgba(74, 255, 214, .18), transparent 18%),
    linear-gradient(135deg, rgba(16, 20, 48, .94), rgba(7, 11, 29, .97));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .03),
    0 20px 90px rgba(94, 35, 201, .2);
}

.art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .55) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(176, 102, 255, .72) 0 1px, transparent 2px);
  background-size: 115px 95px, 153px 123px;
  background-position: 14px 12px, 63px 42px;
  opacity: .35;
}

.art-content {
  position: relative;
  z-index: 3;
  padding: 39px 0 39px 31px;
}

.art-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.art-card p {
  max-width: 280px;
  margin-bottom: 22px;
  color: #d4d5e8;
  font-size: 15px;
  line-height: 1.62;
}

.learn-btn {
  min-width: 135px;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wallet {
  position: absolute;
  right: 58px;
  bottom: 55px;
  width: 226px;
  height: 174px;
  border-radius: 28px;
  transform: rotate(5deg) skewY(2deg);
  background:
    linear-gradient(160deg, rgba(255,255,255,.18), transparent 14%),
    linear-gradient(135deg, #8d56ff 0%, #6425ce 45%, #27115f 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .16),
    inset 8px 8px 24px rgba(255, 255, 255, .08),
    0 28px 48px rgba(40, 10, 100, .62),
    0 0 40px rgba(151, 72, 255, .42);
}

.wallet::before {
  content: "";
  position: absolute;
  inset: 14px 18px;
  border-radius: 21px;
  border: 1px dashed rgba(255, 255, 255, .28);
}

.wallet::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 22px;
  top: -22px;
  height: 39px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(135deg, #9c69ff, #4c19ac);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12);
}

.wallet-mark {
  position: absolute;
  left: 70px;
  top: 48px;
  color: #4d129c;
  font-size: 77px;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(221, 187, 255, .75),
    0 0 24px rgba(255, 255, 255, .25);
}

.wallet-strap {
  position: absolute;
  right: -28px;
  top: 61px;
  width: 91px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, #7a3be2, #3a137c);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .12),
    -12px 0 23px rgba(0, 0, 0, .22);
}

.wallet-strap span {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9dbff, #8d68e7);
  box-shadow: inset 0 0 0 3px rgba(63, 23, 126, .3);
}

.platform {
  position: absolute;
  right: 37px;
  bottom: 14px;
  width: 306px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(208, 92, 255, .92), rgba(112, 41, 234, .44) 37%, rgba(22, 18, 56, .82) 68%, transparent 69%);
  box-shadow: 0 0 45px rgba(138, 67, 255, .48);
}

.platform::before {
  content: "";
  position: absolute;
  inset: 14px 39px 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
}

.orb {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 29px;
  font-weight: 950;
  border: 4px solid rgba(255, 255, 255, .3);
  box-shadow:
    inset 0 7px 12px rgba(255, 255, 255, .25),
    0 18px 35px rgba(0, 0, 0, .36),
    0 0 24px rgba(138, 67, 255, .3);
}

.orb.o1 {
  right: 276px;
  top: 41px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ffc24a, #fb8a15 55%, #c55305);
}

.orb.o2 {
  right: 326px;
  bottom: 94px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ebe5ff, #8c7db4 58%, #53446c);
}

.orb.o3 {
  right: 18px;
  bottom: 61px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #75f3d6, #21ba9a 58%, #087d66);
}

.spark {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: #e8d6ff;
  box-shadow: 0 0 15px #a45dff;
}

.spark.s1 { right: 254px; top: 110px; }
.spark.s2 { right: 94px; top: 37px; width: 5px; height: 5px; }
.spark.s3 { right: 142px; bottom: 32px; }
.spark.s4 { right: 16px; top: 59px; width: 6px; height: 6px; }

.section {
  padding: 29px 0;
}

.steps-section {
  padding-top: 11px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 850;
}

.section-title span,
.title-gem {
  width: 7px;
  height: 7px;
  display: inline-block;
  transform: rotate(45deg);
  border: 1px solid #b980ff;
  background: #7332e6;
  box-shadow: 0 0 15px rgba(138, 67, 255, .7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  max-width: 1054px;
  margin-inline: auto;
}

.step {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 19px;
  align-items: center;
  padding: 18px 27px 18px 31px;
  border: 1px solid rgba(122, 138, 188, .29);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(15, 20, 43, .9), rgba(9, 13, 31, .88));
  box-shadow: inset 0 0 38px rgba(95, 61, 182, .05);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -39px;
  top: 50%;
  width: 27px;
  height: 15px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--purple) 0 0) left 7px / 24px 2px no-repeat,
    linear-gradient(45deg, transparent 45%, var(--purple) 46% 54%, transparent 55%) right center / 13px 13px no-repeat;
}

.step-num {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8e45ff, #5524dc);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 19px rgba(98, 38, 219, .44);
}

.step-icon {
  width: 46px;
  height: 46px;
  margin-left: 40px;
  color: var(--purple);
  opacity: .98;
}

.user-icon {
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 22px 22px 0 0;
  position: relative;
  height: 25px;
  align-self: end;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -31px;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.gift-icon {
  position: relative;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.gift-icon::before,
.gift-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.gift-icon::before {
  left: 50%;
  top: -3px;
  width: 3px;
  height: 49px;
  transform: translateX(-50%);
}

.gift-icon::after {
  left: -7px;
  right: -7px;
  top: 10px;
  height: 3px;
}

.wallet-icon {
  position: relative;
  border: 3px solid currentColor;
  border-radius: 7px;
  height: 34px;
}

.wallet-icon::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 9px;
  width: 18px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background: var(--bg-soft);
}

.step h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.step p {
  margin-bottom: 0;
  color: #d2d3e5;
  font-size: 13px;
  line-height: 1.45;
}

.dashboard-section {
  padding-top: 0;
}

.data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(390px, .86fr);
  gap: 24px;
}

.panel {
  border: 1px solid rgba(122, 138, 188, .24);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(12, 17, 38, .94), rgba(8, 12, 29, .95));
  box-shadow: var(--shadow), inset 0 0 46px rgba(92, 54, 171, .04);
}

.payouts-panel,
.stats-panel {
  padding: 20px 20px 22px;
}

.panel h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.panel-note {
  color: #c9cadb;
  font-size: 13px;
  font-weight: 500;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #f7f5ff;
}

thead tr {
  border-radius: 8px;
}

th {
  padding: 8px 12px;
  color: #e9e4ff;
  background: rgba(82, 52, 145, .42);
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

th:first-child {
  border-radius: 8px 0 0 8px;
}

th:last-child {
  border-radius: 0 8px 8px 0;
}

td {
  padding: 6px 12px;
  color: #e4e6f4;
  border-bottom: 1px solid rgba(150, 161, 205, .08);
  font-size: 13px;
  white-space: nowrap;
}

.currency-cell {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.coin-mini {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
}

.empty {
  padding: 28px 12px;
  color: var(--muted);
  text-align: center;
}

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

.stat {
  position: relative;
  min-height: 103px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 19px 20px;
  border: 1px solid rgba(122, 138, 188, .22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(17, 22, 48, .88), rgba(11, 15, 34, .92));
}

.stat-icon {
  grid-row: span 2;
  align-self: center;
  width: 46px;
  height: 46px;
  color: var(--purple);
  filter: drop-shadow(0 0 13px rgba(138, 67, 255, .72));
}

.stat b {
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 850;
}

.stat span:last-child {
  color: #d4d5e7;
  font-size: 13px;
}

.stat-icon.users {
  position: relative;
}

.stat-icon.users::before,
.stat-icon.users::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: currentColor;
}

.stat-icon.users::before {
  left: 15px;
  top: 5px;
  width: 16px;
  height: 16px;
  box-shadow: -15px 9px 0 -2px currentColor, 15px 9px 0 -2px currentColor;
}

.stat-icon.users::after {
  left: 4px;
  bottom: 5px;
  width: 38px;
  height: 17px;
  border-radius: 18px 18px 4px 4px;
  box-shadow: -12px 4px 0 -4px currentColor, 12px 4px 0 -4px currentColor;
}

.stat-icon.claims {
  position: relative;
  border: 5px solid currentColor;
  border-radius: 7px;
}

.stat-icon.claims::before,
.stat-icon.claims::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.stat-icon.claims::before {
  left: 50%;
  top: -5px;
  width: 5px;
  height: 46px;
  transform: translateX(-50%);
}

.stat-icon.claims::after {
  left: -9px;
  right: -9px;
  top: 12px;
  height: 5px;
}

.stat-icon.paid {
  position: relative;
}

.stat-icon.paid::before,
.stat-icon.paid::after {
  content: "";
  position: absolute;
  left: 6px;
  width: 32px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.stat-icon.paid::before {
  top: 6px;
  box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
}

.stat-icon.paid::after {
  right: 2px;
  bottom: 2px;
  left: auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.28);
}

.stat-icon.online {
  position: relative;
}

.stat-icon.online::before,
.stat-icon.online::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 9px;
  border-radius: 4px 4px 2px 2px;
  background: currentColor;
}

.stat-icon.online::before {
  left: 7px;
  height: 15px;
  box-shadow: 15px -8px 0 currentColor, 30px -20px 0 currentColor;
}

.faq-anchor {
  height: 0;
}

.footer {
  margin-top: 0;
  border-top: 1px solid rgba(122, 138, 188, .16);
  background: rgba(4, 8, 20, .26);
}

.footer-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 13px;
}

.small {
  margin-bottom: 0;
  color: #aab0ca;
  font-size: 12px;
}

.footer-menu {
  justify-content: center;
  gap: 38px;
}

.socials {
  justify-content: flex-end;
  gap: 18px;
}

.socials a {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 138, 188, .19);
  border-radius: 50%;
  color: #e8e7f5;
  background: rgba(21, 25, 52, .62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.mail-icon {
  position: relative;
  width: 18px;
  height: 13px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.mail-icon::before {
  left: 0;
  transform: rotate(37deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 0;
  transform: rotate(-37deg);
  transform-origin: right center;
}

.notice,
.danger,
.muted,
.pill {
  color: var(--muted);
}

.notice {
  padding: 17px;
  border: 1px solid rgba(138, 67, 255, .28);
  border-radius: 12px;
  background: rgba(138, 67, 255, .09);
}

.danger {
  color: #ff8a9e;
}

.admin-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tabs a {
  padding: 10px 14px;
  border: 1px solid rgba(151, 164, 212, .2);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .045);
  text-decoration: none;
  font-weight: 700;
}

.admin-wrap .panel,
.installed {
  padding: 26px;
}

.installed {
  max-width: 760px;
  margin: 90px auto;
}

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

label {
  display: block;
  margin: 12px 0 7px;
  color: #f6f4ff;
  font-weight: 800;
}

textarea {
  resize: vertical;
}

.admin-table input {
  min-height: 40px;
  padding: 9px 10px;
}

hr {
  border: 0;
  border-top: 1px solid rgba(151, 164, 212, .18);
  margin: 26px 0;
}

@media (max-width: 1200px) {
  .container {
    width: min(100% - 42px, 1060px);
  }

  .hero-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .art-card {
    min-height: 340px;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .menu {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .menu a {
    font-size: 13px;
  }

  .hero {
    padding-top: 25px;
  }

  .steps,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 70px 1fr;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .footer-menu,
  .socials {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .topbar {
    position: static;
  }

  .nav {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 18px 0;
    gap: 16px;
  }

  .nav-actions {
    justify-content: stretch;
  }

  .nav-actions .btn {
    flex: 1;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 16px;
  }

  .claim-box {
    grid-template-columns: 1fr;
  }

  .claim-btn {
    width: 100%;
  }

  .coins {
    gap: 12px;
  }

  .coin-pick {
    min-width: 43px;
  }

  .art-card {
    min-height: 500px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .art-content {
    padding: 28px 25px;
  }

  .scene {
    top: 150px;
  }

  .wallet {
    right: 50%;
    bottom: 72px;
    transform: translateX(50%) rotate(5deg) skewY(2deg) scale(.86);
  }

  .platform {
    right: 50%;
    bottom: 25px;
    transform: translateX(50%) scale(.82);
  }

  .orb.o1 {
    right: calc(50% + 70px);
    top: 42px;
  }

  .orb.o2 {
    right: calc(50% + 112px);
    bottom: 142px;
  }

  .orb.o3 {
    right: calc(50% - 164px);
    bottom: 108px;
  }

  .step {
    padding: 20px;
  }

  .step-icon {
    margin-left: 35px;
  }

  .panel h2 {
    flex-wrap: wrap;
  }

  th,
  td {
    padding-inline: 10px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 37px;
  }

  .badge {
    align-items: flex-start;
  }

  .coin {
    width: 32px;
    height: 32px;
  }

  .micro-row {
    display: grid;
    gap: 10px;
  }

  .art-card {
    min-height: 485px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .stat b {
    font-size: 22px;
  }
}

/* Production responsive hardening */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

.container,
.hero-grid,
.data-grid,
.steps,
.stats-grid,
.claim-form,
.claim-box,
.panel,
.art-card,
.table-wrap {
  min-width: 0;
}

.table-wrap {
  width: 100%;
}

.stat b,
td,
th {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .hero-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .claim-form,
  h1,
  .lead {
    max-width: none;
  }
}

@media (max-width: 680px) {
  body::after {
    background: radial-gradient(circle at 50% 120%, rgba(54, 91, 179, .12), transparent 34%);
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 22px 0 18px;
  }

  .hero-grid,
  .data-grid,
  .steps {
    gap: 18px;
  }

  .badge {
    width: 100%;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 43px);
    line-height: 1.06;
  }

  .coins {
    justify-content: flex-start;
  }

  .claim-box input,
  .claim-btn {
    min-height: 50px;
  }

  .art-card {
    overflow: hidden;
  }

  .panel {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .panel h2 {
    font-size: 22px;
    gap: 8px;
  }

  .panel-note {
    display: block;
    width: 100%;
    margin-left: 0;
    line-height: 1.4;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    margin: 0 0 12px;
    padding: 12px;
    border: 1px solid rgba(151, 164, 212, .16);
    border-radius: 12px;
    background: rgba(9, 14, 34, .54);
  }

  .table-wrap td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 8px 2px;
    border: 0;
    text-align: right;
  }

  .table-wrap td::before {
    content: attr(data-label);
    color: var(--muted-2);
    font-weight: 800;
    text-align: left;
  }

  .table-wrap td.empty {
    display: block;
    text-align: center;
  }

  .table-wrap td.empty::before {
    content: none;
  }

  .currency-cell {
    justify-content: flex-end;
  }

  .footer-row {
    align-items: start;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 18px);
  }

  .brand {
    font-size: 18px;
  }

  .logo {
    width: 34px;
    height: 34px;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-icon {
    margin: 6px auto 0;
  }

  .step-num {
    margin: 0 auto;
  }

  .stat {
    grid-template-columns: 42px 1fr;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }
}
