:root {
  color-scheme: dark;
  --bg: #070908;
  --bg-2: #0c100e;
  --ink: #f4f1e8;
  --muted: #a8b0a8;
  --line: rgba(255, 255, 255, 0.06);
  --card: rgba(16, 20, 18, 0.78);
  --field: rgba(8, 10, 9, 0.78);
  --soft: rgba(232, 193, 90, 0.1);
  --gold: #e8c15a;
  --gold-2: #c9a227;
  --gold-ink: #f3d98a;
  --on-gold: #1a1406;
  --green: #3dce86;
  --danger: #f07167;
  --nav-hover: rgba(255, 255, 255, 0.06);
  --switch-bg: rgba(16, 20, 18, 0.9);
  --switch-ink: #f4f1e8;
  --switch-line: rgba(232, 193, 90, 0.4);
  --switch-on: #e8c15a;
  --switch-on-ink: #1a1406;
  --shadow: none;
  --glow: none;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Manrope", "Segoe UI", sans-serif;
  --header: 76px;
  --radius: 18px;
}
html[data-theme="light"] {
  color-scheme: light;
  --bg: #fff6df;
  --bg-2: #ffe9b0;
  --ink: #1c1408;
  --muted: #5c5346;
  --line: rgba(166, 104, 8, 0.24);
  --card: rgba(255, 255, 255, 0.86);
  --field: #fff8e8;
  --soft: rgba(240, 180, 0, 0.16);
  --gold-ink: #a15d00;
  --green: #0c9a52;
  --danger: #d14332;
  --nav-hover: rgba(255, 255, 255, 0.7);
  --switch-bg: #fff;
  --switch-ink: #14171a;
  --switch-line: #14171a;
  --switch-on: #14171a;
  --switch-on-ink: #fff;
  --shadow: 0 16px 40px rgba(120, 80, 10, 0.1);
  --glow: 0 10px 30px rgba(120, 80, 10, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(232, 193, 90, 0.12), transparent 55%),
    radial-gradient(800px 520px at 92% 8%, rgba(46, 140, 96, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; position: relative; z-index: 1; }
h1, h2, h3, .brand, .mini-banner strong, .route strong {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }
.wrap { width: min(1360px, calc(100% - 48px)); margin: 0 auto; }

.crypto-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.crypto-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: glowPulse 10s ease-in-out infinite;
}
.crypto-glow.a { width: 420px; height: 420px; left: -80px; top: 80px; background: rgba(232, 193, 90, 0.16); }
.crypto-glow.b { width: 380px; height: 380px; right: -60px; top: 18%; background: rgba(45, 150, 100, 0.16); animation-delay: -4s; }
.crypto-glow.c { width: 320px; height: 320px; left: 40%; bottom: -80px; background: rgba(232, 193, 90, 0.1); animation-delay: -7s; }
.coin {
  position: absolute;
  display: grid;
  place-items: center;
  opacity: 0.28;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  animation: coinFloat 18s ease-in-out infinite;
}
.coin img, .coin svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.coin-0 { top: 8%; left: 3%; width: 96px; animation-duration: 22s; }
.coin-1 { top: 20%; right: 5%; width: 78px; animation-duration: 19s; animation-delay: -3s; opacity: 0.24; }
.coin-2 { top: 56%; left: 6%; width: 70px; animation-duration: 24s; animation-delay: -6s; opacity: 0.26; }
.coin-3 { top: 66%; right: 8%; width: 82px; animation-duration: 21s; animation-delay: -8s; opacity: 0.22; }
.coin-4 { top: 36%; left: 16%; width: 44px; animation-duration: 16s; animation-delay: -2s; opacity: 0.2; }
.coin-5 { top: 6%; right: 22%; width: 40px; animation-duration: 20s; animation-delay: -5s; opacity: 0.22; }
.coin-6 { bottom: 12%; left: 26%; width: 58px; animation-duration: 23s; animation-delay: -9s; opacity: 0.22; }
.coin-7 { top: 44%; right: 22%; width: 50px; animation-duration: 17s; animation-delay: -11s; opacity: 0.2; }
.coin-8 { bottom: 20%; right: 3%; width: 64px; animation-duration: 26s; animation-delay: -4s; opacity: 0.2; }
.coin-9 { top: 76%; left: 46%; width: 38px; animation-duration: 18s; animation-delay: -7s; opacity: 0.18; }
html[data-theme="light"] .crypto-bg { opacity: 0.28; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  flex: none;
}
.brand-mark {
  height: 36px;
  width: auto;
  display: block;
  flex: none;
  object-fit: contain;
  background: transparent;
}
.brand-mark-lg { height: 84px; width: auto; }
.modal > .brand-mark { margin-bottom: 6px; }
.brand span { font-size: 1rem; line-height: 1.1; }
.brand em { font-style: normal; color: var(--gold-ink); }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 2px;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); background: var(--nav-hover); }
.theme-btn {
  width: 38px;
  height: 38px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 999px;
  border: 0;
  background: var(--field);
  color: var(--gold-ink);
  cursor: pointer;
}
.lang {
  position: relative;
  display: inline-flex;
  align-self: center;
  flex: none;
  margin-left: 10px;
}
.lang-btn {
  border: 0;
  background: var(--field);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 200px;
  padding: 8px;
  border-radius: 16px;
  background: #101610;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #f4f1e8;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
html[dir="rtl"] .lang-menu button { text-align: right; }
.lang-menu button[aria-current="true"] {
  background: #d7b15a;
  color: #1a1406;
}
.menu-btn {
  display: none;
  background: var(--field);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero { padding: 48px 0 16px; text-align: center; }
.hero-inner { animation: riseIn 0.7s ease both; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--soft);
  border: 0;
  color: var(--gold-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero h1 {
  margin: 16px auto 0;
  max-width: 22em;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.18;
}
.hero-kicker, .hero-accent { display: block; }
.hero-accent {
  font-weight: 700;
  font-style: normal;
  color: var(--gold-ink);
}
.lead {
  max-width: 46rem;
  margin: 14px auto 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.calc {
  width: 100%;
  margin: 0 auto;
  padding: 8px 0 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.chips, .filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  flex: none;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip:hover { transform: translateY(-1px); }
.chip.on { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.calc-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}
.calc-field span, label span { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.calc-row, input, select {
  border: 0;
  background: var(--field);
  border-radius: 16px;
}
.calc-row {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin-top: 6px;
  padding-right: 14px;
}
.calc-row input {
  border: 0;
  background: transparent;
  width: 100%;
  padding: 16px 12px;
  font-size: 1.45rem;
  font-weight: 700;
  outline: none;
}
.calc-row b { color: var(--gold-ink); }
.swap {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--field);
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform 0.25s ease, border-color 0.2s ease;
}
.swap:hover { transform: rotate(180deg); border-color: var(--gold); }
.calc-rate { margin: 14px 2px 12px; color: var(--muted); font-weight: 700; text-align: center; }
.calc-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.calc-actions .btn {
  width: 100%;
  min-height: 52px;
  white-space: nowrap;
}

.actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #f0cc6a 0%, var(--gold) 100%);
  color: var(--on-gold);
  border: 0;
  box-shadow: 0 8px 24px rgba(232, 193, 90, 0.22);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
.btn-tg {
  background: #229ed9;
  color: #fff;
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.28);
}
.btn-tg:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }

.banner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin: 28px auto 0;
}
.mini-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: auto;
  padding: 8px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.banner-ico {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--gold-ink);
}
.mini-banner strong { display: block; font-size: 1.25rem; line-height: 1.1; }
.mini-banner span { color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.pay-title { margin: 26px 0 12px; color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pays {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.pays span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.section { padding: 64px 0 8px; }
.section-head { text-align: center; margin: 0 0 22px; }
.section-head p { max-width: 34rem; margin: 0 auto; }
.section-head h2, .panel h2, .page h1, .legal h1 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.25;
}
.muted { color: var(--muted); }
.filters { justify-content: center; margin-bottom: 16px; flex-wrap: wrap; overflow: visible; }
.route-grid, .methods, .grid-3, .grid-atm, .grid-reviews, .steps {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.route-grid, .grid-3, .grid-atm, .grid-reviews { grid-template-columns: repeat(3, 1fr); }
.methods { grid-template-columns: 1fr 1fr; }
.route, .method, .card, .atm, .review, .step, .panel, .legal, .faq details {
  background: var(--card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}
.route, .method, .card, .step, .review {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, background 0.22s ease;
}
.route:hover, .method:hover, .card:hover, .step:hover, .review:hover {
  transform: translateY(-3px);
  background: rgba(22, 26, 24, 0.92);
}
.route {
  text-align: left;
  padding: 18px;
  cursor: pointer;
}
.route strong { display: block; margin: 10px 0 4px; font-size: 1.15rem; }
.route-top { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-weight: 700; }
.route em {
  font-style: normal;
  color: var(--gold-ink);
  background: var(--soft);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.75rem;
}
.method, .card, .review { padding: 18px 20px; text-align: left; }
.method { min-height: 176px; }
.method h3, .card h3, .review h3 { margin: 10px 0 6px; }
.method p, .card p, .review p { margin: 0; color: var(--muted); }
.method b, .card p:last-child, .route .muted, .step p { margin-top: auto; }
.method b { display: block; padding-top: 14px; color: var(--green); font-size: 0.86rem; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--gold-ink);
}
.card a { display: inline-block; padding-top: 14px; color: var(--gold-ink); font-weight: 700; text-decoration: none; }
.panel {
  padding: 28px 32px;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pills span { padding: 7px 11px; border-radius: 999px; background: var(--soft); color: var(--gold-ink); font-weight: 700; font-size: 0.86rem; }

.atm { display: flex; gap: 12px; align-items: center; padding: 14px; }
.flag {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--field);
  font-size: 1.4rem;
}
.atm h3 { margin: 0 0 2px; }
.status {
  margin-left: auto;
  flex: none;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cta {
  margin: 8px 0 18px;
  padding: 32px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  background: var(--card);
  color: #f4efe6;
  border: 0;
}
.cta h2 { margin: 0 0 8px; }
.cta .muted, .cta .checks { color: #f3ead4; }
.cta > div:first-child { display: flex; flex-direction: column; justify-content: center; }
.cta-actions { justify-content: flex-start; margin-top: 16px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: stretch; }
.checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  font-weight: 700;
}
.checks div::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
}
.table-wrap { overflow: auto; border-radius: 18px; border: 0; background: var(--card); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 14px 16px; text-align: left; }
th:nth-child(n+2), td:nth-child(n+2) { text-align: right; }
th { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
td { border-top: 1px solid var(--line); }
.pair span { color: var(--gold-ink); font-weight: 700; }
.steps { grid-template-columns: repeat(4, 1fr); }
.step { padding: 18px; }
.step b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 0.8rem;
}
.step h3 { margin: 12px 0 6px; }
.step p { margin: 0; color: var(--muted); }
.faq { display: grid; gap: 8px; max-width: 1100px; margin: 0 auto; }
.faq details { padding: 4px 16px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; }
.faq p { margin: 0 0 12px; color: var(--muted); }

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding: 40px 0 28px;
  background: rgba(12, 14, 12, 0.88);
  color: #c5ccc6;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 12px 0 0; max-width: 28rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.site-footer h4 { margin: 0 0 8px; color: #fff; }
.site-footer a { display: block; color: #c5ccc6; text-decoration: none; padding: 4px 0; }
.site-footer .brand { color: #fff; }
.site-footer .brand em { color: #ffd24a; }
.copy { margin-top: 16px; color: #8d968f; font-size: 0.86rem; }
.float-tg {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--on-gold);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(232, 193, 90, 0.28);
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 9, 8, 0.66);
}
#exchangeModal.overlay {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}
.modal {
  width: min(640px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 22px;
  border-radius: 20px;
  background: var(--card);
  border: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.ex-modal {
  width: min(760px, 100%);
  padding: 36px 40px 32px;
  border-radius: 28px;
  background: #0d1612;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}
.modal h2 { margin: 8px 0; }
.ex-modal h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
}
.modal ul { color: var(--muted); }
.modal-top { display: flex; justify-content: space-between; align-items: center; }
.icon-btn { width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--field); color: var(--ink); cursor: pointer; }
.ex-modal .icon-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 22px;
  line-height: 1;
}
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 4px; border-radius: 16px; background: var(--field); margin-bottom: 8px; }
.ex-modal .seg {
  gap: 0;
  padding: 0;
  margin: 28px 0 26px;
  background: transparent;
}
.seg button { border: 0; border-radius: 12px; background: transparent; padding: 10px; cursor: pointer; font-weight: 700; }
.ex-modal .seg button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
}
.seg button.active { background: var(--gold); color: var(--on-gold); }
.ex-modal .seg button.active {
  background: #2ee6a0;
  color: #fff;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.ex-modal .form-grid { gap: 16px 20px; }
label { display: block; margin: 8px 0; font-weight: 700; font-size: 0.84rem; }
.ex-modal label {
  margin: 0;
  font-weight: 500;
  font-size: 0.84rem;
  color: rgba(244, 241, 232, 0.78);
}
.ex-modal label em {
  font-style: normal;
  margin-left: 2px;
}
input, select { width: 100%; margin-top: 6px; padding: 12px; outline: none; }
.ex-modal input,
.ex-modal select {
  height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #0a1210;
  color: #fff;
}
.ex-modal select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238a938c' d='M1.2 1.4L6 6.2l4.8-4.8'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ex-modal input::placeholder { color: rgba(255, 255, 255, 0.28); }
input:focus, select:focus { border-color: var(--gold); }
.ex-modal input:focus,
.ex-modal select:focus { border-color: rgba(46, 230, 160, 0.55); }
.ex-modal #walletRow { display: block; margin-top: 16px; }
.ex-modal #walletRow[hidden] { display: none !important; }
.ex-modal .form-msg { margin: 14px 0 0; }
.ex-modal .btn-gold {
  margin-top: 22px;
  height: 50px;
  border-radius: 12px;
  background: #e8c44a;
  box-shadow: none;
}
.ex-modal .btn-gold:hover { transform: none; filter: brightness(1.04); }
html[data-theme="light"] .ex-modal {
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 16, 8, 0.16);
}
html[data-theme="light"] .ex-modal .icon-btn { color: rgba(20, 16, 8, 0.4); }
html[data-theme="light"] .ex-modal .seg button { color: rgba(20, 16, 8, 0.38); }
html[data-theme="light"] .ex-modal label { color: #3d372c; }
html[data-theme="light"] .ex-modal input,
html[data-theme="light"] .ex-modal select {
  background: #f6f1e6;
  border-color: rgba(20, 16, 8, 0.1);
  color: #1c1408;
}
html[data-theme="light"] .ex-modal input::placeholder { color: rgba(28, 20, 8, 0.35); }
.quote { margin: 10px 0; padding: 12px 14px; border-radius: 16px; background: var(--soft); border: 0; }
.quote div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; }
.form-msg { min-height: 1.2em; color: var(--green); }
.form-msg.error { color: var(--danger); }
.page { padding: 36px 0 10px; }
.legal { padding: 22px; }
.legal a { color: var(--gold-ink); }
.review-top { display: flex; gap: 10px; align-items: center; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: var(--gold);
  color: var(--on-gold);
}
.place { color: var(--muted); font-size: 0.86rem; }
.review-date { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 2px; margin: 8px 0; }
.grid-3 { margin-top: 12px; }

@keyframes coinFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(8deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px 14px 14px;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav.open .lang { align-self: flex-start; margin: 8px 0 2px 8px; }
  .route-grid, .methods, .grid-3, .grid-atm, .grid-reviews, .steps, .cta, .foot-grid, .form-grid, .calc-body, .banner-row, .pays, .checks {
    grid-template-columns: 1fr;
  }
  .pays { grid-template-columns: repeat(2, 1fr); }
  .swap { justify-self: center; margin-bottom: 0; }
  .float-tg span { display: none; }
  .float-tg { width: 56px; height: 56px; padding: 0; border-radius: 50%; justify-content: center; }
  .calc-actions .btn { width: 100%; white-space: nowrap; }
  .ex-modal { padding: 24px 18px 20px; border-radius: 22px; }
  .ex-modal .seg { margin: 20px 0 18px; }
  .coin-4, .coin-5, .coin-7, .coin-9 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
