/* ============================================================
   XCHANGE4ME Design System v3 | Dark + Light | Sora + DM Mono
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ── DARK THEME VARIABLES (default) ──────────────────── */
:root {
  --orange:#F97316; --orange-dark:#EA6C0A; --orange-light:#FB923C;
  --orange-glow:rgba(249,115,22,0.15); --orange-border:rgba(249,115,22,0.25);
  --bg:#0A0C10; --surface:#111318; --surface2:#181C24; --surface3:#1E2433;
  --border:rgba(255,255,255,0.07); --border-strong:rgba(255,255,255,0.13);
  --text:#F0F2F5; --text-secondary:#7A8394; --text-muted:#3D4455; --text-disabled:#2A3040;
  --green:#10B981; --green-bg:rgba(16,185,129,0.10);
  --red:#EF4444;   --red-bg:rgba(239,68,68,0.10);
  --amber:#F59E0B; --amber-bg:rgba(245,158,11,0.10);
  --blue:#3B82F6;  --blue-bg:rgba(59,130,246,0.10);
  --shadow-sm:0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:0 8px 32px rgba(0,0,0,0.5);
  --shadow-orange:0 4px 20px rgba(249,115,22,0.30);
  --shadow-orange-lg:0 8px 40px rgba(249,115,22,0.40);
  --r-xs:4px; --r-sm:8px; --r:12px; --r-md:16px; --r-lg:20px; --r-xl:28px; --r-full:9999px;
  --t:all 0.2s ease; --t-sm:all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── LIGHT THEME ─────────────────────────────────────── */
[data-theme="light"] {
  --bg:#F8FAFC; --surface:#FFFFFF; --surface2:#F1F5F9; --surface3:#E2E8F0;
  --border:rgba(0,0,0,0.08); --border-strong:rgba(0,0,0,0.15);
  --text:#0F172A; --text-secondary:#475569; --text-muted:#94A3B8; --text-disabled:#CBD5E1;
  --shadow-sm:0 1px 3px rgba(0,0,0,0.08); --shadow-md:0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:0 8px 32px rgba(0,0,0,0.12);
  --shadow-orange:0 4px 20px rgba(249,115,22,0.20); --shadow-orange-lg:0 8px 40px rgba(249,115,22,0.25);
  --green-bg:rgba(16,185,129,0.08); --red-bg:rgba(239,68,68,0.08);
  --amber-bg:rgba(245,158,11,0.08); --blue-bg:rgba(59,130,246,0.08);
}

/* ── RESET + BASE ────────────────────────────────────── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Sora',sans-serif;background:var(--bg);color:var(--text);min-height:100vh;overflow-x:hidden;transition:background 0.3s,color 0.3s}
body::before{content:'';position:fixed;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");pointer-events:none;z-index:0;opacity:0.4}
[data-theme="light"] body::before{opacity:0.1}
a{color:var(--orange);text-decoration:none;transition:var(--t)}
a:hover{color:var(--orange-dark)}
img{max-width:100%}
ul{list-style:none;padding:0;margin:0}

/* ── UTILITY ─────────────────────────────────────────── */
.text--base{color:var(--orange)!important}.bg--base{background:var(--orange)!important}
.bg--accent{background:var(--surface)!important}.section-bg{background:var(--surface2)!important}.bg--light{background:var(--surface)!important}
.pt-60{padding-top:60px}.pb-60{padding-bottom:60px}.pt-80{padding-top:80px}.pb-80{padding-bottom:80px}
.fs--13px{font-size:13px}.fs--18px{font-size:18px}.fw-medium{font-weight:500}
.mono{font-family:'DM Mono',monospace;font-size:12px}.d-none{display:none!important}
.fw-600{font-weight:600}

/* ── GLOW ORBS ───────────────────────────────────────── */
.glow-orb{position:fixed;width:500px;height:500px;background:radial-gradient(ellipse at center,var(--orange-glow) 0%,transparent 70%);top:-100px;right:-100px;pointer-events:none;z-index:0}
.glow-orb2{position:fixed;width:400px;height:400px;background:radial-gradient(ellipse at center,var(--blue-bg) 0%,transparent 70%);bottom:0;left:-100px;pointer-events:none;z-index:0}

/* ── PRELOADER ───────────────────────────────────────── */
.preloader{position:fixed;inset:0;background:var(--bg);z-index:99999;display:flex;align-items:center;justify-content:center}
.preloader__img img{width:56px;height:56px;object-fit:contain;animation:xpulse 1.4s ease-in-out infinite}
@keyframes xpulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.85)}}

/* ── SCROLL TO TOP ───────────────────────────────────── */
.scrollToTop{position:fixed;bottom:28px;right:28px;width:42px;height:42px;background:var(--orange);color:#000;border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;font-size:16px;opacity:0;visibility:hidden;z-index:999;transition:var(--t);box-shadow:var(--shadow-orange)}
.scrollToTop.active{opacity:1;visibility:visible}
.scrollToTop:hover{transform:translateY(-3px);color:#000;box-shadow:var(--shadow-orange-lg)}

/* ── THEME TOGGLE ────────────────────────────────────── */
.theme-toggle{width:36px;height:36px;background:var(--surface2);border:1px solid var(--border-strong);border-radius:var(--r-sm);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:16px;transition:var(--t);flex-shrink:0;color:var(--text-secondary)}
.theme-toggle:hover{background:var(--surface3);color:var(--text)}
.theme-toggle .icon-sun{display:none}.theme-toggle .icon-moon{display:block}
[data-theme="light"] .theme-toggle .icon-sun{display:block}[data-theme="light"] .theme-toggle .icon-moon{display:none}

/* ── PROMO BAR ───────────────────────────────────────── */
.x-promo-bar{background:linear-gradient(90deg,#1a1200,#2d1e00,#1a1200);border-bottom:1px solid var(--orange-border);padding:9px 48px 9px 24px;display:flex;align-items:center;justify-content:center;gap:10px;font-size:13px;color:var(--amber);position:relative;z-index:200;letter-spacing:0.02em;font-family:'Sora',sans-serif}
[data-theme="light"] .x-promo-bar{background:linear-gradient(90deg,#fff7ed,#ffedd5,#fff7ed)}
.x-promo-bar__tag{background:var(--orange);color:#000;font-weight:700;font-size:11px;padding:2px 8px;border-radius:var(--r-xs);letter-spacing:0.08em;flex-shrink:0}
.x-promo-bar__close{position:absolute;right:18px;top:50%;transform:translateY(-50%);background:none;border:none;color:var(--text-secondary);font-size:20px;line-height:1;cursor:pointer;padding:0 4px}

/* ════════════════════════════════════════════════════════
   NAVBAR (scoped with !important to beat Bootstrap)
   ════════════════════════════════════════════════════════ */
#xnav-root{position:sticky!important;top:0!important;z-index:1000!important;background:rgba(10,12,16,0.95)!important;backdrop-filter:blur(20px)!important;-webkit-backdrop-filter:blur(20px)!important;border-bottom:1px solid var(--border)!important;width:100%!important;transition:background 0.3s!important}
[data-theme="light"] #xnav-root{background:rgba(248,250,252,0.95)!important}
#xnav-inner{max-width:1280px!important;margin:0 auto!important;padding:0 40px!important;height:68px!important;display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;box-sizing:border-box!important}
#xnav-logo{display:inline-flex!important;flex-direction:row!important;align-items:center!important;gap:10px!important;text-decoration:none!important;flex-shrink:0!important}
#xnav-logo-mark{width:36px!important;height:36px!important;min-width:36px!important;background:var(--orange)!important;border-radius:10px!important;display:flex!important;align-items:center!important;justify-content:center!important;font-weight:700!important;font-size:18px!important;color:#000!important;line-height:1!important;font-family:'Sora',sans-serif!important}
#xnav-logo-text{font-size:18px!important;font-weight:600!important;color:var(--text)!important;letter-spacing:-0.01em!important;white-space:nowrap!important;font-family:'Sora',sans-serif!important}
#xnav-logo-text span{color:var(--orange)!important}
#xnav-links{display:flex!important;flex-direction:row!important;align-items:center!important;gap:2px!important;list-style:none!important;margin:0!important;padding:0!important;flex:1!important;justify-content:center!important}
#xnav-links li{display:inline-flex!important;align-items:center!important;list-style:none!important;margin:0!important;padding:0!important}
#xnav-links li a{display:inline-flex!important;align-items:center!important;color:var(--text-secondary)!important;text-decoration:none!important;font-size:14px!important;font-weight:500!important;padding:8px 14px!important;border-radius:var(--r-sm)!important;transition:var(--t)!important;white-space:nowrap!important;font-family:'Sora',sans-serif!important}
#xnav-links li a:hover,#xnav-links li a.active{color:var(--text)!important;background:var(--surface2)!important}
#xnav-actions{display:flex!important;flex-direction:row!important;align-items:center!important;gap:10px!important;flex-shrink:0!important}
/* Language dropdown in nav */
#xnav-root .custom--dropdown{display:inline-flex!important;align-items:center!important;position:relative!important;vertical-align:middle!important}
#xnav-root .custom--dropdown__selected{display:inline-flex!important;flex-direction:row!important;align-items:center!important;gap:7px!important;background:transparent!important;border:1px solid var(--border-strong)!important;color:var(--text-secondary)!important;padding:7px 12px!important;border-radius:10px!important;font-size:13px!important;cursor:pointer!important;font-family:'Sora',sans-serif!important;white-space:nowrap!important;height:36px!important;box-sizing:border-box!important;transition:var(--t)!important}
#xnav-root .custom--dropdown__selected:hover{background:var(--surface2)!important}
#xnav-root .custom--dropdown__selected .thumb{display:inline-flex!important;align-items:center!important;width:18px!important;height:18px!important;flex-shrink:0!important}
#xnav-root .custom--dropdown__selected .thumb img{width:18px!important;height:14px!important;object-fit:cover!important;border-radius:2px!important;display:block!important}
#xnav-root .custom--dropdown__selected .text{font-size:13px!important;color:var(--text-secondary)!important}
#xnav-root .custom--dropdown .dropdown-list{position:absolute!important;top:calc(100% + 6px)!important;right:0!important;background:var(--surface)!important;border:1px solid var(--border-strong)!important;border-radius:10px!important;min-width:150px!important;box-shadow:var(--shadow-lg)!important;z-index:9999!important;list-style:none!important;padding:6px!important;margin:0!important;display:none!important}
#xnav-root .custom--dropdown.open .dropdown-list{display:block!important}
#xnav-root .custom--dropdown .dropdown-list .dropdown-list__item{display:flex!important;flex-direction:row!important;align-items:center!important;gap:8px!important;padding:9px 10px!important;border-radius:7px!important;cursor:pointer!important;color:var(--text-secondary)!important;font-size:13px!important;list-style:none!important;font-family:'Sora',sans-serif!important;transition:var(--t)!important}
#xnav-root .custom--dropdown .dropdown-list .dropdown-list__item:hover{background:var(--orange-glow)!important;color:var(--orange)!important}
#xnav-root .custom--dropdown .dropdown-list .dropdown-list__item .thumb img{width:18px!important;height:14px!important;object-fit:cover!important;border-radius:2px!important;display:block!important}
/* xBtn */
.xbtn{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:6px!important;padding:8px 18px!important;border-radius:10px!important;font-size:14px!important;font-weight:600!important;font-family:'Sora',sans-serif!important;cursor:pointer!important;text-decoration:none!important;white-space:nowrap!important;transition:var(--t)!important;line-height:1!important;height:36px!important;box-sizing:border-box!important}
.xbtn--ghost{background:transparent!important;border:1px solid var(--border-strong)!important;color:var(--text)!important}
.xbtn--ghost:hover{background:var(--surface2)!important;color:var(--text)!important}
.xbtn--primary{background:var(--orange)!important;color:#000!important;border:none!important}
.xbtn--primary:hover{transform:translateY(-1px)!important;box-shadow:var(--shadow-orange)!important;color:#000!important}
.xbtn.w-100{width:100%!important}.xbtn.mb-2{margin-bottom:8px!important}
/* Hamburger */
#xnav-toggle{display:none!important;flex-direction:column!important;justify-content:center!important;gap:5px!important;width:38px!important;height:38px!important;background:var(--surface2)!important;border:1px solid var(--border-strong)!important;border-radius:8px!important;cursor:pointer!important;padding:8px!important;flex-shrink:0!important;box-sizing:border-box!important}
#xnav-toggle span{display:block!important;height:2px!important;background:var(--text-secondary)!important;border-radius:2px!important;width:100%!important}
/* Drawer */
#xnav-drawer{display:none;position:fixed!important;top:0!important;left:0!important;width:300px!important;max-width:85vw!important;height:100vh!important;height:100dvh!important;background:var(--surface)!important;border-right:1px solid var(--border)!important;z-index:9998!important;padding:20px!important;flex-direction:column!important;overflow-y:auto!important;box-sizing:border-box!important}
#xnav-drawer.open{display:flex!important}
#xnav-drawer-overlay{display:none;position:fixed!important;inset:0!important;background:rgba(0,0,0,0.65)!important;z-index:9997!important}
#xnav-drawer-overlay.active{display:block!important}
#xnav-drawer-head{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;margin-bottom:28px!important}
#xnav-drawer-close{background:var(--surface2)!important;border:1px solid var(--border)!important;color:var(--text-secondary)!important;width:32px!important;height:32px!important;border-radius:8px!important;cursor:pointer!important;font-size:14px!important;display:flex!important;align-items:center!important;justify-content:center!important}
#xnav-drawer-nav{list-style:none!important;padding:0!important;margin:0!important;flex:1!important}
#xnav-drawer-nav li a{display:block!important;padding:13px 0!important;border-bottom:1px solid var(--border)!important;color:var(--text-secondary)!important;font-size:15px!important;font-weight:500!important;text-decoration:none!important;font-family:'Sora',sans-serif!important}
#xnav-drawer-nav li a:hover{color:var(--orange)!important}
#xnav-drawer-actions{padding-top:20px!important;display:flex!important;flex-direction:column!important;gap:10px!important}
#xnav-drawer-actions .xbtn{width:100%!important;height:auto!important;padding:12px 18px!important}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn{font-family:'Sora',sans-serif;font-weight:600;font-size:14px;border-radius:var(--r-sm);padding:10px 22px;display:inline-flex;align-items:center;justify-content:center;gap:8px;transition:var(--t);white-space:nowrap;line-height:1.4;text-decoration:none;cursor:pointer;border:none}
.btn--base{background:var(--orange);color:#000;box-shadow:var(--shadow-orange)}
.btn--base:hover{transform:translateY(-2px);box-shadow:var(--shadow-orange-lg);color:#000}
.btn--outline-base{background:transparent;border:1.5px solid var(--orange);color:var(--orange)}
.btn--outline-base:hover{background:var(--orange-glow);color:var(--orange)}
.btn-ghost{background:none;border:1px solid var(--border-strong);color:var(--text)}
.btn-ghost:hover{background:var(--surface2);color:var(--text)}
.btn-sm{padding:7px 16px;font-size:13px}.btn.w-100{width:100%}
.btn-exchange{width:100%;background:var(--orange);color:#000;border:none;border-radius:var(--r-sm);padding:16px;font-family:'Sora',sans-serif;font-size:15px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:var(--t);letter-spacing:0.01em;position:relative;overflow:hidden;box-shadow:var(--shadow-orange)}
.btn-exchange::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,0.1),transparent)}
.btn-exchange:hover{transform:translateY(-1px);box-shadow:var(--shadow-orange-lg)}

/* ── FORMS ───────────────────────────────────────────── */
.form--control,.form-control,.form-select{background:var(--surface2)!important;border:1px solid var(--border)!important;border-radius:var(--r-sm)!important;color:var(--text)!important;padding:11px 14px!important;font-family:'Sora',sans-serif!important;font-size:14px!important;transition:var(--t)!important;width:100%}
.form--control:focus,.form-control:focus,.form-select:focus{border-color:var(--orange)!important;box-shadow:0 0 0 3px var(--orange-glow)!important;outline:none!important}
.form--control::placeholder,.form-control::placeholder{color:var(--text-muted)!important}
.form-label{color:var(--text-secondary);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:8px;display:block}
.form-label.required::after{content:' *';color:var(--red)}
.input-group{display:flex;position:relative}
.input-group .form-control:not(:last-child){border-top-right-radius:0!important;border-bottom-right-radius:0!important}
.input-group-text{background:var(--orange)!important;border:none!important;color:#000!important;font-weight:700!important;font-size:12px!important;padding:0 14px!important;border-radius:0 var(--r-sm) var(--r-sm) 0!important;min-width:52px;justify-content:center;font-family:'DM Mono',monospace!important}

/* ── HERO ────────────────────────────────────────────── */
.hero,.hero-section{position:relative;z-index:1;padding:80px 40px 60px;max-width:1200px;margin:0 auto;animation:fadeSlideIn 0.5s ease forwards}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--orange-glow);border:1px solid var(--orange-border);color:var(--amber);font-size:12px;font-weight:600;padding:6px 14px;border-radius:var(--r-full);margin-bottom:24px;letter-spacing:0.04em;text-transform:uppercase}
.hero-badge .dot{width:6px;height:6px;background:var(--orange);border-radius:50%;animation:xpulse 2s infinite}
.hero h1,.hero-section h1{font-size:clamp(32px,4.5vw,58px);font-weight:800;line-height:1.1;letter-spacing:-0.03em;max-width:640px;margin-bottom:18px;font-family:'Sora',sans-serif;color:var(--text)}
.hero h1 em,.hero-section h1 em{font-style:normal!important;color:var(--orange)!important}
.hero p,.hero-sub{color:var(--text-secondary);font-size:16px;line-height:1.65;max-width:500px;margin-bottom:32px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:40px}
.trust-bar{display:flex;gap:28px;flex-wrap:wrap;padding:20px 0 0;border-top:1px solid var(--border)}
.trust-item{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-secondary)}
.trust-icon{width:28px;height:28px;background:var(--surface2);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0}
.trust-num{font-weight:700;color:var(--text);font-family:'DM Mono',monospace}

/* ── TICKER STRIP ────────────────────────────────────── */
.ticker-section{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:0;overflow:hidden;position:relative;z-index:1}
.ticker-inner{display:flex;align-items:center;height:44px}
.ticker-label{background:var(--orange);color:#000;font-size:11px;font-weight:800;letter-spacing:0.12em;padding:0 16px;height:100%;display:flex;align-items:center;flex-shrink:0;white-space:nowrap;z-index:2;position:relative}
.ticker-label::after{content:'';position:absolute;right:-8px;top:0;border-top:22px solid transparent;border-bottom:22px solid transparent;border-left:8px solid var(--orange)}
.ticker-track-wrap{overflow:hidden;flex:1;padding-left:20px}
.ticker-track{display:flex;gap:40px;animation:ticker-scroll 30s linear infinite;width:max-content}
.ticker-track:hover{animation-play-state:paused}
.ticker-item{display:flex;align-items:center;gap:10px;white-space:nowrap;font-size:13px;color:var(--text-secondary);font-weight:500}
.ticker-item .pair{font-weight:700;color:var(--text);font-family:'DM Mono',monospace;font-size:13px}
.ticker-item .rate{font-family:'DM Mono',monospace;font-size:12px}
.ticker-item .rate.up{color:var(--green)}.ticker-item .rate.down{color:var(--red)}
.ticker-status{display:flex;align-items:center;gap:6px;padding:0 16px;font-size:11px;color:var(--green);font-weight:600;flex-shrink:0;border-left:1px solid var(--border)}
.ticker-status .sdot{width:6px;height:6px;border-radius:50%;background:var(--green);animation:xpulse 2s infinite}
@keyframes ticker-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar-wrap{max-width:1200px;margin:0 auto;padding:0 40px 20px;position:relative;z-index:1}
.stats-bar-widget{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden}
.stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
.stat-item{padding:20px 18px;text-align:center;border-right:1px solid var(--border);transition:var(--t)}
.stat-item:hover{background:var(--surface2)}.stat-item:last-child{border-right:none}
.stat-val{font-size:22px;font-weight:700;font-family:'DM Mono',monospace;color:var(--text);margin-bottom:4px;display:flex;align-items:baseline;justify-content:center;gap:2px}
.stat-val .odometer{color:var(--orange)}.stat-val .abbrev{color:var(--orange);font-size:18px;font-weight:700}
.stat-label{font-size:11px;color:var(--text-secondary);text-transform:uppercase;letter-spacing:0.05em}
.stat-icon{font-size:20px;margin-bottom:6px;display:block}.stat-icon i,.stat-icon svg{color:var(--orange)}

/* ── MAIN GRID ───────────────────────────────────────── */
.main-grid{display:grid;grid-template-columns:1fr 360px;gap:20px;max-width:1200px;margin:0 auto;padding:0 40px 60px;position:relative;z-index:1;animation:fadeSlideIn 0.5s ease 0.1s both}

/* Exchange card */
.exchange-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-md)}
.exchange-card::before{content:'';display:block;height:3px;background:linear-gradient(90deg,var(--orange),var(--orange-light))}
.card-tabs{display:flex;border-bottom:1px solid var(--border);padding:6px;gap:4px;background:var(--surface)}
.card-tab{flex:1;padding:10px;text-align:center;font-size:13px;font-weight:500;color:var(--text-secondary);border-radius:10px;cursor:pointer;transition:var(--t);background:none;border:none;font-family:'Sora',sans-serif}
.card-tab.active{background:var(--surface2);color:var(--text);border:1px solid var(--border-strong)}
.card-body{padding:28px}
.exchange-row{display:grid;grid-template-columns:1fr auto 1fr;gap:12px;align-items:start;margin-bottom:20px}
.field-group label{display:block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--text-secondary);margin-bottom:8px}
.input-wrap{background:var(--bg);border:1.5px solid var(--border);border-radius:var(--r);overflow:hidden;transition:border-color 0.2s}
[data-theme="light"] .input-wrap{background:var(--surface2)}
.input-wrap:focus-within{border-color:var(--orange);box-shadow:0 0 0 3px var(--orange-glow)}
.currency-select-row{border-bottom:1px solid var(--border);padding:2px}
.currency-select-row .select2-container{width:100%!important}
.currency-select-row .select2-container--default .select2-selection--single{background:transparent!important;border:none!important;border-radius:0!important;height:48px!important}
.currency-select-row .select2-container--default .select2-selection--single .select2-selection__rendered{color:var(--text)!important;line-height:46px!important;padding:0 12px!important;font-size:14px!important;font-weight:600!important}
.currency-select-row .select2-container--default .select2-selection--single .select2-selection__arrow{height:46px!important;right:8px!important}
.currency-select-row .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:var(--text-muted) transparent transparent!important}
.amount-row{display:flex;align-items:center;padding:10px 12px}
.amount-row input{background:none;border:none;outline:none;font-family:'DM Mono',monospace;font-size:22px;font-weight:500;color:var(--text);width:100%}
.amount-row input::placeholder{color:var(--text-muted)}
.amount-row input::-webkit-inner-spin-button,.amount-row input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.amount-suffix-label{font-family:'DM Mono',monospace;font-size:12px;color:var(--text-secondary);white-space:nowrap;display:none}
.amount-suffix-label.visible{display:block}
.rate--txt,.rate--txt-received{font-size:12px;color:var(--text-secondary);padding:4px 2px}
.rate--txt .text--base,.rate--txt-received .text--base{color:var(--orange)!important;font-weight:600}
.swap-btn{width:40px;height:40px;background:var(--surface2);border:1px solid var(--border-strong);border-radius:var(--r);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:var(--t);color:var(--text-secondary);font-size:18px;flex-shrink:0;margin-top:26px;align-self:start}
.swap-btn:hover{background:var(--orange);border-color:var(--orange);color:#000;transform:rotate(180deg)}
.best-rate-slide{transition:all 0.3s ease-in-out;opacity:0;transform:translateY(10px);display:none!important}
.best-rate-slide.show{opacity:1;transform:translateY(0);display:block!important}
.best-rate-list{display:flex;flex-wrap:wrap;gap:8px;padding:0;margin:0}
.best-rate-list .list-group-item{background:var(--surface2);border:1px solid var(--border);border-radius:6px;padding:6px 12px;color:var(--text);font-size:12px;font-family:'DM Mono',monospace;list-style:none}

/* Sidebar */
.sidebar{display:flex;flex-direction:column;gap:16px}
.widget{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-sm)}
.widget-header{padding:16px 20px 14px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.widget-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:0.07em;color:var(--text-secondary)}
.widget-action{font-size:12px;color:var(--orange);cursor:pointer;font-weight:500;text-decoration:none}
.widget-action:hover{color:var(--orange-dark)}
.track-input-wrap{padding:16px}
.track-input{display:flex;gap:8px}
.track-input input{flex:1;background:var(--bg);border:1px solid var(--border);border-radius:10px;padding:11px 14px;color:var(--text);font-family:'DM Mono',monospace;font-size:13px;outline:none;transition:border-color 0.2s;width:100%}
[data-theme="light"] .track-input input{background:var(--surface2)}
.track-input input:focus{border-color:var(--orange)}
.track-input button{background:var(--orange);border:none;color:#000;padding:11px 16px;border-radius:10px;font-family:'Sora',sans-serif;font-size:13px;font-weight:600;cursor:pointer;white-space:nowrap;transition:var(--t)}
.track-input button:hover{box-shadow:var(--shadow-orange)}
.rates-table{padding:0 12px 12px}
.rates-header{display:grid;grid-template-columns:1fr 72px 72px;padding:10px 8px 8px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;color:var(--text-muted)}
.rate-row{display:grid;grid-template-columns:1fr 72px 72px;padding:10px 8px;border-radius:10px;transition:background 0.15s;cursor:pointer;align-items:center}
.rate-row:hover{background:var(--surface2)}
.rate-currency-info{display:flex;align-items:center;gap:10px;overflow:hidden}
.rate-flag{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;background:var(--orange-glow)}
.rate-flag img{width:100%;height:100%;object-fit:contain;border-radius:6px}
.rate-currency-name{font-size:13px;font-weight:500;color:var(--text);line-height:1.2}
.rate-currency-code{font-size:11px;color:var(--text-secondary)}
.rate-price{font-family:'DM Mono',monospace;font-size:12px;color:var(--text);text-align:right}
.rate-price.buy{color:var(--green)}.rate-price.sell{color:var(--red)}
.reserve-row{display:grid;grid-template-columns:1fr auto;padding:10px 8px;border-radius:10px;transition:background 0.15s;align-items:center}
.reserve-row:hover{background:var(--surface2)}
.reserve-amount-val{font-family:'DM Mono',monospace;font-size:12px;color:var(--orange);text-align:right}

/* ── WHY CHOOSE US ───────────────────────────────────── */
.why-section{padding:80px 0;background:var(--surface2)}
.why-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.why-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px 24px;transition:var(--t-sm);position:relative;overflow:hidden}
.why-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--orange),var(--orange-light));transform:scaleX(0);transition:transform 0.3s ease;transform-origin:left}
.why-card:hover{border-color:var(--orange-border);box-shadow:var(--shadow-orange);transform:translateY(-4px)}
.why-card:hover::before{transform:scaleX(1)}
.why-card__icon{width:52px;height:52px;background:var(--orange-glow);border:1px solid var(--orange-border);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px;transition:var(--t)}
.why-card:hover .why-card__icon{background:var(--orange)}
.why-card:hover .why-card__icon i{color:#000!important}
.why-card__icon i{color:var(--orange);font-size:22px;transition:var(--t)}
.why-card__title{font-size:16px;font-weight:700;color:var(--text);margin-bottom:8px}
.why-card__desc{font-size:13px;color:var(--text-secondary);line-height:1.65}

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-section{padding:80px 0;background:var(--bg)}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.steps-grid::before{content:'';position:absolute;top:36px;left:calc(12.5% + 20px);right:calc(12.5% + 20px);height:2px;background:linear-gradient(90deg,var(--orange),var(--orange-light),var(--orange));opacity:0.3}
.step-item{text-align:center;padding:0 16px;position:relative}
.step-num{width:56px;height:56px;border-radius:50%;background:var(--orange);color:#000;font-weight:800;font-size:18px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;position:relative;z-index:1;box-shadow:0 0 0 6px var(--bg),0 0 0 8px var(--orange-border);transition:var(--t)}
.step-item:hover .step-num{transform:scale(1.1);box-shadow:0 0 0 6px var(--bg),var(--shadow-orange)}
.step-icon{font-size:20px}
.step-title{font-size:15px;font-weight:700;color:var(--text);margin-bottom:8px}
.step-desc{font-size:13px;color:var(--text-secondary);line-height:1.6;max-width:160px;margin:0 auto}

/* ── ACTIVITY FEED ───────────────────────────────────── */
.activity-feed{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden}
.activity-row{display:flex;align-items:center;gap:12px;padding:10px 16px;border-bottom:1px solid var(--border);font-size:13px;transition:background 0.15s}
.activity-row:last-child{border-bottom:none}.activity-row:hover{background:var(--surface2)}
.activity-dot{width:8px;height:8px;border-radius:50%;background:var(--green);flex-shrink:0;animation:xpulse 3s infinite}
.activity-text{flex:1;color:var(--text-secondary)}.activity-text strong{color:var(--text)}
.activity-time{font-size:11px;color:var(--text-muted);white-space:nowrap}

/* ── RECENT EXCHANGES ────────────────────────────────── */
.recent-section{max-width:1200px;margin:0 auto;padding:0 40px 72px;position:relative;z-index:1;animation:fadeSlideIn 0.5s ease 0.2s both}
.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.section-title-text{font-size:18px;font-weight:700;letter-spacing:-0.01em;color:var(--text)}
.view-all{font-size:13px;color:var(--orange);font-weight:500;text-decoration:none;display:flex;align-items:center;gap:4px}
.view-all:hover{color:var(--orange-dark)}
.table-wrap{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden}
.table{width:100%;border-collapse:collapse}
.table thead tr{background:var(--surface2);border-bottom:1px solid var(--border)}
.table th{padding:12px 16px;text-align:left;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.07em;color:var(--text-muted)}
.table td{padding:13px 16px;font-size:13px;border-bottom:1px solid var(--border);color:var(--text-secondary);vertical-align:middle}
.table tbody tr:last-child td{border-bottom:none}.table tbody tr{transition:background 0.15s}
.table tbody tr:hover td{background:var(--surface2);color:var(--text)}
.user-cell{display:flex;align-items:center;gap:10px}
.user-avatar{width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:#fff;flex-shrink:0;background:linear-gradient(135deg,var(--blue),#1d4ed8)}
.currency-cell{display:flex;align-items:center;gap:8px}
.currency-cell .thumb{width:24px;height:24px;border-radius:6px;background:var(--surface2);overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.currency-cell .thumb img{width:100%;height:100%;object-fit:contain}
.amount-cell{font-family:'DM Mono',monospace;font-size:12px;color:var(--text);white-space:nowrap}
.amount-cell .las{color:var(--orange);margin:0 4px}

/* ── FEE TRANSPARENCY ────────────────────────────────── */
.fee-section{padding:80px 0;background:var(--surface2)}
.fee-comparison{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.fee-col{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px;text-align:center;transition:var(--t-sm)}
.fee-col.featured{border-color:var(--orange-border);box-shadow:var(--shadow-orange);position:relative;transform:scale(1.03)}
.fee-col.featured::before{content:'BEST RATE';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--orange);color:#000;font-size:10px;font-weight:800;padding:3px 12px;border-radius:var(--r-full);letter-spacing:0.1em}
.fee-col__name{font-size:16px;font-weight:700;color:var(--text);margin-bottom:8px}
.fee-col__rate{font-size:32px;font-weight:800;color:var(--orange);font-family:'DM Mono',monospace;margin-bottom:4px}
.fee-col__label{font-size:12px;color:var(--text-secondary)}

/* ── SECURITY STRIP ──────────────────────────────────── */
.security-strip{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:24px 0}
.security-items{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.security-item{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--text-secondary)}
.security-item i{color:var(--green);font-size:18px}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonial-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);padding:28px 24px;text-align:center;margin:8px;transition:var(--t-sm)}
.testimonial-item:hover{border-color:var(--orange-border);box-shadow:var(--shadow-orange);transform:translateY(-4px)}
.testimonial-item__thumb{width:72px;height:72px;border-radius:50%;overflow:hidden;border:2px solid var(--orange-border);margin:0 auto 16px}
.testimonial-item__thumb img{width:100%;height:100%;object-fit:cover}
.testimonial-item__content-name{font-size:16px;font-weight:700;color:var(--text)}
.testimonial-item__content-designation{font-size:13px;color:var(--orange);font-weight:500}
.testimonial-item__content-text{font-size:14px;color:var(--text-secondary);line-height:1.7}
.rating li{color:var(--text-muted);font-size:14px}.rating li.text--base{color:var(--orange)!important}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item-wrapper{align-items:flex-start}
.faq-icon{width:36px;height:36px;border-radius:10px;background:var(--orange-glow);border:1px solid var(--orange-border);display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--orange);flex-shrink:0;margin-top:2px}
.faq-item__title .title{font-size:15px;font-weight:600;color:var(--text);margin-bottom:8px;line-height:1.4}
.faq-item__content{color:var(--text-secondary);font-size:14px;line-height:1.65}

/* ── SUBSCRIBE ───────────────────────────────────────── */
.newsletter-section{position:relative;overflow:hidden}
.newsletter-section.bg_overlay::before{content:'';position:absolute;inset:0;background:rgba(10,12,16,0.78)}
[data-theme="light"] .newsletter-section.bg_overlay::before{background:rgba(248,250,252,0.85)}
.newsletter-section .container{position:relative;z-index:1}
.newsletter-form{display:flex;background:var(--surface2);border:1.5px solid var(--border-strong);border-radius:var(--r-full);overflow:hidden;padding:6px 6px 6px 20px}
.newsletter-form .form--control{background:transparent!important;border:none!important;border-radius:0!important;padding:8px 0!important;color:var(--text)!important;flex:1;min-width:0}
.newsletter-form .form--control:focus{box-shadow:none!important}
.newsletter-form button{background:var(--orange);color:#000;border:none;border-radius:var(--r-full);padding:10px 24px;font-weight:700;font-size:14px;cursor:pointer;transition:var(--t);flex-shrink:0;font-family:'Sora',sans-serif}
.newsletter-form button:hover{box-shadow:var(--shadow-orange)}

/* ── SECTION TITLES ──────────────────────────────────── */
.section-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
.section-head{margin-bottom:48px}.section-head--center{text-align:center}
.section-head--center .section-title__wrapper{margin:0 auto}
.section-title__wrapper{max-width:620px}
.section-tag{display:inline-flex;align-items:center;gap:6px;background:var(--orange-glow);border:1px solid var(--orange-border);color:var(--orange);font-size:11px;font-weight:700;padding:4px 12px;border-radius:var(--r-full);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:14px}
.section-title__title{font-size:clamp(24px,3vw,38px);font-weight:800;color:var(--text);letter-spacing:-0.02em;margin-bottom:14px!important;line-height:1.15}
.section-title__title em{font-style:normal;color:var(--orange)}
.section-title__desc{color:var(--text-secondary);font-size:15px;line-height:1.65}

/* ── AFFILIATE ───────────────────────────────────────── */
.affiliate-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);padding:28px;display:flex;gap:24px;align-items:flex-start;transition:var(--t-sm)}
.affiliate-item:hover{border-color:var(--orange-border);box-shadow:var(--shadow-orange)}
.affiliate-item__subtitle{font-size:11px;font-weight:700;letter-spacing:1.2px;color:var(--orange);text-transform:uppercase;margin-bottom:6px}
.affiliate-item__title{font-size:40px;font-weight:900;color:var(--orange);font-family:'DM Mono',monospace;line-height:1}
.affiliate-item__desc{color:var(--text-secondary);font-size:14px;line-height:1.65;margin:0}

/* ── ABOUT ───────────────────────────────────────────── */
.about-section{background:var(--surface2)}
.about-thumb{border-radius:var(--r-xl);overflow:hidden}
.about-thumb img{width:100%;border-radius:var(--r-xl)}
.about-content{margin-top:20px}
.about-content p{color:var(--text-secondary);line-height:1.75;margin-bottom:16px}

/* ── MOBILE APP ──────────────────────────────────────── */
.exchange-currency{background:var(--surface2)}
.exchange-currency__wrapper{display:flex;justify-content:space-around;gap:48px;align-items:center}
.exchange-currency__thumb{max-width:300px;position:relative}
.exchange-currency__thumb img{width:100%;border-radius:var(--r-xl)}
.exchange-currency__content{flex:1;max-width:520px}
.exchange-currency__content .title{font-size:clamp(22px,3vw,32px);font-weight:800;color:var(--text);margin-bottom:16px}
.exchange-currency__content .desc{color:var(--text-secondary);margin-bottom:24px;line-height:1.7}
.exchange-currency__content .text{color:var(--text);font-weight:700;font-size:15px;margin-top:16px}
.exchange-currency__link{display:inline-block;margin-right:12px;transition:var(--t)}
.exchange-currency__link:hover{transform:translateY(-3px)}
.exchange-currency__link img{height:48px;width:auto;border-radius:10px}

/* ── BRAND / PAYMENT ─────────────────────────────────── */
.brand-section{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.brand-item{display:flex;align-items:center;justify-content:center;padding:12px 20px;opacity:0.5;transition:var(--t)}
.brand-item:hover{opacity:1}
.brand-item img{height:36px;width:auto;filter:grayscale(100%) brightness(200%);transition:var(--t)}
[data-theme="light"] .brand-item img{filter:grayscale(100%)}
.brand-item:hover img{filter:none}

/* ── BLOG ────────────────────────────────────────────── */
.post-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;transition:var(--t-sm)}
.post-item:hover{border-color:var(--orange-border);box-shadow:var(--shadow-orange);transform:translateY(-4px)}
.post-item__thumb{overflow:hidden;aspect-ratio:16/9}
.post-item__thumb img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.post-item:hover .post-item__thumb img{transform:scale(1.04)}
.post-item__content{padding:20px}
.post-item__content .date{font-size:12px;color:var(--text-secondary);display:flex;align-items:center;gap:6px}
.post-item__content .date .icon{color:var(--orange)}
.post-item__content-title{font-size:16px;font-weight:700;margin:8px 0;line-height:1.4}
.post-item__content-title a{color:var(--text)}
.post-item__content-title a:hover{color:var(--orange)}
.post-item__content p{font-size:13px;color:var(--text-secondary);line-height:1.65}
.post-item__content a.text--base{font-size:13px;font-weight:600;display:inline-flex;align-items:center;gap:6px;color:var(--orange)!important}
.post-item__content a.text--base:hover{gap:10px}

/* ── FOOTER ──────────────────────────────────────────── */
.footer{background:var(--surface)!important;border-top:1px solid var(--border)}
.footer-inner{max-width:1200px;margin:0 auto;padding:56px 40px 32px}
.footer-widget p{color:var(--text-secondary);font-size:14px;line-height:1.7}
.footer-widget__title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--text-secondary);margin-bottom:18px}
.footer-links li{margin-bottom:10px}
.footer-links li a{color:var(--text-secondary);font-size:14px;transition:var(--t)}
.footer-links li a:hover{color:var(--orange);padding-left:4px}
.footer-contact-list li{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px;color:var(--text-secondary);font-size:13px}
.footer-contact-list .image-icon{width:28px;height:28px;flex-shrink:0}
.footer-contact-list .image-icon img{width:100%;height:100%;object-fit:contain;filter:invert(1) opacity(0.4)}
[data-theme="light"] .footer-contact-list .image-icon img{filter:opacity(0.5)}
.social-links{display:flex;flex-wrap:wrap;gap:8px}
.social-links li a{width:36px;height:36px;border-radius:var(--r-sm);background:var(--surface2);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-secondary);font-size:14px;transition:var(--t)}
.social-links li a:hover{background:var(--orange-glow);border-color:var(--orange-border);color:var(--orange);transform:translateY(-3px)}
.footer-bottom{border-top:1px solid var(--border);max-width:1200px;margin:0 auto;padding:20px 40px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{color:var(--text-muted)!important;font-size:13px;margin:0}
.footer-bottom a{color:var(--text-secondary);font-size:13px}.footer-bottom a:hover{color:var(--orange)}
.footer-legal-links{display:flex;gap:20px}

/* ── MODAL ───────────────────────────────────────────── */
.modal-content{background:var(--surface)!important;border:1px solid var(--border-strong)!important;border-radius:var(--r-lg)!important;color:var(--text)!important}
.modal-header{border-bottom:1px solid var(--border)!important;padding:20px 24px!important}
.modal-title{color:var(--text)!important;font-weight:700!important}
.modal-body{padding:24px!important}.modal-footer{border-top:1px solid var(--border)!important}
.btn-close{filter:invert(1)}
.trackModal .modal-header{border-bottom:0!important}
.trackModal .close{color:var(--text-secondary);font-size:22px;cursor:pointer;transition:var(--t)}
.trackModal .close:hover{color:var(--orange)}
.adz-modal{position:fixed;inset:0;background:rgba(10,12,16,0.85);z-index:9999;display:flex;align-items:center;justify-content:center}
.adz-modal__card{background:var(--orange);border-radius:var(--r-md);padding:24px 40px;text-align:center}
.adz-modal__text{display:block;color:#000;font-weight:700;margin-bottom:16px;font-size:15px}
.adz-progressbar{width:200px;height:4px;background:rgba(0,0,0,0.2);border-radius:999px;overflow:hidden;position:relative}
.adz-progressbar__line{position:absolute;inset:0}
.adz-progressbar__indeterminate{position:absolute;top:0;height:100%;background:rgba(0,0,0,0.5);border-radius:999px;animation:indeterminate 1.5s infinite}
.adz-progressbar__indeterminate.short{animation-delay:.5s;opacity:.6}
@keyframes indeterminate{0%{left:-30%;width:30%}60%{left:100%;width:30%}100%{left:100%;width:0}}

/* ── SELECT2 ─────────────────────────────────────────── */
.select2-dropdown{background:var(--surface)!important;border:1px solid var(--border-strong)!important;border-radius:var(--r)!important;box-shadow:var(--shadow-lg)!important}
.select2-results__option{padding:10px 14px!important;color:var(--text-secondary)!important;font-size:13px!important}
.select2-results__option--highlighted{background:var(--orange-glow)!important;color:var(--orange)!important}
.select2-container--default img,img.currency-image{width:22px;height:22px;object-fit:contain;border-radius:4px}
.select2-results__option:empty{display:none!important}
.select2-search--dropdown .select2-search__field{background:var(--surface2)!important;border:1px solid var(--border)!important;border-radius:6px!important;color:var(--text)!important;padding:8px 10px!important;font-family:'Sora',sans-serif!important}

/* ── MISC ────────────────────────────────────────────── */
.breadcrumb-section{padding:32px 40px;background:var(--surface);border-bottom:1px solid var(--border)}
.breadcrumb-title{font-size:24px;font-weight:700;color:var(--text);margin-bottom:6px}
.breadcrumb{background:transparent;padding:0;margin:0}
.breadcrumb-item a{color:var(--text-secondary);font-size:13px}
.breadcrumb-item.active{color:var(--orange);font-size:13px}
.breadcrumb-item+.breadcrumb-item::before{color:var(--text-muted)}
.cookies-card{position:fixed;bottom:-100px;left:50%;transform:translateX(-50%);background:var(--surface);border:1px solid var(--orange-border);border-radius:var(--r-md);padding:14px 20px;z-index:9999;transition:bottom 0.4s ease;max-width:460px;width:calc(100% - 32px);box-shadow:var(--shadow-orange)}
.cookies-card:not(.hide){bottom:20px}
.odometer.odometer-auto-theme,.odometer.odometer-theme-default{font-family:'DM Mono',monospace!important;color:var(--orange)!important}
.mobile-menu-wrapper,.mobile-menu-close,.mobile-menu-logo,.mobile-nav,.mobile-nav-actions{}
@keyframes fadeSlideIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
/* ── POLICY / ADMIN FORM BUTTONS ─────────────────── */
.btn--base,
.btn-primary,
input[type="submit"],
button[type="submit"] {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media(max-width:1100px){
  .main-grid{grid-template-columns:1fr 300px;padding:0 24px 56px}
  .hero,.hero-section{padding:64px 24px 48px}
  .stats-bar-wrap{padding:0 24px 18px}
  .recent-section{padding:0 24px 56px}
  .footer-inner{padding:48px 24px 28px}
  .footer-bottom{padding:18px 24px}
  .section-wrap{padding:0 24px}
  .why-cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  .main-grid{display:flex!important;flex-direction:column!important;padding:0 20px 48px}
  .exchange-card{order:1!important;width:100%!important}
  .sidebar{order:2!important;width:100%!important;display:flex!important;flex-direction:column!important;gap:14px!important}
  .steps-grid::before{display:none}
  .exchange-currency__wrapper{flex-direction:column;gap:24px}
  .exchange-currency__thumb{max-width:260px;margin:0 auto}
  .fee-comparison{grid-template-columns:1fr 1fr}
  .fee-col.featured{transform:scale(1)}
}
@media(max-width:768px){
  #xnav-links{display:none!important}
  #xnav-actions{display:none!important}
  #xnav-toggle{display:flex!important}
  #xnav-inner{padding:0 16px!important}
  .hero,.hero-section{padding:40px 16px 28px}
  .hero h1,.hero-section h1{font-size:clamp(24px,7vw,36px)}
  .hero p,.hero-sub{font-size:14px}
  .trust-bar{gap:12px}
  .stats-bar-wrap{padding:0 16px 14px}
  .main-grid{padding:0 16px 40px;gap:14px}
  .recent-section{padding:0 16px 40px}
  .section-wrap{padding:0 16px}
  .why-cards{grid-template-columns:1fr 1fr}
  .steps-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .fee-comparison{grid-template-columns:1fr}
  .footer-inner{padding:40px 16px 24px}
  .footer-bottom{flex-direction:column;text-align:center;padding:16px;gap:10px}
  .footer-legal-links{justify-content:center;flex-wrap:wrap;gap:14px}
  .exchange-row{grid-template-columns:1fr;gap:12px}
  .swap-btn{margin:0 auto;width:36px;height:36px}
  .card-body{padding:18px 16px}
  .section-title-text{font-size:16px}
  .x-promo-bar{padding:8px 40px 8px 16px;font-size:12px}
  .security-items{gap:20px}
  .newsletter-form{flex-direction:column;border-radius:var(--r-md);padding:12px}
  .newsletter-form button{width:100%;border-radius:var(--r-sm)!important}
}
@media(max-width:576px){
  #xnav-logo-text{display:none!important}
  #xnav-logo-mark{width:32px!important;height:32px!important;font-size:15px!important}
  .hero,.hero-section{padding:32px 14px 20px}
  .hero h1,.hero-section h1{font-size:24px}
  .trust-bar{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .stats-row{grid-template-columns:1fr 1fr}
  .stat-item{padding:14px 10px}.stat-val{font-size:18px}
  .why-cards{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr 1fr;gap:20px}
  .main-grid{padding:0 14px 32px}
  .recent-section{padding:0 14px 32px}
  .card-body{padding:14px 12px}
  .card-tab{font-size:11px;padding:8px 4px}
  .exchange-card{border-radius:14px}
  .table th{padding:10px;font-size:10px}.table td{padding:10px;font-size:12px}
}
@media(max-width:767px){
  .table--responsive--lg thead{display:none}
  .table--responsive--lg tbody tr{display:block;margin-bottom:10px;background:var(--surface2);border-radius:var(--r);padding:10px 12px;border:1px solid var(--border)}
  .table--responsive--lg tbody td{display:flex;justify-content:space-between;align-items:center;padding:7px 0;border:none;font-size:12px;color:var(--text-secondary)}
  .table--responsive--lg tbody td:not(:last-child){border-bottom:1px solid var(--border)}
  .table--responsive--lg tbody td::before{content:attr(data-label);font-weight:700;color:var(--text-muted);font-size:10px;text-transform:uppercase;letter-spacing:0.5px;min-width:70px;flex-shrink:0}
  .user-cell{justify-content:flex-end}.currency-cell{justify-content:flex-end}
  .amount-cell{text-align:right;font-size:11px;white-space:normal}
}
