* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --accent: #f7a600;
  --accent-strong: #ffb21a;
  --accent-soft: rgba(247, 166, 0, 0.16);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
}

.page {
  min-height: 100vh;
  padding: 28px 48px 60px;
}

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

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}

.logo img {
  display: block;
  width: 96px;
  height: auto;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #c7c7c7;
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7c7c7;
  font-size: 13px;
}

.lang-select {
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
}

.text-button {
  background: transparent;
  color: #c7c7c7;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.outline-button {
  background: var(--accent);
  color: #0b0b0b;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(247, 166, 0, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(360px, 520px);
  gap: 24px;
  align-items: center;
  justify-content: start;
}

.hero-copy h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-copy p {
  color: #b7b7b7;
  font-size: 16px;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button {
  background: var(--accent);
  color: #0b0b0b;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-button {
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 18px 50px rgba(247, 166, 0, 0.25);
}

.ghost-button {
  background: transparent;
  color: #fff;
  border: 1px solid #5a5a5a;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.payment-card {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
}


.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.card-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9a9a9a;
}

.badge {
  background: #1a150a;
  color: var(--accent-strong);
  border: 1px solid #3a2b0a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.payment-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.payment-card p {
  color: #b7b7b7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.payment-card .wide {
  width: 100%;
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: #b7b7b7;
  font-size: 13px;
}

.mini-steps div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(247, 166, 0, 0.4);
}

.card-footer {
  margin-top: 16px;
  border-top: 1px solid #1f1f1f;
  padding-top: 12px;
}

.muted {
  color: #6f6f6f;
  font-size: 12px;
}

.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .header,
.rtl .hero,
.rtl .hero-visual,
.rtl .cta,
.rtl .footer {
  direction: rtl;
}

.rtl .nav {
  flex-direction: row-reverse;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
  padding: 18px 22px;
  background: #0e0e0e;
  border-radius: 24px;
  border: 1px solid #1f1f1f;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #b7b7b7;
}

.ticker-item strong {
  color: #fff;
  font-size: 16px;
}

.positive {
  color: #7cffb2;
  font-style: normal;
}

.negative {
  color: #ff6b6b;
  font-style: normal;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 50px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid #1f1f1f;
  background: #0c0c0c;
}

.stats strong {
  font-size: 24px;
}

.stats span {
  color: #9a9a9a;
  font-size: 13px;
}

.features,
.steps,
.faq {
  margin-top: 80px;
}

.section-title h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-title p {
  color: #a8a8a8;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.feature-card,
.step-card,
.faq-item {
  background: #111;
  border: 1px solid #202020;
  border-radius: 20px;
  padding: 20px;
}

.feature-card h4,
.step-card h4,
.faq-item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p,
.step-card p,
.faq-item p {
  color: #a0a0a0;
  line-height: 1.6;
  font-size: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
}

.legal {
  margin-top: 80px;
}

.legal-card {
  background: linear-gradient(140deg, #111 0%, #0b0b0b 100%);
  border: 1px solid #232323;
  border-radius: 28px;
  padding: 28px;
}

.legal-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.legal-card p {
  color: #a8a8a8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  color: #bcbcbc;
  font-size: 14px;
}

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

.cta {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
}

.cta h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.cta p {
  color: #a8a8a8;
}

.footer {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #1b1b1b;
  padding-top: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #8f8f8f;
  text-decoration: none;
  font-size: 13px;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 2px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  background: #101010;
  border: 1px solid #262626;
  border-radius: 24px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.popup-step {
  display: none;
}

.popup-step.active {
  display: block;
}

.popup h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.popup p {
  color: #b7b7b7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.popup-details {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.popup-details div {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: #151515;
  border: 1px solid #242424;
}

.popup-details span {
  color: #9a9a9a;
}

.popup-note {
  display: block;
  margin-top: 12px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #8f8f8f;
  font-size: 16px;
  cursor: pointer;
}

.popup-input {
  width: 100%;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  margin-bottom: 16px;
}

.loader {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid #2a2a2a;
  border-top-color: var(--accent);
  margin: 6px auto 16px;
  animation: spin 1s linear infinite;
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1d2a22;
  border: 1px solid #2d5a3c;
  color: #7cffb2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.hidden {
  display: none;
}

.dashboard {
  display: none;
  margin-top: 80px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #1f1f1f;
  background: #0c0c0c;
}

.dashboard.active {
  display: block;
}

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

.dashboard-header h2 {
  font-size: 28px;
  margin: 10px 0 6px;
}

.dashboard-chip {
  background: #151515;
  border: 1px solid #242424;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #b7b7b7;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-card {
  background: #111;
  border: 1px solid #202020;
  border-radius: 20px;
  padding: 20px;
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.dashboard-balance {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dashboard-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #a8a8a8;
  font-size: 14px;
}

.dashboard-transaction {
  display: grid;
  gap: 8px;
  color: #a8a8a8;
  font-size: 14px;
}

.dashboard-actions {
  display: grid;
  gap: 16px;
}

.withdraw-form {
  display: none;
  background: #111;
  border: 1px solid #202020;
  border-radius: 20px;
  padding: 20px;
  gap: 16px;
}

.withdraw-form.active {
  display: grid;
}

.withdraw-field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #a8a8a8;
}

.withdraw-field input {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
}

.withdraw-field textarea {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  resize: vertical;
}

.admin-section {
  margin-top: 80px;
}

.admin-card {
  background: #111;
  border: 1px solid #202020;
  border-radius: 24px;
  padding: 28px;
}

.admin-title h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
  z-index: 10;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #101010;
  border: 1px solid #262626;
  border-radius: 24px;
  padding: 28px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.modal p {
  font-size: 14px;
  line-height: 1.6;
  color: #b7b7b7;
}

.modal .primary-button {
  margin-top: 14px;
}

.modal-fields {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-fields input {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #8f8f8f;
  font-size: 16px;
  cursor: pointer;
}

.rd1-body {
  background: linear-gradient(150deg, #5aa3ff 0%, #4f6bff 40%, #6b5cff 100%);
  color: #fff;
  min-height: 100vh;
}

.rd1-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 20px 80px;
  text-align: center;
}

.rd1-hero {
  max-width: 420px;
  width: 100%;
}

.rd1-hero h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.rd1-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.rd1-outline-button {
  background: transparent;
  color: #e9f1ff;
  border: 2px solid rgba(233, 241, 255, 0.8);
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.rd1-widget {
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.rd1-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #121212;
  text-align: left;
  box-shadow: 0 18px 40px rgba(12, 28, 72, 0.2);
}

.rd1-card + .rd1-card {
  margin-top: 16px;
}

.rd1-label {
  font-size: 12px;
  color: #6f7b93;
  margin-bottom: 6px;
}

.rd1-amount {
  font-size: 22px;
  font-weight: 700;
}

.rd1-amount-input {
  font-size: 22px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #121212;
  width: 100%;
  padding: 0;
}

.rd1-amount-input:focus {
  outline: none;
}

.rd1-currency-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f5f9;
  border-radius: 999px;
  padding: 6px 12px;
}

.rd1-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.rd1-select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #2a3142;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.rd1-action {
  margin-top: 18px;
  background: linear-gradient(90deg, #7cf7d4 0%, #a9ff90 100%);
  border: none;
  color: #0b2a20;
  font-weight: 700;
  padding: 14px 18px;
  width: 100%;
  border-radius: 999px;
  cursor: pointer;
}

.rd1-powered {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rd1-powered-brand img {
  height: 20px;
  object-fit: contain;
  opacity: 0.9;
}

.rd1-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.rd1-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.rd1-logo--alchemy {
  font-weight: 600;
  font-size: 13px;
}

.rd1-logo--visa {
  font-size: 13px;
}

.rd1-logo--mastercard svg {
  width: 34px;
  height: 18px;
  display: block;
}

.rd1-logo--mastercard span {
  font-size: 11px;
  text-transform: lowercase;
}

.rd1-logo--apple {
  font-weight: 600;
}

.rd1-logo--gpay {
  font-weight: 600;
}

.rd1-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 28, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.rd1-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.rd1-modal-card {
  width: min(520px, 100%);
  background: linear-gradient(160deg, #5f7dff 0%, #5a4cff 50%, #7a35ff 100%);
  border-radius: 26px;
  padding: 28px;
  color: #eef3ff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 28px 70px rgba(16, 24, 60, 0.35);
  position: relative;
}

.rd1-modal-text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.rd1-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
}

.rd2-body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.rd2-page {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 18px 90px;
}

.rd2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rd2-title {
  font-size: 12px;
  color: #9a9a9a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rd2-balance {
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0;
}

.rd2-subline {
  font-size: 12px;
  color: #8c8c8c;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rd2-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.rd2-action {
  display: grid;
  gap: 6px;
  font-size: 11px;
  color: #cfcfcf;
}

.rd2-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b6f03b;
  display: grid;
  place-items: center;
  color: #0b0b0b;
  margin: 0 auto;
  font-weight: 700;
}

.rd2-banner {
  margin: 18px 0 12px;
  background: #1d1d1d;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12px;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rd2-banner strong {
  color: #b6f03b;
}

.rd2-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8f8f8f;
  padding: 8px 0;
  border-bottom: 1px solid #1b1b1b;
}

.rd2-section-title {
  margin: 16px 0 10px;
  font-size: 14px;
  font-weight: 600;
}

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

.rd2-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: #a5a5a5;
}

.rd2-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
}

.rd2-assets {
  margin-top: 12px;
}

.rd2-asset-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1b1b1b;
}

.rd2-asset-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rd2-asset-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.rd2-asset-meta {
  font-size: 12px;
  color: #9a9a9a;
}

.rd2-pill {
  background: #15331d;
  color: #5fe88d;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  margin-left: 6px;
}

.rd2-asset-value {
  font-weight: 600;
  font-size: 13px;
}

.rd2-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0c0c0c;
  border-top: 1px solid #141414;
  padding: 10px 16px;
  display: flex;
  justify-content: space-around;
  font-size: 10px;
  color: #8f8f8f;
}

.rd2-bottom-item {
  display: grid;
  gap: 6px;
  justify-items: center;
  font-size: 10px;
}

.rd2-footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.rd2-header-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}


.rd2-bottom-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #141414;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #a5a5a5;
}

.rd2-bottom-center .rd2-bottom-icon {
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  color: #0b0b0b;
  font-size: 18px;
}

.rd2-bottom .active {
  color: #b6f03b;
}

.rd2-bottom .active .rd2-bottom-icon {
  background: #b6f03b;
  color: #0b0b0b;
}

.rd2-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.rd2-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rd2-screen {
  background: #000;
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  padding: 16px;
}

.rd2-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #e8e8e8;
}

.rd2-screen-back,
.rd2-screen-more {
  background: transparent;
  border: none;
  color: #e8e8e8;
  font-size: 20px;
}

.rd2-screen-title {
  font-weight: 600;
}

.rd2-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  border-radius: 999px;
  padding: 10px 14px;
  color: #8c8c8c;
  margin-bottom: 14px;
}

.rd2-search input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  outline: none;
}

.rd2-asset-list {
  display: grid;
  gap: 10px;
}

.rd2-asset-item {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.rd2-asset-right {
  text-align: right;
  font-size: 12px;
  color: #d9d9d9;
}

.rd2-sheet {
  width: 100%;
  max-width: 420px;
  background: #0f0f0f;
  border-radius: 18px 18px 0 0;
  padding: 12px 16px 24px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.rd2-sheet-handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: #2a2a2a;
  margin: 6px auto 12px;
}

.rd2-sheet-item {
  width: 100%;
  background: transparent;
  border: none;
  color: #e2e2e2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #1b1b1b;
  text-align: left;
}

.rd2-sheet-item:last-child {
  border-bottom: none;
}

.rd2-confirm-card {
  width: min(360px, 92%);
  background: #1b1b1b;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  color: #eaeaea;
  margin-bottom: 80px;
  border: 1px solid #2b2b2b;
}

.rd2-confirm-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.rd2-confirm-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 16px;
}

.rd2-confirm-button {
  width: 100%;
  background: #b6f03b;
  border: none;
  color: #0b0b0b;
  font-weight: 700;
  padding: 12px;
  border-radius: 999px;
}

@media (max-width: 480px) {
  .rd2-page {
    padding: 20px 14px 90px;
  }

  .rd2-balance {
    font-size: 24px;
  }

  .rd2-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .rd2-action-icon {
    width: 40px;
    height: 40px;
  }

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

  .rd2-card {
    padding: 10px;
  }
}

@media (max-width: 360px) {
  .rd2-page {
    padding: 18px 10px 90px;
  }

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

  .rd2-cards {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 980px) {
  .page {
    padding: 24px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .ticker,
  .stats,
  .feature-grid,
  .steps-grid,
  .faq-grid,
  .legal-list,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .cta,
  .footer,
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .logo {
    padding: 4px 8px;
  }

  .logo img {
    width: 84px;
  }

  .nav {
    width: 100%;
    gap: 12px;
    font-size: 13px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .payment-card {
    padding: 22px;
  }

  .payment-card h2 {
    font-size: 20px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

  .ticker,
  .stats,
  .cta,
  .legal-card {
    padding: 18px;
  }

  .feature-card,
  .step-card,
  .faq-item {
    padding: 16px;
  }

  .popup {
    padding: 22px;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .rd1-page {
    padding: 40px 16px 64px;
  }

  .rd1-hero h1 {
    font-size: 28px;
  }

  .rd1-widget {
    padding: 16px;
  }

  .rd1-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rd1-currency-pill {
    width: 100%;
    justify-content: space-between;
  }

  .rd1-action {
    font-size: 14px;
  }
}
