:root {
  --bg: #050810;
  --bg-2: #08111d;
  --panel: rgba(8, 18, 31, 0.86);
  --panel-strong: rgba(9, 23, 39, 0.96);
  --line: rgba(176, 212, 255, 0.16);
  --text: #f5f8ff;
  --muted: #a8b8cc;
  --soft: #d6e2f2;
  --green: #17e5a1;
  --blue: #42a5ff;
  --amber: #f0b04c;
  --pink: #ff4da6;
  --danger: #ff6b72;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: auto;
}

body {
  max-width: 100vw;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.55), #050810 88%),
    #050810;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(120deg, rgba(23, 229, 161, 0.13), transparent 42%),
    linear-gradient(240deg, rgba(66, 165, 255, 0.12), transparent 52%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 74px);
}

button,
select,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.market-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 229, 161, 0.7);
  border-radius: 8px;
  color: var(--green);
  background: rgba(23, 229, 161, 0.08);
  box-shadow: 0 0 24px rgba(23, 229, 161, 0.16);
  font-size: 0.85rem;
}

.brand-logo-frame {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 13px rgba(23, 229, 161, 0.26));
  animation: logoPulse 3.2s ease-in-out infinite;
}

.brand-logo-frame::after {
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(23, 229, 161, 0.24);
  border-radius: 15px;
  content: "";
  opacity: 0.72;
  box-shadow:
    0 0 16px rgba(23, 229, 161, 0.2),
    0 0 30px rgba(66, 165, 255, 0.12);
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(23, 229, 161, 0.2),
    0 0 30px rgba(66, 165, 255, 0.12);
  white-space: nowrap;
}

.language-control {
  position: relative;
}

.language-control select {
  width: 160px;
  height: 42px;
  padding: 0 2.25rem 0 0.8rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color-scheme: dark;
  outline: none;
}

.language-control select option {
  color: var(--text);
  background: #0c1422;
}

.language-control select:focus,
.btn:focus-visible,
.copy-btn:focus-visible,
.asset-tab:focus-visible,
.header-login:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(66, 165, 255, 0.4);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(66, 165, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 7.5rem 5vw 2.4rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.88));
}

.hero-inner,
.promo-section,
.app-section,
.site-footer {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  gap: 1.55rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(23, 229, 161, 0.32);
  border-radius: 8px;
  color: var(--green);
  background: rgba(23, 229, 161, 0.07);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 14px currentColor;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--text);
  font-size: 5.2rem;
  line-height: 0.92;
  font-weight: 900;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.65rem;
  line-height: 1.22;
  font-weight: 750;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1120px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-weight: 760;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 229, 161, 0.56);
  background: rgba(255, 255, 255, 0.09);
}

.btn-primary {
  color: #04110d;
  border-color: rgba(23, 229, 161, 0.9);
  background: linear-gradient(135deg, var(--green), #8effd5);
}

.btn-soft:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-soft:nth-child(3) {
  border-color: rgba(66, 165, 255, 0.36);
}

.btn-soft:nth-child(4) {
  border-color: rgba(240, 176, 76, 0.4);
}

.btn-ghost {
  border-color: rgba(255, 77, 166, 0.36);
}

.btn-icon {
  display: inline-grid;
  min-width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 8, 16, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
}

.btn-primary .btn-icon {
  border-color: rgba(4, 17, 13, 0.22);
}

.market-console {
  width: min(100%, 1060px);
  padding: 1rem;
  border: 1px solid rgba(176, 212, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 23, 39, 0.86), rgba(5, 8, 16, 0.86)),
    rgba(5, 8, 16, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.console-kicker {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

#activeAsset {
  font-size: 1.25rem;
}

.payout-badge {
  display: grid;
  min-width: 98px;
  gap: 0.08rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(23, 229, 161, 0.36);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(23, 229, 161, 0.07);
  text-align: center;
}

.payout-badge strong {
  color: var(--green);
  font-size: 1.35rem;
}

#chartCanvas {
  display: block;
  width: 100%;
  height: 240px;
  border: 1px solid rgba(176, 212, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.asset-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.asset-tab {
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(176, 212, 255, 0.15);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 750;
}

.asset-tab.active {
  color: var(--text);
  border-color: rgba(23, 229, 161, 0.56);
  background: rgba(23, 229, 161, 0.1);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  margin-bottom: 0.36rem;
  color: var(--green);
  font-size: 1.55rem;
}

.metric span {
  color: var(--muted);
  line-height: 1.45;
}

.promo-section,
.app-section {
  padding: 4.6rem 0 0;
}

.section-head {
  display: grid;
  max-width: 720px;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.section-head.compact {
  max-width: 600px;
}

h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
  line-height: 1.1;
}

.section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.promo-card,
.feature-card,
.risk-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.1rem;
}

.promo-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue), var(--amber));
}

.promo-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--pink), var(--amber), var(--green));
}

.promo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.promo-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.copy-btn {
  min-height: 40px;
  padding: 0 0.8rem;
  border: 1px solid rgba(23, 229, 161, 0.38);
  border-radius: 8px;
  color: var(--green);
  background: rgba(23, 229, 161, 0.08);
  font-weight: 800;
}

.promo-code {
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: start;
}

.promo-code:hover {
  color: var(--green);
}

.promo-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.promo-card.copied {
  border-color: rgba(23, 229, 161, 0.72);
  box-shadow: 0 0 0 1px rgba(23, 229, 161, 0.18), 0 18px 56px rgba(0, 0, 0, 0.28);
}

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

.feature-card {
  min-height: 210px;
  padding: 1.1rem;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(66, 165, 255, 0.36);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(66, 165, 255, 0.08);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--amber);
  border-color: rgba(240, 176, 76, 0.38);
  background: rgba(240, 176, 76, 0.08);
}

.feature-card:nth-child(3) .feature-icon {
  color: var(--pink);
  border-color: rgba(255, 77, 166, 0.38);
  background: rgba(255, 77, 166, 0.08);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 4.5rem 0 2.2rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 0.45rem 0 0;
  line-height: 1.6;
}

.risk-box {
  padding: 1rem;
  background: rgba(255, 107, 114, 0.065);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(23, 229, 161, 0.45);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 8, 16, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(23, 229, 161, 0.24));
    transform: translateZ(0);
  }

  50% {
    filter:
      drop-shadow(0 0 18px rgba(23, 229, 161, 0.48))
      drop-shadow(0 0 30px rgba(66, 165, 255, 0.2));
    transform: translateY(-1px);
  }
}

[dir="rtl"] .language-control select {
  padding-right: 0.8rem;
  padding-left: 2.25rem;
}

[dir="rtl"] .console-head,
[dir="rtl"] .promo-top,
[dir="rtl"] .site-header {
  direction: rtl;
}

.hero {
  min-height: 100svh;
  padding: 6rem 3vw 1.2rem;
}

.hero-inner,
.site-footer,
.app-section {
  width: min(1360px, 94vw);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(420px, 1.48fr) minmax(280px, 0.96fr);
  gap: 0.9rem;
  align-items: stretch;
}

.hero-shell > * {
  min-width: 0;
}

.access-panel,
.terminal-panel,
.bonus-panel {
  border: 1px solid rgba(176, 212, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 28, 45, 0.94), rgba(9, 15, 26, 0.94)),
    rgba(9, 15, 26, 0.94);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.access-panel {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem;
}

.access-panel h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.access-panel .hero-title {
  max-width: 100%;
  color: var(--text);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.access-panel .hero-copy {
  max-width: 100%;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.terminal-balance span,
.trade-input span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-panel .cta-grid {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: none;
  margin-top: 0.65rem;
}

.access-panel .btn {
  min-height: 50px;
  justify-content: flex-start;
  padding: 0.72rem 0.78rem;
  border-color: rgba(176, 212, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.access-panel .btn-primary {
  color: #03130d;
  background: linear-gradient(135deg, #17e5a1, #8bffd8);
}

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-icon {
  fill: currentColor;
  stroke: none;
}

.terminal-panel {
  display: grid;
  grid-template-rows: auto auto auto 316px auto;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem;
}

.terminal-topbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.terminal-balance,
.trade-input {
  display: grid;
  gap: 0.2rem;
  min-height: 56px;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(176, 212, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.terminal-balance strong,
.trade-input strong {
  color: var(--text);
  font-size: 1.02rem;
}

.real-balance strong {
  color: var(--green);
}

.terminal-panel .asset-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.terminal-panel .asset-tab {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.83rem;
}

.asset-tab span {
  color: var(--green);
  font-size: 0.76rem;
}

.terminal-panel .console-head {
  margin-bottom: 0;
}

.terminal-panel #chartCanvas {
  height: 316px;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(12, 21, 35, 0.78), rgba(5, 8, 16, 0.72)),
    rgba(0, 0, 0, 0.2);
}

.trade-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 0.9fr;
  gap: 0.65rem;
}

.trade-btn {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  color: #06120e;
  font-weight: 950;
  text-transform: uppercase;
}

.trade-up {
  background: linear-gradient(135deg, #17e5a1, #8bffd8);
}

.trade-down {
  color: var(--text);
  background: linear-gradient(135deg, #ff4d67, #ff8aa0);
}

.bonus-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
}

.bonus-head {
  display: grid;
  gap: 0.65rem;
}

.bonus-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.bonus-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-promos {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.hero-promos .promo-card {
  min-height: 0;
  padding: 0.85rem;
}

.hero-promos .promo-top {
  margin-bottom: 0.7rem;
}

.hero-promos .promo-code {
  margin-bottom: 0.62rem;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
}

.hero-promos .promo-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.metrics-row {
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .access-panel {
    order: 1;
  }

  .bonus-panel {
    order: 2;
  }

  .terminal-panel {
    order: 3;
    grid-template-rows: auto auto auto 300px auto;
  }

  .access-panel .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-panel .btn-primary {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: 4.2rem;
  }

  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-primary {
    grid-column: 1 / -1;
  }

  .metrics-row,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 0.6rem 1rem;
  }

  .brand-logo-frame {
    width: 40px;
    height: 40px;
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-control select {
    width: 132px;
    height: 38px;
    font-size: 0.9rem;
  }

  .header-login {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 5rem 1rem 1.4rem;
  }

  .hero-inner,
  .promo-section,
  .app-section,
  .site-footer {
    width: calc(100vw - 2rem);
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-title {
    font-size: 1.28rem;
  }

  .access-panel .hero-title,
  .access-panel .hero-copy {
    max-width: 30ch;
    word-break: break-word;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .cta-grid,
  .promo-grid,
  .metrics-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .access-panel .cta-grid,
  .terminal-topbar,
  .trade-panel {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    grid-column: auto;
  }

  .access-panel .btn-primary {
    grid-column: auto;
  }

  .btn {
    min-height: 52px;
    justify-content: flex-start;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .market-console {
    padding: 0.8rem;
  }

  .console-head {
    align-items: stretch;
  }

  #chartCanvas {
    height: 190px;
  }

  .terminal-panel #chartCanvas {
    height: 210px;
    min-height: 0;
  }

  .terminal-panel {
    grid-template-rows: auto auto auto 210px auto;
  }

  .asset-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terminal-panel .asset-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric {
    min-height: 86px;
  }

  .promo-section,
  .app-section {
    padding-top: 3rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .promo-card,
  .feature-card {
    min-height: auto;
  }

  .promo-top {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
  }

  .copy-btn {
    width: 100%;
  }

  .promo-code {
    font-size: 2.2rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 0.55rem;
  }

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

  .brand-logo-frame {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    max-width: 118px;
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
  }

  .language-control select {
    width: 122px;
  }

  .hero {
    min-height: 90svh;
  }

  h1 {
    font-size: 2.65rem;
  }

  .console-head {
    flex-direction: column;
  }

  .payout-badge {
    width: 100%;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    text-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
