:root {
  --bg: #06080c;
  --bg-2: #0a100e;
  --bg-3: #10180f;
  --card: #121a16;
  --line: rgba(86, 255, 140, 0.12);
  --text: #f4f7f2;
  --muted: #9aab9e;
  --green: #2ee56a;
  --green-2: #12b453;
  --green-hot: #7cff9a;
  --green-soft: rgba(46, 229, 106, 0.16);
  --blue: #7dff9f;
  --gold: #f6c453;
  --gold-2: #e09a1a;
  --danger: #f87171;
  --radius: 18px;
  --radius-sm: 10px;
  --header: 72px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 40px rgba(46, 229, 106, 0.22);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #040605;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background:
    radial-gradient(920px 520px at 12% -8%, rgba(46, 229, 106, 0.22), transparent 58%),
    radial-gradient(720px 420px at 92% 0%, rgba(246, 196, 83, 0.12), transparent 52%),
    radial-gradient(640px 360px at 80% 70%, rgba(18, 180, 83, 0.08), transparent 60%),
    linear-gradient(180deg, #070b09 0%, #050706 42%, #080c0a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(46, 229, 106, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 72%);
}

header,
main,
footer,
.sticky-cta {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-hot);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #b8ffcb;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--green);
  color: #04130a;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(5, 8, 7, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(46, 229, 106, 0.16);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  position: relative;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.logo:hover {
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(46, 229, 106, 0.35));
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 36px;
  width: auto;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-menu a:hover {
  color: #fff;
  background: rgba(46, 229, 106, 0.1);
  text-decoration: none;
}

.nav-menu a.active {
  color: #fff;
  background: rgba(46, 229, 106, 0.12);
  text-decoration: none;
}

@media (max-width: 1280px) {
  .nav-menu {
    gap: 2px;
  }

  .nav-menu a {
    padding: 8px 6px;
    font-size: 0.82rem;
  }
}

.header-auth {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn,
.header-auth a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.header-auth a {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.btn:hover,
.header-auth a:hover {
  text-decoration: none;
}

.btn-ghost,
.header-auth .btn-login {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover,
.header-auth .btn-login:hover {
  border-color: rgba(46, 229, 106, 0.4);
  background: rgba(46, 229, 106, 0.08);
}

.btn-green,
.header-auth .btn-register {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7dff9a 0%, var(--green) 48%, var(--green-2) 100%);
  color: #04170a;
  box-shadow:
    0 0 0 1px rgba(180, 255, 200, 0.25) inset,
    0 10px 28px rgba(46, 229, 106, 0.38),
    0 0 24px rgba(46, 229, 106, 0.22);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.btn-green::after,
.header-auth .btn-register::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  animation: shine 2.8s ease-in-out infinite;
}

.btn-green:hover,
.header-auth .btn-register:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(180, 255, 200, 0.35) inset,
    0 14px 34px rgba(46, 229, 106, 0.48),
    0 0 32px rgba(46, 229, 106, 0.3);
}

@keyframes shine {
  0%,
  55% {
    left: -40%;
  }
  100% {
    left: 140%;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(180, 255, 200, 0.25) inset,
      0 10px 28px rgba(46, 229, 106, 0.34),
      0 0 18px rgba(46, 229, 106, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(180, 255, 200, 0.4) inset,
      0 14px 36px rgba(46, 229, 106, 0.55),
      0 0 36px rgba(46, 229, 106, 0.38);
  }
}

.btn-lg {
  min-height: 54px;
  padding: 0 24px;
  font-size: 1.02rem;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #1c2330;
  border-radius: 12px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

.hero {
  position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 42%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 40% 40%, rgba(46, 229, 106, 0.28), transparent 58%),
    radial-gradient(circle at 70% 30%, rgba(246, 196, 83, 0.12), transparent 46%);
  pointer-events: none;
  filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46, 229, 106, 0.4);
  background: var(--green-soft);
  color: #c8ffd6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(46, 229, 106, 0.12);
}

.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 16px 0 12px;
  max-width: 16em;
  text-shadow: 0 0 40px rgba(46, 229, 106, 0.18);
}

.page-hero h1,
.hero .page-hero-copy h1 {
  max-width: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px 32px;
  align-items: center;
}

.page-hero-copy .disclosure {
  margin-bottom: 0;
}

.hero .page-hero-copy .disclosure {
  margin-bottom: 18px;
}

.page-hero-grid .shot {
  max-width: none;
}

.lead,
.page-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 22px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 28, 22, 0.9);
  border: 1px solid rgba(46, 229, 106, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: #d7eadc;
}

.chip:last-child {
  border-color: rgba(246, 196, 83, 0.4);
  color: var(--gold);
}

.promo-card {
  margin-top: 28px;
  position: relative;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(246, 196, 83, 0.14), transparent 55%),
    linear-gradient(165deg, #1a2618 0%, #10180f 55%, #0d140c 100%);
  border: 1px solid rgba(246, 196, 83, 0.32);
  border-radius: 22px;
  padding: 28px 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(46, 229, 106, 0.08) inset,
    0 0 50px rgba(246, 196, 83, 0.08);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(246, 196, 83, 0.28);
  border-radius: 14px;
  pointer-events: none;
}

.promo-code {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 10px 0 14px;
  background: linear-gradient(180deg, #fff3c4 0%, #f6c453 42%, #d4921a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(246, 196, 83, 0.4));
}

.copy-btn {
  background: linear-gradient(180deg, #2a2414, #1a160c);
  color: var(--gold);
  border: 1px solid rgba(246, 196, 83, 0.4);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.copy-btn:hover {
  background: rgba(246, 196, 83, 0.14);
}

.copy-btn.is-copied {
  background: var(--green-soft);
  color: #bbf7d0;
  border-color: rgba(46, 229, 106, 0.4);
}

.h1-promo {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.copy-btn--code {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  min-height: 0;
  margin: 0.08em 0 0;
  padding: 0.12em 0.5em 0.14em 0.58em;
  font-family: var(--display);
  font-size: 0.78em;
  letter-spacing: 0.04em;
  line-height: 1.15;
  box-shadow: 0 0 18px rgba(246, 196, 83, 0.2);
}

.copy-btn--code svg {
  flex-shrink: 0;
  width: 0.72em;
  height: 0.72em;
}

.bonus-steps {
  display: grid;
  gap: 10px;
}

.bonus-step {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(46, 229, 106, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.92rem;
}

.bonus-step b {
  color: var(--gold);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.stat {
  background: linear-gradient(180deg, #17211b, var(--card));
  border: 1px solid rgba(46, 229, 106, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--green-hot);
  text-shadow: 0 0 16px rgba(46, 229, 106, 0.25);
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 56px 0;
  scroll-margin-top: 88px;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(10, 16, 14, 0.72), rgba(8, 12, 10, 0.5));
}

.section h2,
.prose h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.step,
.page-card {
  background: linear-gradient(180deg, #17211b, #10170f);
  border: 1px solid rgba(46, 229, 106, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.step-num,
.page-card .kicker {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a.page-card {
  color: inherit;
  text-decoration: none;
}

a.page-card:hover,
a.card:hover {
  text-decoration: none;
  border-color: rgba(46, 229, 106, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), var(--glow);
}

a.card {
  color: inherit;
  text-decoration: none;
}

.page-card h3,
.step h3,
.card h3 {
  margin: 8px 0 8px;
  font-size: 1.12rem;
}

.page-card p,
.step p,
.card p {
  margin: 0;
  color: var(--muted);
}

.deposit-ladder {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.deposit-ladder li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 18px 16px;
  background: linear-gradient(180deg, #17211b, #10170f);
  border: 1px solid rgba(46, 229, 106, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.deposit-ladder__n {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deposit-ladder strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--green-hot);
  text-shadow: 0 0 18px rgba(46, 229, 106, 0.28);
}

.deposit-ladder__spins {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.deposit-ladder .is-final {
  background:
    radial-gradient(140px 80px at 100% 0%, rgba(246, 196, 83, 0.18), transparent 60%),
    linear-gradient(180deg, #1e2a16, #141c10);
  border-color: rgba(246, 196, 83, 0.48);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(246, 196, 83, 0.12);
}

.deposit-ladder .is-final strong {
  background: linear-gradient(180deg, #fff3c4 0%, #f6c453 55%, #d4921a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(246, 196, 83, 0.35));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(246, 196, 83, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(46, 229, 106, 0.1);
}

th {
  background: linear-gradient(180deg, #24331c, #1a2616);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

td:nth-child(2),
td:nth-child(3) {
  color: var(--green-hot);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

.prose {
  max-width: 760px;
}

.prose p {
  color: #d5e3d8;
}

.prose ul,
.prose ol {
  color: #d5e3d8;
  padding-left: 1.2rem;
}

.note {
  background: rgba(46, 229, 106, 0.08);
  border: 1px solid rgba(46, 229, 106, 0.22);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #d7ffe4;
}

.warn {
  background: rgba(245, 193, 74, 0.1);
  border: 1px solid rgba(245, 193, 74, 0.32);
  color: #fde68a;
}

.page-hero {
  position: relative;
  padding: 36px 0 28px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(46, 229, 106, 0.16), transparent 64%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--muted);
}

.faq-item {
  border: 1px solid rgba(46, 229, 106, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #162019, var(--card));
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(46, 229, 106, 0.32);
  box-shadow: 0 0 24px rgba(46, 229, 106, 0.08);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 16px 18px;
  font: 700 1rem/1.4 var(--font);
  cursor: pointer;
}

.faq-item .faq-body {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-body {
  display: block;
}

.site-footer {
  border-top: 1px solid rgba(46, 229, 106, 0.14);
  padding: 28px 0 24px;
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(46, 229, 106, 0.08), transparent 60%),
    #050806;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 48px;
}

.footer-brand {
  flex: 1 1 240px;
  max-width: 420px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-nav {
  flex: 1 1 320px;
  max-width: 560px;
}

.site-footer h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 2px 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--text);
}

.legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: #7e8898;
  line-height: 1.5;
}

.sticky-cta {
  display: none;
}

.disclosure {
  font-size: 0.86rem;
  color: #8b95a6;
  margin: 0 0 18px;
  max-width: 62ch;
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.shot-grid .shot {
  display: flex;
  flex-direction: column;
}

.shot-grid .shot img {
  aspect-ratio: 8 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.shot-grid .shot figcaption {
  flex: 1;
}

.shot {
  margin: 0;
  background: var(--card);
  border: 1px solid rgba(46, 229, 106, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(246, 196, 83, 0.08);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.shot figcaption {
  padding: 10px 14px 14px;
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .header-panel {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  body.nav-open .header-panel {
    display: flex;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #10180f;
    border: 1px solid rgba(46, 229, 106, 0.2);
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
    z-index: 70;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  body.nav-open .sticky-cta {
    display: none;
  }

  body.nav-open .nav-menu,
  body.nav-open .header-auth {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .logo-img {
    height: 34px;
  }

  .promo-card,
  .stats,
  .grid-2,
  .grid-3,
  .bonus-step,
  .shot-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .shot-grid .shot img {
    aspect-ratio: auto;
    object-fit: unset;
    height: auto;
  }

  .deposit-ladder {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .sticky-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
    z-index: 40;
    padding: 8px;
    background: #0c120f;
    border: 1px solid rgba(46, 229, 106, 0.16);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  }

  .sticky-cta a {
    flex: 1;
    min-height: 48px;
    border-radius: 14px;
  }

  .sticky-cta .btn-ghost {
    background: #2c3a32;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
  }

  .sticky-cta .btn-ghost:hover {
    background: #35463c;
    border-color: rgba(46, 229, 106, 0.45);
  }
}

@media (max-width: 560px) {
  .deposit-ladder {
    grid-template-columns: 1fr;
  }

  .deposit-ladder li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 14px 16px;
  }

  .deposit-ladder__n {
    grid-column: 1;
    grid-row: 1;
  }

  .deposit-ladder strong {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1.7rem;
    justify-self: end;
  }

  .deposit-ladder__spins {
    grid-column: 1;
    grid-row: 2;
  }
}

.azer-chat {
  position: fixed;
  z-index: 50;
  right: 16px;
  bottom: 20px;
  font-family: var(--font);
  pointer-events: none;
}

.azer-chat__toggle {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #04170a;
  background: linear-gradient(180deg, #7dff9a 0%, var(--green) 48%, var(--green-2) 100%);
  box-shadow: 0 10px 28px rgba(46, 229, 106, 0.38), var(--glow);
}

.azer-chat__toggle:hover {
  filter: brightness(1.06);
}

.azer-chat__toggle svg {
  width: 26px;
  height: 26px;
}

.azer-chat__panel {
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 24px));
  height: min(540px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #17211b, #10170f);
  border: 1px solid rgba(46, 229, 106, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.azer-chat.is-open .azer-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.azer-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border-bottom: 1px solid rgba(46, 229, 106, 0.12);
}

.azer-chat__brand {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.azer-chat__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  background: #1a241c;
  box-shadow: none;
}

.azer-chat__brand strong {
  display: block;
  font-size: 0.95rem;
}

.azer-chat__brand span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.azer-chat__icon {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 10px;
}

.azer-chat__icon:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.azer-chat__messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 8px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color-scheme: dark;
}

@supports not selector(::-webkit-scrollbar) {
  .azer-chat__messages {
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 229, 106, 0.5) transparent;
  }
}

.azer-chat__messages::-webkit-scrollbar {
  width: 8px;
}

.azer-chat__messages::-webkit-scrollbar-track {
  margin: 8px 0;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
}

.azer-chat__messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7cff9a, var(--green));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.azer-chat__messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9dffb4, #2ee56a);
  background-clip: padding-box;
}

.azer-chat__messages::-webkit-scrollbar-button,
.azer-chat__messages::-webkit-scrollbar-corner {
  display: none;
  width: 0;
  height: 0;
}

.azer-chat__empty {
  margin: auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.azer-chat__empty strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.azer-chat__suggests {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  text-align: left;
}

.azer-chat__suggest {
  appearance: none;
  border: 1px solid rgba(46, 229, 106, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  text-align: left;
}

.azer-chat__suggest:hover {
  border-color: rgba(46, 229, 106, 0.4);
}

.azer-msg {
  max-width: 88%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.azer-msg--user {
  align-self: flex-end;
}

.azer-msg--assistant {
  align-self: flex-start;
}

.azer-msg__bubble {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

.azer-msg--user .azer-msg__bubble {
  background: linear-gradient(180deg, #7dff9a 0%, var(--green) 100%);
  color: #04170a;
  border-bottom-right-radius: 4px;
}

.azer-msg--assistant .azer-msg__bubble {
  background: #1a241c;
  border: 1px solid rgba(46, 229, 106, 0.12);
  color: #d5e3d8;
  border-bottom-left-radius: 4px;
}

.azer-msg__bubble a {
  color: var(--green-hot);
}

.azer-msg--user .azer-msg__bubble a {
  color: #04170a;
}

.azer-msg__meta {
  font-size: 0.65rem;
  color: var(--muted);
  padding: 0 6px;
}

.azer-msg--user .azer-msg__meta {
  text-align: right;
}

.azer-typing {
  display: inline-flex;
  gap: 5px;
}

.azer-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: aw-dot 1.1s ease-in-out infinite;
}

.azer-typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.azer-typing i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes aw-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
  }
  40% {
    opacity: 1;
  }
}

.azer-chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(46, 229, 106, 0.12);
}

.azer-chat__form textarea {
  width: 100%;
  resize: none;
  min-height: 44px;
  max-height: 110px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(46, 229, 106, 0.16);
  background: #0c120f;
  color: var(--text);
  font: inherit;
}

.azer-chat__send {
  appearance: none;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  background: var(--green);
  color: #04170a;
}

.azer-chat__send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .azer-chat {
    right: 12px;
    bottom: 84px;
  }

  body.chat-open .sticky-cta {
    display: none;
  }

  body.chat-open .azer-chat {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  body.chat-open .azer-chat__panel {
    left: 0;
    right: 0;
    width: 100%;
    height: min(78vh, calc(100vh - 86px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-green::after,
  .header-auth .btn-register::after {
    animation: none;
  }

  .btn-green,
  .header-auth .btn-register {
    animation: none;
  }

  .btn,
  .header-auth a,
  a.page-card,
  a.card {
    transition: none;
  }
}
