/* ============================================
   Ribhcoin Landing — Exact match to screenshot
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --border: #1f1f1f;
  --border-light: #2a2a2a;
  --text: #f5f5f5;
  --text-muted: #8a8a8a;
  --text-dim: #5a5a5a;
  --gold: #D4A84B;
  --gold-g:linear-gradient(45deg,#ffb93d,#e79020,#fba627);
  --gold-bright: #E8C06A;
  --gold-dark: #B8923A;
  --green: #3dd68c;
  --red: #f07178;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --step1: #3b82f6;
      --step2: #10b981;
      --step3: #a855f7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

/* ---------- HEADER ---------- */

.logoclass{}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.t-u{    text-transform: uppercase;}
.navbar {
  padding: 0 0;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-text {
  color: var(--text);
}

.logo-icon {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem !important;
}

.nav-link:hover {
  color: var(--text) !important;
}

.btn-login {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.2rem;
}

.btn-login:hover {
  color: var(--text);
}

.btn-get-started {
  background: var(--gold-g);
  color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-get-started:hover {
  /* background: var(--gold-bright);
  color: #0a0a0a; */
}


.telegram {
    background: #229ED9;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    font-size: 35px;
    transition: 0.3s ease;
}
.navbar-toggler {
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- HERO ---------- */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border: 1px solid #444;
    padding: 5px 10px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(61, 214, 140, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  color: var(--text);
}

.text-gold {
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-g);
  color: #0a0a0a;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: 7px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary-gold:hover {
  background: var(--gold-bright);
  color: #0a0a0a;
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-radius: 7px;
  border: 1px solid var(--border-light);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  border-color: #444;
  color: var(--text);
}

.hero-stats {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Hero product card */
.hero-card-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-product-card {
  background: linear-gradient(160deg, #1a1610 0%, #12100c 50%, #0e0c09 100%);
  border: 1px solid #2a2418;
  border-radius: 14px;
  padding: 1.25rem 1.35rem 1.4rem;
  width: 100%;
  max-width: 380px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.06),
    0 25px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 80px -20px rgba(212, 168, 75, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.card-header-row,
.card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.card-symbol {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.card-network {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.card-supply {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card-consensus {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-visual {
  height: 200px;
  margin: 1.1rem 0 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Abstract gold architectural structure */
.arch-structure {
  width: 180px;
  height: 170px;
  position: relative;
  transform: rotateY(-12deg) rotateX(8deg);
  transform-style: preserve-3d;
}

.arch-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  background: linear-gradient(145deg, #E8C06A 0%, #C9A045 40%, #A07830 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

.layer-1 {
  width: 140px;
  height: 28px;
  top: 0;
  opacity: 0.95;
}

.layer-2 {
  width: 155px;
  height: 32px;
  top: 32px;
  background: linear-gradient(145deg, #D4A84B 0%, #B8923A 50%, #8F6E28 100%);
}

.layer-3 {
  width: 165px;
  height: 36px;
  top: 68px;
  background: linear-gradient(145deg, #C9A045 0%, #A07830 55%, #7A5C20 100%);
}

.layer-4 {
  width: 150px;
  height: 30px;
  top: 108px;
  background: linear-gradient(145deg, #B8923A 0%, #8F6E28 60%, #6B4E18 100%);
}

.layer-5 {
  width: 130px;
  height: 26px;
  top: 142px;
  background: linear-gradient(145deg, #A07830 0%, #7A5C20 70%, #5A4010 100%);
  opacity: 0.9;
}

/* ---------- TICKER ---------- */
.ticker-bar {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.7rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 1rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.t-sym {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.t-price {
  color: var(--text);
}

.t-up {
  color: var(--green);
  font-size: 0.75rem;
}

.t-down {
  color: var(--red);
  font-size: 0.75rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- PLATFORM ---------- */
.platform-section {
  padding: 3rem 0 4.5rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.label-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--text-dim);
}

.section-title {
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 640px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.4rem;
  height: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  border-color: #333;
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- VAULTS ---------- */
.vaults-section {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--border);
}

.vaults-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 400px;
  margin-top: 1rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  padding: 0.65rem 1.2rem;
  border-radius: 7px;
  border: 1px solid rgba(212, 168, 75, 0.45);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-gold:hover {
  background: rgba(212, 168, 75, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.vault-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1.3rem;
  height: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.vault-card:hover {
  border-color: #333;
  background: var(--bg-card-hover);
}

.vault-term {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.vault-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.vault-apr {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vault-apr span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 0.25rem;
  letter-spacing: 0.04em;
}

/* ---------- SECURITY ---------- */
.security-section {
  padding: 0 0 5.5rem;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.security-card:hover {
  border-color: #333;
  background: var(--bg-card-hover);
}

.security-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}

.security-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.security-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  background: #080808;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 480px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0 2.5rem;
  }

  .hero-card-wrapper {
    margin-top: 1rem;
  }

  .platform-section {
    padding: 4rem 0 3.5rem;
  }

  .vaults-section {
    padding: 3.5rem 0 4rem;
  }

  .security-section {
    padding: 0 0 4rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .hero-stats {
    gap: 1.5rem !important;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-disclaimer {
    order: 3;
  }
}

@media (max-width: 575.98px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-gold,
  .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }

  .card-visual {
    height: 160px;
  }

  .arch-structure {
    width: 150px;
    height: 140px;
    transform: scale(0.9) rotateY(-12deg) rotateX(8deg);
  }
}


.market-card{
    background:#1F2937;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

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

.market-header h4{
    margin:0;
    font-weight:700;
}

.stat-box{
    background:#111827;
    border-radius:14px;
    padding:20px;
    text-align:center;
    transition:.3s;
    border:1px solid #2c3747;
}

.stat-box:hover{
    transform:translateY(-5px);
}

.stat-box span{
    color:#9CA3AF;
    font-size:14px;
}

.stat-box h3{
    margin-top:10px;
    margin-bottom:5px;
    font-weight:700;
    font-size:28px;
}

.stat-box small{
    color:#9CA3AF;
}

.buy h3{
    color:#22c55e;
}

.sell h3{
    color:#ef4444;
}

.positive{
    color:#22c55e!important;
}

.negative{
    color:#ef4444!important;
}





 .stats-card {
      background: #1a1a1a;
      border-radius: 16px;
      padding: 20px 22px;
      width: 100%;
      color: #ffffff;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

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

    .stats-title {
      font-size: 18px;
      font-weight: 600;
    }

    .timeframes {
      display: flex;
      gap: 6px;
    }

    .timeframe {
      font-size: 13px;
      color: #888;
      padding: 4px 10px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.15s ease;
      user-select: none;
    }

    .timeframe:hover { color: #ccc; }

    .timeframe.active {
      background: #2a2a2a;
      color: #ffffff;
      font-weight: 500;
    }

    .metrics-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .metric {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .metric-label {
      font-size: 13px;
      color: #888;
    }

    .metric-value {
      font-size: 16px;
      font-weight: 600;
    }

    .metric-value.negative { color: #ff4d6a; }
    .metric-value.positive { color: #00c853; }

    .stat-row { margin-bottom: 16px; }
    .stat-row:last-child { margin-bottom: 0; }

    .stat-labels {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 14px;
      font-weight: 500;
    }

    .buy-side { color: #00c853; }
    .sell-side { color: #ff4d6a; }

    .progress-bar {
      height: 6px;
      background: #2a2a2a;
      border-radius: 3px;
      overflow: hidden;
      display: flex;
    }

    .progress-buy {
      height: 100%;
      background: #00c853;
      transition: width 0.3s ease;
    }

    .progress-sell {
      height: 100%;
      background: #ff4d6a;
      transition: width 0.3s ease;
    }

    .loading {
      opacity: 0.5;
      pointer-events: none;
    }




    
    /* ===== STEPS ===== */
    .step {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 24px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }

    .step::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
    }

    .step-1::before { background: var(--step1); }
    .step-2::before { background: var(--step2); }
    .step-3::before { background: var(--step3); }

    .step-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 28px;
    }

    .step-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 200px;
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      color: white;
    }

    .step-1 .step-num { background: var(--step1); }
    .step-2 .step-num { background: var(--step2); }
    .step-3 .step-num { background: var(--step3); }

    .step-title {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .step-desc {
      color: var(--muted);
      font-size: 0.95rem;
      margin-top: 4px;
    }

    .chain-flow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
      flex-wrap: wrap;
    }

    .chain-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      background: #1a2332;
      border: 2px solid var(--border);
    }

    .arrow {
      color: var(--muted);
      font-size: 1.2rem;
    }
.br-5{ border-radius:50%;}
    /* ===== PHONE MOCKUPS ===== */
    .phones {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      align-items: start;
    }

    .phone {
      background: #0d121c;
      border-radius: 28px;
      border: 3px solid #1e2a3a;
      padding: 12px 10px 18px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
      position: relative;
    }

    .phone-notch {
      width: 90px;
      height: 18px;
      background: #0a0e17;
      border-radius: 0 0 14px 14px;
      margin: 0 auto 10px;
    }

    .phone-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 10px;
      padding: 0 6px;
    }

    .wallet-name {
      font-weight: 600;
      color: var(--text);
      font-size: 0.8rem;
    }

    .balance {
      text-align: center;
      margin: 8px 0 14px;
    }

    .balance-label {
      font-size: 0.7rem;
      color: var(--muted);
    }

    .balance-amount {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .actions {
      display: flex;
      justify-content: space-around;
      margin-bottom: 16px;
      font-size: 0.65rem;
      color: var(--muted);
    }

    .action {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .action-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #1a2332;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .assets-title {
      font-size: 0.75rem;
      color: var(--muted);
      margin-bottom: 8px;
      padding-left: 4px;
    }

    .asset {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #151c28;
      border-radius: 12px;
      padding: 10px 12px;
      margin-bottom: 8px;
    }

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

    .token-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .token-name {
      font-size: 0.85rem;
      font-weight: 600;
    }

    .token-network {
      font-size: 0.65rem;
      color: var(--muted);
    }

    .token-amount {
      text-align: right;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .token-usd {
      font-size: 0.65rem;
      color: var(--muted);
    }

    /* Swap screen */
    .swap-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .swap-tabs {
      display: flex;
      gap: 12px;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .swap-tabs span.active {
      color: var(--accent);
      border-bottom: 2px solid var(--accent);
      padding-bottom: 2px;
    }

    .swap-box {
      background: #151c28;
      border-radius: 14px;
      padding: 12px;
      margin-bottom: 10px;
    }

    .swap-label {
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .swap-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .swap-token {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .swap-amount {
      font-size: 1.15rem;
      font-weight: 700;
    }

    .swap-usd {
      font-size: 0.7rem;
      color: var(--muted);
      text-align: right;
      margin-top: 2px;
    }

    .swap-arrow {
      text-align: center;
      color: var(--muted);
      margin: 6px 0;
      font-size: 1.1rem;
    }

    .swap-btn {
      display: block;
      width: 100%;
      background: linear-gradient(90deg, #00d4ff, #3b82f6);
      color: #0a0e17;
      border: none;
      border-radius: 12px;
      padding: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      margin-top: 14px;
      cursor: pointer;
    }

    .best-route {
      text-align: center;
      font-size: 0.65rem;
      color: var(--muted);
      margin-top: 8px;
    }

    /* Success screen */
    .success {
      text-align: center;
      padding: 20px 10px 10px;
    }

    .success-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(0, 230, 118, 0.15);
      border: 2px solid var(--green);
      color: var(--green);
      font-size: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }

    .success-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .success-flow {
      background: #151c28;
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 16px;
      font-size: 0.9rem;
    }

    .success-flow .from {
      color: var(--muted);
    }

    .success-flow .to {
      font-weight: 700;
      font-size: 1.1rem;
      margin-top: 4px;
    }

    .view-btn {
      display: block;
      width: 100%;
      background: #1a2332;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 11px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
    }

    /* ===== TIPS ===== */
    .tips {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 12px;
    }

    .tip {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .tip-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .tip:nth-child(1) .tip-icon { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
    .tip:nth-child(2) .tip-icon { background: rgba(16, 185, 129, 0.2); color: #34d399; }
    .tip:nth-child(3) .tip-icon { background: rgba(234, 179, 8, 0.2); color: #facc15; }
    .tip:nth-child(4) .tip-icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }

    .tip-text {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .tip-text strong {
      color: var(--text);
      display: block;
      margin-bottom: 2px;
    }

    .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 15px;
}
.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    transition: 0.3s ease;
}

.twitter{
    background:#000;
}

.instagram{
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}


.youtube{
    background:#FF0000;
}

.text-gold-g {
  background: -webkit-linear-gradient(#ffb93d,#e79020,#fba627);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}