/* ── NX Custom Confirm Dialog ──────────────────────── */
.nx-confirm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.nx-confirm-overlay.active {
  display: flex;
}

.nx-confirm-box {
  background: #1a2332;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  text-align: center;
  animation: nxConfirmIn 0.18s ease;
}

@keyframes nxConfirmIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.nx-confirm-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.13);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #f59e0b;
}

.nx-confirm-msg {
  color: #cbd5e1;
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.nx-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.nx-confirm-btn {
  padding: 9px 26px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
  min-width: 100px;
}

.nx-confirm-cancel {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.3);
  color: #94a3b8;
}

.nx-confirm-cancel:hover {
  background: rgba(148, 163, 184, 0.1);
  color: #e2e8f0;
}

.nx-confirm-ok {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #0f172a;
}

.nx-confirm-ok:hover {
  background: #d97706;
  border-color: #d97706;
}

/* ═══════════════════════════════════════════════════════
   NEXVAULT — CRYPTO TRADING PLATFORM
   Complete Theme CSS
   Fonts: Geist Sans (headings + body) + Geist Mono
   ═══════════════════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/npm/geist@1.3.0/dist/fonts/geist-sans/style.css');
@import url('https://cdn.jsdelivr.net/npm/geist@1.3.0/dist/fonts/geist-mono/style.css');

/* ─── CSS VARIABLES ─── */
:root {
  --c-bg: #05080f;
  --c-bg2: #0a0f1e;
  --c-bg3: #0e1428;
  --c-card: #0d1322;
  --c-card2: #111827;
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-glow: rgba(99, 179, 237, 0.25);

  --c-cyan: #63B3ED;
  --c-cyan-dim: rgba(99, 179, 237, 0.12);
  --c-cyan-glow: rgba(99, 179, 237, 0.25);
  --c-violet: #9F7AEA;
  --c-violet-dim: rgba(159, 122, 234, 0.12);
  --c-green: #48BB78;
  --c-green-dim: rgba(72, 187, 120, 0.12);
  --c-red: #FC8181;
  --c-red-dim: rgba(252, 129, 129, 0.12);
  --c-amber: #F6AD55;
  --c-amber-dim: rgba(246, 173, 85, 0.12);

  --c-text: #E2E8F0;
  --c-text2: #94A3B8;
  --c-text3: #4A5568;

  --f-head: 'Geist', sans-serif;
  --f-body: 'Geist', sans-serif;
  --f-mono: 'Geist Mono', 'Courier New', monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(99, 179, 237, 0.12);

  /* legacy compat */
  --theme-color: #63B3ED;
  --primary: #63B3ED;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text2);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-cyan);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--c-text);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-head);
  color: var(--c-text);
  line-height: 1.25;
}

/* ─── GRID NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 60% at 20% -10%, rgba(99, 179, 237, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(159, 122, 234, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer,
.hn_dashboard {
  position: relative;
  z-index: 1;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--c-border-glow);
  border-radius: 3px;
}


/* ════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ════════════════════════════════════ */
.nx-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-cyan);
  margin-bottom: 12px;
}

.nx-label::before,
.nx-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--c-cyan);
}

.nx-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.nx-grad-text {
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nx-muted {
  color: var(--c-text2);
}

.nx-dim {
  color: var(--c-text3);
}

.nx-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nx-pulse::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.5);
  animation: nx-pulse-ring 1.6s ease infinite;
}

@keyframes nx-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.5);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(72, 187, 120, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
  }
}


/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.nx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nx-btn-primary {
  background: linear-gradient(135deg, #00c896 0%, #00a8e8 55%, #0077ff 100%);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 168, 232, 0.30);
}

.nx-btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 168, 232, 0.45), 0 0 20px rgba(0, 200, 150, 0.22);
  color: #fff;
}

.nx-btn-outline {
  background: transparent;
  color: var(--c-cyan);
  border: 1.5px solid var(--c-cyan);
}

.nx-btn-outline:hover {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.20);
}

.nx-btn-ghost {
  background: var(--c-card2);
  color: var(--c-text2);
  border: 1px solid var(--c-border);
}

.nx-btn-ghost:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.nx-btn-sm {
  padding: 7px 18px;
  font-size: 0.8rem;
}

.nx-btn-lg {
  padding: 14px 36px;
  font-size: 0.95rem;
}

.nx-btn-full {
  width: 100%;
  justify-content: center;
}

.nx-btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: var(--r-sm);
}

/* Legacy compat */
.hn_btn_solid {
  @extend .nx-btn;
}

.hn_btn_border_base {
  @extend .nx-btn-outline;
}

.cmn-btn {
  @extend .nx-btn;
}

/* ═══════════════════════════════════════════════════════
   UNIFIED BUTTON SYSTEM
   Primary  → gradient fill  (all solid buttons)
   Outline  → transparent + border
   ═══════════════════════════════════════════════════════ */

/* ─── Shared base for every solid button ─── */
.btn.hn_btn_solid,
.btn.cmn-btn,
.btn-main,
.nx-btn.nx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00c896 0%, #00a8e8 55%, #0077ff 100%);
  background-size: 200% auto;
  color: #fff !important;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 28px;
  letter-spacing: 0.15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition: background-position 0.4s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 18px rgba(0, 168, 232, 0.28);
  justify-content: center;
}

/* Glass shine overlay */
.btn.hn_btn_solid::before,
.btn.cmn-btn::before,
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

/* Hover */
.btn.hn_btn_solid:hover,
.btn.cmn-btn:hover,
.btn-main:hover,
.nx-btn.nx-btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 168, 232, 0.42), 0 0 20px rgba(0, 200, 150, 0.20);
  color: #fff !important;
}

/* Active press */
.btn.hn_btn_solid:active,
.btn.cmn-btn:active,
.btn-main:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 168, 232, 0.28);
}

/* ─── Shared base for every outline button ─── */
.btn.hn_btn_border_base,
.btn.hn_btn_outline,
.nx-btn.nx-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-cyan);
  border: 1.5px solid var(--c-cyan);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 28px;
  letter-spacing: 0.15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn.hn_btn_border_base:hover,
.btn.hn_btn_outline:hover,
.nx-btn.nx-btn-outline:hover {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border-color: var(--c-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.18);
}

/* ─── Ghost button ─── */
.nx-btn.nx-btn-ghost {
  background: var(--c-card2);
  color: var(--c-text2);
  border: 1px solid var(--c-border);
}

.nx-btn.nx-btn-ghost:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* ─── Circle arrow badge inside button ─── */
.btn_circle_arrow {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}


/* ════════════════════════════════════
   CARDS
   ════════════════════════════════════ */
.nx-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nx-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-glow);
}

.nx-card-inner {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 16px;
}

/* compat */
.hn_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease);
}

.hn_card .card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-border);
}

.hn_card .card-header h5 {
  color: var(--c-text);
  font-size: 0.95rem;
  margin: 0;
}

.hn_card .card-body {
  padding: 24px;
}

.hn_card .card-body.p-0 {
  padding: 0;
}

.hn_card:hover {
  border-color: var(--c-border-glow);
}


/* ════════════════════════════════════
   STAT CARD
   ════════════════════════════════════ */
.nx-stat {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.nx-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}

.nx-stat:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-glow);
}

.nx-stat:hover::after {
  opacity: 1;
}

.nx-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-stat-icon.v {
  background: var(--c-violet-dim);
  color: var(--c-violet);
}

.nx-stat-icon.g {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-stat-icon.r {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.nx-stat-icon.a {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 6px;
}

.nx-stat-value {
  font-family: var(--f-mono);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 6px;
}

.nx-stat-value small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-text3);
  margin-left: 2px;
}

.nx-stat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-cyan);
  margin-top: 4px;
}

/* compat user cards */
.hn_user_card {
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  border-radius: var(--r-md);
  padding: 22px;
  color: #fff;
}

.hn_user_card_bg_01 {
  background: linear-gradient(135deg, #63B3ED, #9F7AEA);
}

.hn_user_card_bg_02 {
  background: linear-gradient(135deg, #48BB78, #63B3ED);
}

.hn_user_card_bg_03 {
  background: linear-gradient(135deg, #9F7AEA, #FC8181);
}

.hn_user_card_bg_04 {
  background: linear-gradient(135deg, #F6AD55, #FC8181);
}

.hn_user_card .text-dark {
  color: #fff !important;
}

.hn_user_card_amount {
  font-family: var(--f-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff !important;
  line-height: 1;
}

.hn_user_card_two {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px;
  transition: border-color var(--dur) var(--ease);
}

.hn_user_card_two:hover {
  border-color: var(--c-border-glow);
}

.hn_user_card_two_amount {
  font-family: var(--f-mono);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-text);
}

.hn_user_card_two .text-dark {
  color: var(--c-text) !important;
}

.text-sm {
  font-size: 0.78rem;
}

.text-md {
  font-size: 0.9rem;
}

.text-lg {
  font-size: 1.05rem;
}

.sm-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}


/* ════════════════════════════════════
   HEADER
   ════════════════════════════════════ */
.hn_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.hn_header.header-fixed {
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hn_header .container {
  max-width: 1300px;
}

.hn_header_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.hn_header_logo img {
  height: 36px;
  width: auto;
}

/* nav menu */
.hn_header_menu_area {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hn_header_menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hn_header_menu li a {
  color: var(--c-text2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
}

.hn_header_menu li a:hover,
.hn_header_menu li a.active {
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.hn_header_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hn_lang_btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.hn_lang_btn:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.hn_header_menu_open {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  border-radius: var(--r-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--dur) var(--ease);
}

.hn_header_menu_close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  border-radius: var(--r-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

/* mobile menu */
@media (max-width: 991px) {
  .hn_header_menu_area {
    position: fixed;
    top: 0;
    right: -320px;
    width: 290px;
    height: 100vh;
    background: var(--c-bg2);
    border-left: 1px solid var(--c-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 20px 40px;
    z-index: 999;
    transition: right var(--dur) var(--ease);
    overflow-y: auto;
  }

  .hn_header_menu_area.active {
    right: 0;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
  }

  .hn_header_menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
  }

  .hn_header_menu li {
    width: 100%;
  }

  .hn_header_menu li a {
    display: block;
    padding: 10px 14px;
  }
}


/* ════════════════════════════════════
   HERO / BANNER
   ════════════════════════════════════ */
.nx-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.nx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.nx-hero h1 {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--c-text);
  margin-bottom: 22px;
}

.nx-hero-sub {
  font-size: 1.05rem;
  color: var(--c-text2);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.nx-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nx-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.nx-stat-pill {
  display: flex;
  flex-direction: column;
}

.nx-stat-pill-num {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
}

.nx-stat-pill-label {
  font-size: 0.72rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ticker */
.nx-ticker {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 11px 0;
  overflow: hidden;
}

.nx-ticker-track {
  display: flex;
  gap: 48px;
  animation: nx-scroll 30s linear infinite;
  white-space: nowrap;
}

.nx-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  flex-shrink: 0;
}

.nx-ticker-item .coin {
  color: var(--c-text);
  font-weight: 700;
  font-family: var(--f-head);
}

.nx-ticker-item .price {
  color: var(--c-cyan);
  font-family: var(--f-mono);
}

.nx-ticker-item .up {
  color: var(--c-green);
  font-family: var(--f-mono);
}

.nx-ticker-item .dn {
  color: var(--c-red);
  font-family: var(--f-mono);
}

@keyframes nx-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ════════════════════════════════════
   SECTIONS
   ════════════════════════════════════ */
.nx-section {
  padding: 96px 0;
}

.nx-section-sm {
  padding: 64px 0;
}

.nx-section-alt {
  background: var(--c-bg2);
}

.nx-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-glow), transparent);
}


/* ════════════════════════════════════
   FEATURES / WHY CHOOSE US
   ════════════════════════════════════ */
.nx-feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.nx-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-cyan-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.nx-feature-card:hover {
  border-color: var(--c-cyan);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(99, 179, 237, 0.12);
}

.nx-feature-card:hover::before {
  opacity: 1;
}

.nx-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  margin-bottom: 18px;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.nx-feature-card:hover .nx-feature-icon {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  color: #fff;
}

.nx-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}


/* ════════════════════════════════════
   PLAN CARDS
   ════════════════════════════════════ */
.nx-plan {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nx-plan.featured {
  border-color: var(--c-cyan);
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.06) 0%, var(--c-card) 100%);
}

.nx-plan.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: -26px;
  background: linear-gradient(130deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.nx-plan:hover {
  border-color: var(--c-cyan);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(99, 179, 237, 0.15);
}

.nx-plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nx-plan-roi {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 4px;
}

.nx-plan-roi span {
  font-size: 1.1rem;
  color: var(--c-text2);
  font-weight: 500;
}

.nx-plan-sub {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin-bottom: 22px;
}

.nx-plan-divider {
  height: 1px;
  background: var(--c-border);
  margin: 20px 0;
}

.nx-plan-features {
  flex: 1;
  margin: 0 0 24px;
}

.nx-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.nx-plan-features li:last-child {
  border-bottom: none;
}

.nx-plan-features li i {
  color: var(--c-green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.nx-plan-features li strong {
  color: var(--c-text);
  margin-left: auto;
}

.nx-plan-range {
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.nx-plan-range-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
}

.nx-plan-range-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-cyan);
}

/* compat */
.hn_plan_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hn_plan_item:hover {
  border-color: var(--c-cyan);
  transform: translateY(-5px);
}

.hn_plan_item_img {
  display: none;
}

.hn_plan_item_top {
  margin-bottom: 16px;
}

.hn_plan_item_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
}

.hn_plan_item_price {
  font-size: 0.85rem;
  color: var(--c-cyan);
  margin-top: 4px;
}

.hn_plan_item_feature {
  flex: 1;
}

.hn_plan_item_feature ul {
  margin: 0;
}

.hn_plan_item_feature li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.hn_plan_item_feature li:last-child {
  border-bottom: none;
}

.hn_plan_item_feature li span:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.hn_plan_item_bottom {
  margin-top: 22px;
}


/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.nx-testi {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px;
  height: 100%;
  transition: border-color var(--dur) var(--ease);
}

.nx-testi:hover {
  border-color: var(--c-border-glow);
}

.nx-testi-stars {
  color: var(--c-amber);
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.nx-testi-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-text2);
  font-style: italic;
  margin-bottom: 18px;
}

.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-cyan-glow);
}

.nx-testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
}

.nx-testi-role {
  font-size: 0.75rem;
  color: var(--c-text3);
}


/* ════════════════════════════════════
   FAQ
   ════════════════════════════════════ */
.nx-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.nx-faq-item.open {
  border-color: var(--c-cyan);
}

.nx-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
}

.nx-faq-q span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
}

.nx-faq-q i {
  color: var(--c-cyan);
  flex-shrink: 0;
}

.nx-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.8;
}

.nx-faq-item.open .nx-faq-a {
  display: block;
}


/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.hn_footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 72px 0 0;
  position: relative;
}

.hn_footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
}

.hn_footer_logo img {
  height: 34px;
}

.hn_footer_logo {
  display: inline-block;
  margin-bottom: 18px;
}

.hn_social_media {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.hn_social_media li a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--dur) var(--ease);
}

.hn_social_media li a:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
  transform: translateY(-2px);
}

.hn_footer_title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-text);
  margin-bottom: 18px;
}

.hn_footer_menu li {
  margin-bottom: 8px;
}

.hn_footer_menu li a {
  font-size: 0.875rem;
  color: var(--c-text2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--dur) var(--ease);
}

.hn_footer_menu li a:hover {
  color: var(--c-cyan);
  padding-left: 3px;
}

.hn_copy_right {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.hn_copy_right p {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin: 0;
}

.hn_footer_shape,
.hn_footer_shape_two {
  display: none;
}


/* ════════════════════════════════════
   AUTH LAYOUT
   ════════════════════════════════════ */
.hn_auth {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hn_auth_main {
  flex: 0 0 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border-right: 1px solid var(--c-border);
}

.hn_auth_main_header {
  margin-bottom: 36px;
}

.hn_logo img {
  height: 34px;
}

.hn_auth_main_body {
  width: 100%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.hn_auth_main_footer {
  margin-top: 22px;
}

.hn_auth_main_footer p {
  font-size: 0.75rem;
  color: var(--c-text3);
  text-align: center;
}

.hn_auth_image {
  flex: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(99, 179, 237, 0.07) 0%, transparent 70%),
    var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.hn_auth_image img {
  max-width: 380px;
  height: auto;
}

/* auth form */
.nx-auth-title {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 4px;
}

.nx-auth-sub {
  font-size: 0.875rem;
  color: var(--c-text2);
  margin-bottom: 28px;
}

.nx-divider-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}

.nx-divider-or::before,
.nx-divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.nx-divider-or span {
  font-size: 0.75rem;
  color: var(--c-text3);
  white-space: nowrap;
}

.nx-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text2);
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}

.nx-social-btn:hover {
  border-color: var(--c-cyan);
  color: var(--c-text);
}

.cmn-btn-outline-white {
  @extend .nx-social-btn;
}

@media (max-width: 900px) {
  .hn_auth {
    flex-direction: column;
  }

  .hn_auth_main {
    flex: none;
    max-width: 100%;
    padding: 40px 20px;
    border-right: none;
  }

  .hn_auth_image {
    display: none;
  }
}


/* ════════════════════════════════════
   FORMS
   ════════════════════════════════════ */
.form-control,
.form-select {
  background: var(--c-card2) !important;
  border: 1px solid var(--c-border) !important;
  color: var(--c-text) !important;
  border-radius: var(--r-sm) !important;
  padding: 11px 14px !important;
  font-size: 0.875rem !important;
  font-family: var(--f-body) !important;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease) !important;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--c-cyan) !important;
  box-shadow: 0 0 0 3px var(--c-cyan-dim) !important;
  outline: none !important;
  background: var(--c-card2) !important;
  color: var(--c-text) !important;
}

.form-control::placeholder {
  color: var(--c-text3) !important;
}

.form-control[readonly] {
  opacity: 0.6;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text2);
  margin-bottom: 7px;
}

.form-group {
  margin-bottom: 18px;
}

.form-check-input {
  background-color: var(--c-card2);
  border: 1px solid var(--c-border);
  width: 17px;
  height: 17px;
}

.form-check-input:checked {
  background-color: var(--c-cyan);
  border-color: var(--c-cyan);
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--c-text2);
}

.nx-input-icon {
  position: relative;
}

.nx-input-icon input {
  padding-left: 40px !important;
}

.nx-input-icon-left {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text3);
  font-size: 0.875rem;
  pointer-events: none;
}

.nx-input-icon-right {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text3);
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nx-input-icon-right:hover {
  color: var(--c-cyan);
}

.nx-pw-reveal {
  padding-right: 44px !important;
}

.input-group {
  display: flex;
}

.input-group .form-control {
  border-radius: var(--r-sm) 0 0 var(--r-sm) !important;
}

.input-group-text {
  background: var(--c-card2) !important;
  border: 1px solid var(--c-border) !important;
  border-left: none !important;
  color: var(--c-text2) !important;
  font-size: 0.8rem;
  padding: 0 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0 !important;
}


/* ════════════════════════════════════
   DASHBOARD SIDEBAR
   ════════════════════════════════════ */
.hn_dashboard {
  display: flex;
  min-height: 100vh;
}

.hn_dashboard_sidebar {
  width: 252px;
  background: var(--c-bg2);
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  transition: left var(--dur) var(--ease);
}

.hn_dashboard_sidebar::-webkit-scrollbar {
  width: 3px;
}

.hn_dashboard_sidebar::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 2px;
}

.hn_dashboard_sidebar .hn_logo {
  display: flex;
  align-items: center;
  padding: 22px 18px;
  border-bottom: 1px solid var(--c-border);
}

.hn_dashboard_sidebar .hn_logo img {
  height: 30px;
}

.nx-sidebar-user {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.nx-sidebar-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.nx-sidebar-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn_dashboard_sidebar_close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  border-radius: var(--r-sm);
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
}

/* sidebar nav */
.hn_sidebar_menu {
  padding: 6px 10px;
  flex: 1;
}

.hn_sidebar_menu>li {
  margin-bottom: 2px;
}

.hn_sidebar_menu>li>a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  color: var(--c-text2);
  font-size: 0.845rem;
  font-weight: 500;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.hn_sidebar_menu>li>a i:first-child {
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.hn_sidebar_menu>li>a .arrow-icon {
  margin-left: auto;
  font-size: 0.65rem;
  transition: transform var(--dur) var(--ease);
}

.hn_sidebar_menu>li>a:hover,
.hn_sidebar_menu>li>a.active {
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.hn_sidebar_menu>li>a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--c-cyan);
  border-radius: 0 3px 3px 0;
}

.hn_sidebar_menu>li>a.active .arrow-icon {
  transform: rotate(90deg);
}

.hn_sidebar_submenu {
  display: none;
  padding: 2px 0 4px 30px;
}

.hn_sidebar_submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--c-text3);
  transition: all var(--dur) var(--ease);
}

.hn_sidebar_submenu li a:hover {
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.nx-sidebar-sep {
  height: 1px;
  background: var(--c-border);
  margin: 8px 10px;
}

/* ─── dashboard topbar ─── */
.hn_dashboard_navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 252px;
}

.hn_dashboard_navbar h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

.mobile-back-btn {
  display: none;
}

/* dashboard content */
.hn_dashboard_main {
  margin-left: 252px;
  flex: 1;
  min-height: 100vh;
}

.nx-content-wrap {
  padding: 24px;
}

/* ─── mobile bottom nav ─── */
.mobile-app-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  z-index: 99;
  padding: 6px 0 4px;
}

.mobile-app-menu a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 4px;
  color: var(--c-text3);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--dur) var(--ease);
  text-decoration: none;
}

.mobile-app-menu a i {
  font-size: 1.15rem;
}

.mobile-app-menu a:hover,
.mobile-app-menu a.active {
  color: var(--c-cyan);
}

@media (max-width: 991px) {
  .hn_dashboard_sidebar {
    left: -270px;
  }

  .hn_dashboard_sidebar.active {
    left: 0;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .hn_dashboard_sidebar_close {
    display: flex;
  }

  .hn_dashboard_main {
    margin-left: 0;
    padding-bottom: 68px;
  }

  .hn_dashboard_navbar {
    margin-left: 0;
  }

  .mobile-app-menu {
    display: flex;
  }
}


/* ════════════════════════════════════
   SHORT LINKS / QUICK ACTIONS
   ════════════════════════════════════ */
.nx-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  text-align: center;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  color: var(--c-text2);
}

.nx-quick-link i {
  font-size: 1.35rem;
  color: var(--c-cyan);
  margin-bottom: 6px;
}

.nx-quick-link p {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--c-text2);
}

.nx-quick-link:hover {
  border-color: var(--c-cyan);
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  transform: translateY(-3px);
}

/* compat */
.short-link-item {
  @extend .nx-quick-link;
}


/* ════════════════════════════════════
   TABLES
   ════════════════════════════════════ */
.table {
  color: var(--c-text2);
  border-color: var(--c-border);
  font-size: 0.85rem;
  width: 100%;
}

.table thead th {
  background: var(--c-card2);
  color: var(--c-text3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--c-border);
  padding: 13px 16px;
  white-space: nowrap;
}

.table tbody td {
  border-bottom: 1px solid var(--c-border);
  padding: 13px 16px;
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.hn_main_table {
  @extend .table;
}

.table-responsive {
  overflow-x: auto;
}


/* ════════════════════════════════════
   BADGES
   ════════════════════════════════════ */
.badge {
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.badge.bg-success,
.badge-success {
  background: var(--c-green-dim) !important;
  color: var(--c-green) !important;
}

.badge.bg-danger,
.badge-danger {
  background: var(--c-red-dim) !important;
  color: var(--c-red) !important;
}

.badge.bg-warning,
.badge-warning {
  background: var(--c-amber-dim) !important;
  color: var(--c-amber) !important;
}

.badge.bg-info {
  background: var(--c-cyan-dim) !important;
  color: var(--c-cyan) !important;
}

.badge.bg-primary {
  background: var(--c-violet-dim) !important;
  color: var(--c-violet) !important;
}

.badge.bg-secondary {
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--c-text2) !important;
}


/* ════════════════════════════════════
   ALERTS
   ════════════════════════════════════ */
.alert {
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 0.85rem;
  border-width: 1px;
  border-style: solid;
}

.alert-success {
  background: var(--c-green-dim);
  border-color: rgba(72, 187, 120, 0.3);
  color: var(--c-green);
}

.alert-danger {
  background: var(--c-red-dim);
  border-color: rgba(252, 129, 129, 0.3);
  color: var(--c-red);
}

.alert-warning {
  background: var(--c-amber-dim);
  border-color: rgba(246, 173, 85, 0.3);
  color: var(--c-amber);
}

.alert-info {
  background: var(--c-cyan-dim);
  border-color: var(--c-cyan-glow);
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   BREADCRUMB / PAGE BANNER
   ════════════════════════════════════ */
.hn_page_banner {
  padding: 130px 0 60px;
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.hn_page_banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(2px);
}

.hn_page_banner>* {
  position: relative;
  z-index: 1;
}

.hn_page_banner_title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-text);
}

.hn_page_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.hn_page_breadcrumb li {
  color: var(--c-text3);
}

.hn_page_breadcrumb li a {
  color: var(--c-cyan);
}

.hn_page_breadcrumb li+li::before {
  content: '/';
  margin-right: 8px;
  color: var(--c-text3);
}

/* compat breadcrumb */
.breadcrumbs {
  padding: 130px 0 60px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.breadcrumbs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, 0.75);
}

.breadcrumbs .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs h2 {
  color: var(--c-text);
  font-size: 2rem;
}

.breadcrumbs ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.breadcrumbs ol li {
  color: var(--c-text3);
  font-size: 0.82rem;
}

.breadcrumbs ol li a {
  color: var(--c-cyan);
}

.breadcrumbs ol li+li::before {
  content: '/';
  margin-right: 8px;
}


/* ════════════════════════════════════
   MODALS
   ════════════════════════════════════ */
.modal-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.modal-header {
  border-bottom: 1px solid var(--c-border);
  padding: 20px 24px;
}

.modal-title {
  color: var(--c-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid var(--c-border);
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-close {
  filter: invert(1) opacity(0.4);
}

.btn-secondary {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  border-radius: var(--r-pill);
  padding: 9px 22px;
  font-size: 0.85rem;
  transition: all var(--dur) var(--ease);
}

.btn-secondary:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.close {
  background: none;
  border: none;
  color: var(--c-text2);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}

.close:hover {
  color: var(--c-red);
}

/* payment method toggle */
.nx-pay-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nx-pay-method-opt {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nx-pay-method-opt.selected {
  border-color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.nx-pay-method-opt i {
  font-size: 1.1rem;
  color: var(--c-cyan);
}

.nx-pay-method-opt span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
}


/* ════════════════════════════════════
   DROPDOWN
   ════════════════════════════════════ */
.dropdown-menu {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  min-width: 160px;
}

.dropdown-item {
  color: var(--c-text2);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.845rem;
  transition: all var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.dropdown-divider {
  border-color: var(--c-border);
  margin: 4px 0;
}


/* ════════════════════════════════════
   PAGINATION
   ════════════════════════════════════ */
.pagination {
  gap: 4px;
}

.pagination .page-link {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  border-radius: var(--r-sm) !important;
  padding: 7px 13px;
  font-size: 0.82rem;
  transition: all var(--dur) var(--ease);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  color: #fff;
  box-shadow: 0 4px 14px var(--c-cyan-glow);
}


/* ════════════════════════════════════
   PROGRESS BAR
   ════════════════════════════════════ */
.progress {
  height: 8px;
  background: var(--c-card2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  border-radius: 4px;
  transition: width 0.6s var(--ease);
}

.progress-bar.bg-success {
  background: linear-gradient(90deg, var(--c-green), var(--c-cyan)) !important;
}

.progress-bar.bg-info {
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet)) !important;
}


/* ════════════════════════════════════
   REFERRAL COPY BAR
   ════════════════════════════════════ */
.nx-ref-bar {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color var(--dur) var(--ease);
}

.nx-ref-bar:hover {
  border-color: var(--c-border-glow);
}

.nx-ref-bar i {
  color: var(--c-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nx-ref-bar-text {
  color: var(--c-text2);
  font-size: 0.845rem;
  word-break: break-all;
  flex: 1;
}


/* ════════════════════════════════════
   PRELOADER / BACK TO TOP
   ════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--c-bg, #05080f);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .45s ease;
}

#preloader.pre-done {
  opacity: 0;
  pointer-events: none;
}

/* centered box */
.pre-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* favicon image */
.pre-favicon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: pre-pulse 1.6s ease-in-out infinite;
}

/* spinning ring around the favicon */
.pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .07);
  border-top-color: var(--theme-color, #63B3ED);
  border-right-color: var(--theme-color, #63B3ED);
  animation: pre-spin .9s linear infinite;
}

@keyframes pre-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pre-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .75;
    transform: scale(.92);
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 20px var(--c-cyan-glow);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}


/* ════════════════════════════════════
   BLOG
   ════════════════════════════════════ */
.nx-blog-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  height: 100%;
}

.nx-blog-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
}

.nx-blog-thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.nx-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.nx-blog-card:hover .nx-blog-thumb img {
  transform: scale(1.04);
}

.nx-blog-body {
  padding: 22px;
}

.nx-blog-cat {
  display: inline-block;
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.nx-blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.nx-blog-excerpt {
  font-size: 0.845rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.nx-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--c-text3);
}

.nx-blog-meta i {
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   TREE (referral)
   ════════════════════════════════════ */
.ref-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-cyan-glow);
}

.no-level-found-icon,
.no-data-icon,
.current-status-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text3);
}

.current-status-icon {
  background: var(--c-amber-dim);
  color: var(--c-amber);
  border-color: rgba(246, 173, 85, 0.3);
}

/* ─── site-color / color-change compat ─── */
.site-color,
.color-change,
.theme-color {
  color: var(--c-cyan) !important;
}

.text-white {
  color: var(--c-text) !important;
}

.text-dark {
  color: var(--c-bg) !important;
}

/* ─── next-target-list ─── */
.next-target-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.next-target-list li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.next-target-list li:last-child {
  border-bottom: none;
}

/* ─── img-choose-div ─── */
.img-choose-div {
  text-align: center;
}

.img-choose-div img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-border-glow);
  margin: 0 auto 14px;
  display: block;
}

/* ─── staking plan ─── */
.nx-staking {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px;
  transition: all var(--dur) var(--ease);
  height: 100%;
}

.nx-staking:hover {
  border-color: var(--c-cyan);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99, 179, 237, 0.1);
}

.nx-staking-apy {
  font-family: var(--f-mono);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--c-green);
  line-height: 1;
}

/* ─── misc utilities ─── */
.gap-sm-3 {
  gap: 1rem;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

/* ─── color picker / form override ─── */
.form-control.text-white {
  color: var(--c-text) !important;
}

/* Dashboard body part compat */
.dashboard-body-part {
  /* noop – content handled by nx-content-wrap */
}


/* ════════════════════════════════════
   RESPONSIVE HELPERS
   ════════════════════════════════════ */
@media (max-width: 575px) {
  .nx-section {
    padding: 56px 0;
  }

  .hn_auth_main_body {
    padding: 24px;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
}


/* ════════════════════════════════════
   REFERRAL TREE
   ════════════════════════════════════ */
.nx-tree-wrap {
  display: inline-block;
  padding: 20px;
  min-width: 100%;
}

.nx-tree,
.nx-tree ul {
  padding-top: 20px;
  position: relative;
  transition: all .5s;
}

.nx-tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 8px 0;
  transition: all .5s;
}

.nx-tree li::before,
.nx-tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid var(--c-border);
  width: 50%;
  height: 20px;
}

.nx-tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid var(--c-border);
}

.nx-tree li:only-child::after,
.nx-tree li:only-child::before {
  display: none;
}

.nx-tree li:only-child {
  padding-top: 0;
}

.nx-tree li:first-child::before,
.nx-tree li:last-child::after {
  border: 0 none;
}

.nx-tree li:last-child::before {
  border-right: 1px solid var(--c-border);
  border-radius: 0 5px 0 0;
}

.nx-tree li:first-child::after {
  border-radius: 5px 0 0 0;
}

.nx-tree ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid var(--c-border);
  width: 0;
  height: 20px;
}

.nx-tree li a {
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  text-decoration: none;
  display: inline-block;
  background: var(--c-card);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  min-width: 120px;
}

.nx-tree li a:hover {
  border-color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.nx-tree li a .ref-img {
  display: block;
  margin: 0 auto 6px;
}

.nx-tree li a p {
  font-size: .75rem;
  color: var(--c-text2);
  margin: 0;
}

.nx-tree li a p span {
  display: block;
  font-size: .68rem;
  color: var(--c-cyan);
  margin-top: 2px;
}


/* ════════════════════════════════════
   SECTION COMPAT (pagebuilder sections)
   ════════════════════════════════════ */
.pagebuilder-content section,
.pagebuilder-content .section {
  padding: 80px 0;
}

/* plan item compatibility from pagebuilder */
.hn_plan_item_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
}

.hn_plan_item_card:hover {
  border-color: var(--c-cyan);
  transform: translateY(-4px);
}

/* Heading sizes used in sections */
.h2,
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.h3,
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.h4,
h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.h5,
h5 {
  font-size: 1.05rem;
}

.h6,
h6 {
  font-size: 0.9rem;
}

/* Blog comments compat */
.single-comment {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 18px;
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.single-comment .thumb img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-share-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Color utility for pagebuilder sections */
.bg-main {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet)) !important;
}

.text-main {
  color: var(--c-cyan) !important;
}

/* iziToast dark override */
.iziToast {
  border-radius: var(--r-sm) !important;
  font-family: var(--f-body) !important;
}

/* Form error text */
.text-danger,
.invalid-feedback {
  color: var(--c-red) !important;
  font-size: 0.78rem;
}

/* nx-btn outline (used in some blade files) */
.hn_btn_outline,
.btn.hn_btn_outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-cyan);
  border: 1.5px solid var(--c-cyan);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 22px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.hn_btn_outline:hover,
.btn.hn_btn_outline:hover {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  transform: translateY(-2px);
}


/* ════════════════════════════════════
   UTILITY CLASSES  (replaces all inline styles in blade files)
   ════════════════════════════════════ */

/* font sizes */
.fs-10 {
  font-size: 0.625rem !important;
}

.fs-11 {
  font-size: 0.6875rem !important;
}

.fs-12 {
  font-size: 0.75rem !important;
}

.fs-13 {
  font-size: 0.8125rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-15 {
  font-size: 0.9375rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

/* overflow */
.overflow-x-auto {
  overflow-x: auto !important;
}

/* border using CSS var */
.nx-border-bottom {
  border-bottom: 1px solid var(--c-border) !important;
}

.nx-border-top {
  border-top: 1px solid var(--c-border) !important;
}

/* icon accent colors (used in social buttons, etc.) */
.icon-google {
  color: #EA4335 !important;
}

.icon-facebook {
  color: #1877F2 !important;
}

.icon-amber {
  color: var(--c-amber) !important;
}

.icon-green {
  color: var(--c-green) !important;
}

.icon-red {
  color: var(--c-red) !important;
}

.icon-violet {
  color: var(--c-violet) !important;
}

/* badge/status icon circles  */
.nx-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.nx-icon-circle-cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-icon-circle-green {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-icon-circle-amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-icon-circle-red {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.nx-icon-circle-violet {
  background: var(--c-violet-dim);
  color: var(--c-violet);
}

.nx-icon-circle-blue {
  background: rgba(99, 179, 237, .12);
  color: #63b3ed;
}

.nx-icon-circle--lg {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
}

/* info/notice card row */
.nx-notice-row {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-notice-row i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.nx-notice-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}

.nx-notice-sub {
  font-size: 0.78rem;
  color: var(--c-text3);
}

/* vip info list  */
.nx-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nx-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.85rem;
}

.nx-info-list li:last-child {
  border-bottom: none;
}

.nx-info-list li .lbl {
  color: var(--c-text2);
}

.nx-info-list li .val {
  color: var(--c-text);
  font-weight: 600;
  font-family: var(--f-mono);
}

.nx-info-list li .val-amber {
  color: var(--c-amber);
  font-weight: 700;
  font-family: var(--f-mono);
}

.nx-info-list li .val-cyan {
  color: var(--c-cyan);
  font-weight: 700;
  font-family: var(--f-mono);
}

.nx-info-list li .val-green {
  color: var(--c-green);
  font-weight: 700;
  font-family: var(--f-mono);
}

/* forgot-password back link  */
.nx-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text2);
  font-size: 0.875rem;
  transition: color var(--dur) var(--ease);
}

.nx-back-link:hover {
  color: var(--c-cyan);
}

/* auth secondary text  */
.nx-auth-footer-text {
  font-size: 0.875rem;
  color: var(--c-text2);
  text-align: center;
  margin-top: 14px;
}

/* conversation bubble (ticket show) */
.nx-bubble-wrap {
  flex: 1;
}

.nx-bubble {
  display: inline-block;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  max-width: 90%;
  text-align: left;
}

.nx-bubble p {
  font-size: 0.875rem;
  color: var(--c-text2);
  margin: 0;
}

.nx-bubble-meta {
  font-size: 0.72rem;
  color: var(--c-text3);
  margin-top: 6px;
}

.nx-bubble-mine {
  background: var(--c-cyan-dim);
  border-color: var(--c-cyan-glow);
}

/* auth layout panel decorations */
.nx-auth-stat-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.nx-auth-stat-num {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.nx-auth-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ─────────────────────────────────────
   BLOG DETAIL  (nx-blog-detail-*)
   ───────────────────────────────────── */
.nx-blog-detail {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.nx-blog-detail-thumb {
  width: 100%;
  overflow: hidden;
}

.nx-blog-detail-thumb img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.nx-blog-detail:hover .nx-blog-detail-thumb img {
  transform: scale(1.02);
}

.nx-blog-detail-body {
  padding: 36px 40px;
}

@media (max-width: 767px) {
  .nx-blog-detail-body {
    padding: 24px 20px;
  }
}

.nx-blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.nx-blog-detail-cat {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border: 1px solid var(--c-cyan-glow);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 12px;
}

.nx-blog-detail-dot {
  color: var(--c-text3);
  font-size: 1rem;
  line-height: 1;
}

.nx-blog-detail-date {
  font-size: 0.8rem;
  color: var(--c-text3);
}

.nx-blog-detail-title {
  font-family: var(--f-head);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.3;
  margin: 0 0 20px;
}

.nx-blog-detail-divider {
  height: 1px;
  background: var(--c-border);
  margin: 20px 0 28px;
}

.nx-blog-detail-content {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--c-text2);
}

.nx-blog-detail-content h1,
.nx-blog-detail-content h2,
.nx-blog-detail-content h3,
.nx-blog-detail-content h4 {
  font-family: var(--f-head);
  color: var(--c-text);
  margin: 28px 0 12px;
}

.nx-blog-detail-content p {
  margin-bottom: 16px;
}

.nx-blog-detail-content img {
  max-width: 100%;
  border-radius: var(--r-md);
  margin: 16px 0;
}

.nx-blog-detail-content a {
  color: var(--c-cyan);
  text-decoration: underline;
}

.nx-blog-detail-content blockquote {
  border-left: 3px solid var(--c-cyan);
  margin: 24px 0;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text2);
  font-style: italic;
}

.nx-blog-detail-content ul,
.nx-blog-detail-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--c-text2);
}

.nx-blog-detail-content li {
  margin-bottom: 6px;
}

.nx-blog-detail-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-border);
  margin-top: 32px;
  padding-top: 24px;
}

.nx-blog-detail-share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nx-blog-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nx-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.nx-social-btn:hover {
  background: var(--c-cyan-dim);
  border-color: var(--c-cyan-glow);
  color: var(--c-cyan);
  transform: translateY(-2px);
}

/* ── Comments ── */
.nx-blog-comments {
  margin-top: 36px;
}

.nx-blog-comments-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}

.nx-comment-card {
  display: flex;
  gap: 14px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s var(--ease);
}

.nx-comment-card:hover {
  border-color: var(--c-border-glow);
}

.nx-comment-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}

.nx-comment-body {
  flex: 1;
  min-width: 0;
}

.nx-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.nx-comment-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
}

.nx-comment-date {
  font-size: 0.75rem;
  color: var(--c-text3);
}

.nx-comment-text {
  font-size: 0.88rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0;
}

/* ── Comment Form ── */
.nx-comment-form-wrap {
  margin-top: 32px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

@media (max-width: 767px) {
  .nx-comment-form-wrap {
    padding: 20px 18px;
  }
}

.nx-comment-form-title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 20px;
}

.nx-comment-textarea {
  background: var(--c-bg) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-sm) !important;
  color: var(--c-text) !important;
  resize: vertical;
  font-size: 0.9rem;
  transition: border-color 0.2s var(--ease);
}

.nx-comment-textarea:focus {
  border-color: var(--c-cyan) !important;
  box-shadow: 0 0 0 3px var(--c-cyan-dim) !important;
  outline: none;
}

.nx-comment-login-notice {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--c-text3);
}

.nx-comment-login-notice a {
  color: var(--c-cyan);
  font-weight: 600;
}

/* ── Sidebar ── */
.nx-sidebar-widget {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.nx-sidebar-widget-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
  letter-spacing: 0.3px;
}

.nx-sidebar-posts {
  padding: 8px 0;
}

.nx-sidebar-post {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s var(--ease);
}

.nx-sidebar-post:last-child {
  border-bottom: none;
}

.nx-sidebar-post:hover {
  background: rgba(255,255,255,0.03);
}

.nx-sidebar-post-thumb {
  width: 64px;
  height: 52px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.nx-sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.nx-sidebar-post:hover .nx-sidebar-post-thumb img {
  transform: scale(1.06);
}

.nx-sidebar-post-info {
  flex: 1;
  min-width: 0;
}

.nx-sidebar-post-title {
  font-size: 0.84rem;
  color: var(--c-text2);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 5px;
  transition: color 0.2s;
}

.nx-sidebar-post:hover .nx-sidebar-post-title {
  color: var(--c-cyan);
}

.nx-sidebar-post-date {
  font-size: 0.73rem;
  color: var(--c-text3);
}

/* Keep old class working (blog-share-list used elsewhere) */
.blog-details-thumb {
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.blog-details-thumb img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Calculation table accent */
#profit-table td:first-child {
  color: var(--c-text2);
  width: 50%;
}

#profit-table td:last-child {
  color: var(--c-text);
  font-weight: 600;
}

#profit-table tr:last-child td:last-child {
  color: var(--c-cyan);
  font-size: 1.05rem;
}

/* Form label inline required star  */
.nx-required {
  color: var(--c-red);
  font-size: 0.75rem;
}

/* Data-header responsive table  */
@media (max-width: 767px) {
  .table.hn_main_table thead {
    display: none;
  }

  .table.hn_main_table tr {
    display: block;
    margin-bottom: 12px;
    background: var(--c-card);
    border-radius: var(--r-sm);
    border: 1px solid var(--c-border);
    overflow: hidden;
  }

  .table.hn_main_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.82rem;
  }

  .table.hn_main_table td:last-child {
    border-bottom: none;
  }

  .table.hn_main_table td::before {
    content: attr(data-header);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-text3);
    flex-shrink: 0;
  }
}

/* Print */
@media print {

  .hn_dashboard_sidebar,
  .hn_dashboard_navbar,
  .mobile-app-menu,
  .back-to-top {
    display: none !important;
  }

  .hn_dashboard_main {
    margin-left: 0 !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* featured VIP card */
.nx-featured {
  border-color: var(--c-cyan) !important;
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.06) 0%, var(--c-card) 100%);
}

/* ─── stat-link color variants ─── */
.nx-stat-link-green {
  color: var(--c-green) !important;
}

.nx-stat-link-violet {
  color: var(--c-violet) !important;
}

.nx-stat-link-amber {
  color: var(--c-amber) !important;
}

.nx-stat-link-red {
  color: var(--c-red) !important;
}

/* ─── chart container ─── */
.nx-chart-wrap {
  height: 240px;
  position: relative;
}

/* ─── progress bar dynamic width set via class name pattern ─── */
/* progress-bar width is always set dynamically ({{ $selfP }}%), must stay inline */

/* ─── blog sidebar recent post thumb ─── */
.nx-recent-thumb {
  width: 60px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

/* ─── 2fa verify card ─── */
.nx-auth-card-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

/* ─── ticket conversation ─── */
.nx-convo-wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.nx-convo-reverse {
  flex-direction: row-reverse;
}

.nx-convo-bubble {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: inline-block;
  max-width: 90%;
  text-align: left;
}

.nx-convo-mine {
  background: var(--c-cyan-dim);
  border-color: var(--c-cyan-glow);
}

.nx-convo-text {
  font-size: 0.875rem;
  color: var(--c-text2);
  margin: 0;
}

.nx-convo-meta {
  font-size: 0.72rem;
  color: var(--c-text3);
  margin-top: 6px;
}

/* ─── staking ─── */
.nx-staking-detail {
  font-size: 0.85rem;
  color: var(--c-text2);
}

.nx-staking-detail span {
  color: var(--c-text);
  font-weight: 600;
}

/* ─── invest page payment label ─── */
.nx-pay-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* ─── auth image panel stat ─── */
.nx-panel-num-cyan {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-cyan);
}

.nx-panel-num-green {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-green);
}

.nx-panel-num-violet {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-violet);
}

/* ─── withdraw instruction ─── */
.nx-withdraw-ins {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ─── calculation table ─── */
.nx-calc-total {
  font-size: 1.1rem;
  color: var(--c-cyan) !important;
  font-weight: 700 !important;
}

/* ─── sidebar logout link ─── */
.nx-logout-link {
  color: var(--c-red) !important;
}

.nx-logout-link i {
  color: var(--c-red) !important;
}

/* calc table col */
.nx-calc-col-label {
  width: 50%;
  color: var(--c-text2);
}


/* ════════════════════════════════════
   ERROR PAGES (500 / 404 / 419 / 503)
   ════════════════════════════════════ */
.nx-error-wrap {
  text-align: center;
  padding: 10px 0 20px;
}

.nx-error-code {
  font-family: var(--f-head);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.nx-error-title {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-error-msg {
  font-size: 0.875rem;
  color: var(--c-text2);
  margin-bottom: 0;
}


/* ════════════════════════════════════
   DASHBOARD IMPROVEMENTS
   ════════════════════════════════════ */

/* Stat card glow accent per color */
.nx-stat .nx-stat-icon {
  transition: transform var(--dur) var(--ease);
}

.nx-stat:hover .nx-stat-icon {
  transform: scale(1.08);
}

/* Sidebar active item stronger indicator */
.hn_sidebar_menu>li>a.active {
  color: var(--c-cyan);
  background: linear-gradient(90deg, var(--c-cyan-dim), transparent);
}

/* Sidebar user avatar — use actual user photo if available */
.nx-sidebar-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Topbar language/profile buttons */
.hn_lang_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  font-size: 0.95rem;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.hn_lang_btn:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* Dropdown menus in dashboard topbar */
.hn_dashboard_navbar .dropdown-menu {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 6px;
  min-width: 170px;
  box-shadow: var(--shadow-card);
  margin-top: 6px;
}

.hn_dashboard_navbar .dropdown-item {
  border-radius: 6px;
  font-size: 0.845rem;
  color: var(--c-text2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur) var(--ease);
}

.hn_dashboard_navbar .dropdown-item:hover,
.hn_dashboard_navbar .dropdown-item:focus {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.hn_dashboard_navbar .dropdown-divider {
  border-color: var(--c-border);
  margin: 4px 0;
}

/* Card header border-bottom tighten */
.hn_card .card-header {
  background: transparent;
  border-bottom: 1px solid var(--c-border);
}

/* VIP & Next-Level card inner row */
.nx-card-inner {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* Progress bars */
.progress {
  height: 6px;
  background: var(--c-card2);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.progress-bar {
  border-radius: var(--r-pill);
  transition: width 0.6s var(--ease);
}

/* Referral link bar */
.nx-ref-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  transition: border-color var(--dur) var(--ease);
}

.nx-ref-bar-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--c-text2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}

/* Chart canvas sizing */
.nx-chart-wrap canvas {
  max-height: 240px;
}

/* fs-13 / fs-12 helpers */
.fs-13 {
  font-size: 0.8125rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

/* next-target-list improvements */
.next-target-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.next-target-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.next-target-list li:last-child {
  border-bottom: none;
}

/* Badge overrides */
.badge.bg-info {
  background: var(--c-cyan-dim) !important;
  color: var(--c-cyan) !important;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.badge.bg-success {
  background: var(--c-green-dim) !important;
  color: var(--c-green) !important;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

/* Sidebar mobile overlay backdrop */
@media (max-width: 991px) {
  .hn_dashboard_sidebar.active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
  }
}

/* ─── Quick-link color modifier classes ─── */
/* Base icon color is already var(--c-cyan) from .nx-quick-link i */
/* Use explicit modifier classes instead of fragile :nth-child selectors */

/* ─── Smooth sidebar scrollbar  ─── */
.hn_dashboard_sidebar {
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}


/* ════════════════════════════════════
   HOMEPAGE BANNER / HERO SECTION
   (hn_banner_* legacy class support)
   ════════════════════════════════════ */
.hn_banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--c-bg);
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}

.hn_banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(99, 179, 237, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(159, 122, 234, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hn_banner>.container {
  position: relative;
  z-index: 1;
}

.hn_banner_title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 0;
}

.hn_banner_title img {
  display: block;
  margin-bottom: 10px;
  height: 28px;
  width: auto;
}

.hn_banner_title .color-text,
.hn_banner_title .theme-color {
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hn_banner_details {
  font-size: 1rem;
  color: var(--c-text2);
  max-width: 520px;
  line-height: 1.75;
}

.hn_banner_bottom_title {
  font-size: 0.95rem;
  color: var(--c-text2);
}

.hn_banner_bottom h4 {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Floating side image */
.hn_banner_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 46%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 60px rgba(99, 179, 237, 0.12));
  animation: hn-float 5s ease-in-out infinite;
}

@keyframes hn-float {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(calc(-50% - 14px)) translateX(-6px);
  }
}

@media (max-width: 991px) {
  .hn_banner {
    min-height: auto;
    padding: 100px 0 60px;
    text-align: center;
  }

  .hn_banner_details {
    margin: 0 auto;
  }

  .hn_banner_img {
    display: none;
  }

  .hn_banner_bottom {
    justify-content: center;
  }

  .hn_banner .d-flex.gap-4 {
    justify-content: center;
  }
}


/* ════════════════════════════════════
   MISSING / BROKEN IMAGE FALLBACK
   Shows a styled placeholder when
   an <img> src returns 404/empty
   ════════════════════════════════════ */
img:not([src]),
img[src=""],
img[src$="null"],
img[src$="undefined"] {
  visibility: hidden;
}

/* ════════════════════════════════════
   SECTION HEADINGS (generic)
   ════════════════════════════════════ */
.hn_section_title {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
}

.hn_section_title .color-text,
.hn_section_title .theme-color {
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hn_section_desc {
  font-size: 0.95rem;
  color: var(--c-text2);
  line-height: 1.75;
  max-width: 560px;
}


/* ════════════════════════════════════
   PLAN CARDS  (not_editable/all_plan)
   ════════════════════════════════════ */
.hn_plan_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--dur) var(--ease);
  height: 100%;
}

.hn_plan_card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hn_plan_card.nx-featured {
  border-color: var(--c-cyan);
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.06) 0%, var(--c-card) 100%);
}

.hn_plan_card_title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.hn_plan_card_price {
  font-family: var(--f-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-cyan);
  line-height: 1;
}

.hn_plan_card_price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text3);
}

.hn_plan_feature_list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.hn_plan_feature_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--c-text2);
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
}

.hn_plan_feature_list li:last-child {
  border-bottom: none;
}

.hn_plan_feature_list li i {
  color: var(--c-green);
  font-size: 0.9rem;
}


/* ════════════════════════════════════
   TESTIMONIAL CARDS
   ════════════════════════════════════ */
.hn_testimonial_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all var(--dur) var(--ease);
}

.hn_testimonial_card:hover {
  border-color: var(--c-border-glow);
}

.hn_testimonial_stars i {
  color: var(--c-amber);
  font-size: 0.85rem;
}

.hn_testimonial_name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-text);
}

.hn_testimonial_role {
  font-size: 0.78rem;
  color: var(--c-text3);
}


/* ════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════ */
.hn_faq_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.hn_faq_item:hover,
.hn_faq_item.open {
  border-color: var(--c-border-glow);
}

.hn_faq_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
  cursor: pointer;
  gap: 12px;
}

.hn_faq_title i {
  color: var(--c-cyan);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}

.hn_faq_item.open .hn_faq_title i {
  transform: rotate(45deg);
}

.hn_faq_body {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.75;
  display: none;
}

.hn_faq_item.open .hn_faq_body {
  display: block;
}


/* ════════════════════════════════════
   HOW IT WORKS SECTION
   ════════════════════════════════════ */
.hn_step_card {
  text-align: center;
  padding: 32px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}

.hn_step_card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hn_step_num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.hn_step_title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.hn_step_desc {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
}


/* ════════════════════════════════════
   INVESTOR / STATS COUNTER SECTION
   ════════════════════════════════════ */
.hn_counter_card {
  text-align: center;
  padding: 28px 20px;
}

.hn_counter_num {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hn_counter_label {
  font-size: 0.85rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}


/* ════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════ */
.hn_contact_info_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease);
  margin-bottom: 12px;
}

.hn_contact_info_item:hover {
  border-color: var(--c-border-glow);
}

.hn_contact_icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hn_contact_label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 3px;
}

.hn_contact_value {
  font-size: 0.9rem;
  color: var(--c-text);
  font-weight: 500;
}


/* ════════════════════════════════════
   BLOG CARDS
   ════════════════════════════════════ */
.hn_blog_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hn_blog_card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hn_blog_thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--c-card2);
}

.hn_blog_body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hn_blog_meta {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hn_blog_title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hn_blog_excerpt {
  font-size: 0.855rem;
  color: var(--c-text2);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hn_blog_read_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-cyan);
  margin-top: 14px;
  transition: gap var(--dur) var(--ease);
}

.hn_blog_read_more:hover {
  gap: 10px;
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   NEWSLETTER SECTION
   ════════════════════════════════════ */
.hn_newsletter {
  background: linear-gradient(135deg, var(--c-card) 0%, var(--c-card2) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.hn_newsletter::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  filter: blur(60px);
  pointer-events: none;
}

.nx-subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.nx-subscribe-form .form-control {
  flex: 1;
}

@media (max-width: 575px) {
  .nx-subscribe-form {
    flex-direction: column;
  }

  .hn_newsletter {
    padding: 32px 20px;
  }
}


/* ════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════ */
.hn_why_card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}

.hn_why_card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-3px);
}

.hn_why_icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hn_why_title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.hn_why_desc {
  font-size: 0.855rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin: 0;
}


/* ════════════════════════════════════
   AFFILIATE STEPS
   ════════════════════════════════════ */
.hn_affiliate_step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.hn_affiliate_step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-cyan-glow), transparent);
}

.hn_affiliate_num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════
   HOLIDAY SECTION
   ════════════════════════════════════ */
.hn_holiday_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.hn_holiday_name {
  color: var(--c-text);
  font-weight: 500;
}

.hn_holiday_date {
  color: var(--c-text3);
  font-size: 0.8rem;
}


/* ════════════════════════════════════
   RANKING SECTION
   ════════════════════════════════════ */
.hn_rank_item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  transition: border-color var(--dur) var(--ease);
}

.hn_rank_item:hover {
  border-color: var(--c-border-glow);
}

.hn_rank_num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hn_rank_num.gold {
  background: rgba(246, 173, 85, 0.12);
  color: var(--c-amber);
}

.hn_rank_num.silver {
  background: rgba(148, 163, 184, 0.12);
  color: #94A3B8;
}

.hn_rank_num.bronze {
  background: rgba(205, 133, 63, 0.12);
  color: #CD853F;
}

.hn_rank_name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
  flex: 1;
}

.hn_rank_amount {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   SECTION UTILITIES
   ════════════════════════════════════ */
.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.s-pt-120 {
  padding-top: 120px;
}

.s-pb-120 {
  padding-bottom: 120px;
}

.color-text,
.text-color {
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.p-font {
  font-family: var(--f-body);
}

.non-editable-area {
  position: relative;
}

.divider {
  height: 1px;
  background: var(--c-border);
  margin: 48px 0;
}

/* ─── Section Header ─── */
.hn_block_header {
  margin-bottom: 48px;
}

.section-top {
  margin-bottom: 32px;
}

.section-top-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-cyan);
  margin-bottom: 10px;
}

.section-top-title::before,
.section-top-title::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--c-cyan);
}

.section-title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
}

/* ─── Block Title with image decoration ─── */
.hn_block_title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  position: relative;
  margin-bottom: 16px;
}

.hn_block_title img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
  margin-top: 4px;
}

/* spans are inline accent words — must NOT be block */
.hn_block_title span {
  display: inline;
}

.img_el_left img {
  order: -1;
}

.img_el_right img {
  order: 1;
}

.hn_block_header p {
  font-size: 0.95rem;
  color: var(--c-text2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════ */
.hn_about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hn_about_img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hn_about_img img:first-child {
  position: relative;
  z-index: 1;
  max-width: 100%;
  filter: drop-shadow(0 0 40px rgba(99, 179, 237, 0.15));
}

.hn_about_img img:last-child {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0.4;
  filter: blur(12px);
  z-index: 0;
}

.hn_about_content {}

.hn_about_shape {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 40%;
  opacity: 0.04;
  pointer-events: none;
}


/* ════════════════════════════════════
   PLAN ITEMS
   ════════════════════════════════════ */
.hn_plan {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_plan_shape {
  position: absolute;
  right: -80px;
  top: 60px;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_plan_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}

.hn_plan_item:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(99, 179, 237, 0.12);
}

.hn_plan_item_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.08;
}

.hn_plan_item_top {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  z-index: 1;
}

.hn_plan_item_top>img:not(.hn_plan_item_img) {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(99, 179, 237, 0.3));
}

.hn_plan_item_title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.hn_plan_item_price {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-cyan);
}

.hn_plan_item_feature {
  padding: 12px 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hn_plan_item_feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hn_plan_item_feature ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.845rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.hn_plan_item_feature ul li:last-child {
  border-bottom: none;
}

.hn_plan_item_feature ul li span:last-child {
  color: var(--c-text);
  font-weight: 600;
  text-align: right;
}

.hn_plan_item_bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
  position: relative;
  z-index: 1;
}

.level-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}


/* ════════════════════════════════════
   BLOG ITEMS
   ════════════════════════════════════ */
.hn_blog {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_blog_shape {
  position: absolute;
  left: -60px;
  bottom: 60px;
  max-width: 340px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_blog_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}

.hn_blog_item:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.hn_blog_item_img {
  overflow: hidden;
  height: 210px;
}

.hn_blog_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.hn_blog_item:hover .hn_blog_item_img img {
  transform: scale(1.06);
}

.hn_blog_item_content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hn_blog_item_content h3 a {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--dur) var(--ease);
}

.hn_blog_item_content h3 a:hover {
  color: var(--c-cyan);
}

.hn_blog_item_content p {
  font-size: 0.855rem;
  color: var(--c-text2);
  line-height: 1.7;
  flex: 1;
  margin: 8px 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hn_blog_item_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-cyan);
  margin-top: auto;
  transition: gap var(--dur) var(--ease);
}

.hn_blog_item_btn i {
  font-size: 1rem;
}

.hn_blog_item_btn:hover {
  gap: 10px;
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════ */
.hn_how_work {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_how_work_shape {
  position: absolute;
  right: -60px;
  top: 40px;
  max-width: 360px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_work_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all var(--dur) var(--ease);
  height: 100%;
}

.hn_work_item:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.hn_work_item_step {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-cyan);
}

.hn_work_item_icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--dur) var(--ease);
}

.hn_work_item_icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(99, 179, 237, 0.4));
}

.hn_work_item:hover .hn_work_item_icon {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
}

.hn_work_item:hover .hn_work_item_icon img {
  filter: brightness(0) invert(1);
}

.hn_work_item_title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.hn_work_item p {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}


/* ════════════════════════════════════
   REFERRAL / AFFILIATE SECTION
   ════════════════════════════════════ */
.hn_referral {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_referral_shape {
  position: absolute;
  left: -80px;
  top: 0;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_referral_step {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_referral_step_shape {
  position: absolute;
  right: -80px;
  bottom: 0;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_referral_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  transition: all var(--dur) var(--ease);
}

.hn_referral_item:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hn_referral_item_icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-cyan);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.hn_referral_item:hover .hn_referral_item_icon {
  background: var(--c-cyan);
  color: #fff;
}

.hn_referral_item_title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.hn_referral_item_title span {
  color: var(--c-cyan);
  margin-right: 4px;
}

.hn_referral_item_content p {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}

.hn_referral_item_wrapper {
  position: relative;
}

.hn_referral_item_wrapper_line {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.08;
}

/* Referral step items (tier cards) */
.hn_referral_step_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}

.hn_referral_step_item:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hn_referral_step_item_title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 8px;
  display: block;
}

.hn_referral_step_item_percentage {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.hn_referral_step_item_number {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--f-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-border);
  line-height: 1;
  pointer-events: none;
}

/* Tier card (alternative style used in interest/invest referral) */
.tier-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.tier-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tier-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.tier-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 8px;
}

.tier-percentage {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slick sliders */
.hn_referral_slider,
.hn_investor_slider,
.hn_testimonial_slider {}

.hn_referral_slider .slick-track,
.hn_investor_slider .slick-track {
  display: flex;
  gap: 0;
}

.hn_referral_slide,
.hn_investor_slide,
.hn_testimonial_slide {
  padding: 0 12px;
}

.slick-dots {
  bottom: -36px;
}

.slick-dots li button::before {
  color: var(--c-cyan);
  font-size: 8px;
}

.slick-dots li.slick-active button::before {
  color: var(--c-cyan);
}


/* ════════════════════════════════════
   TESTIMONIAL SECTION
   ════════════════════════════════════ */
.hn_testimonial {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_testimonial_shape {
  position: absolute;
  left: -80px;
  bottom: 0;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_testimonial_item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  margin-bottom: 40px;
}

.hn_testimonial_item:hover {
  border-color: var(--c-border-glow);
}

.hn_testimonial_item_img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-cyan-glow);
  margin-bottom: 14px;
}

.hn_testimonial_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn_testimonial_item_client h3 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
}

.hn_testimonial_item_client p {
  font-size: 0.78rem;
  color: var(--c-text3);
  margin-bottom: 14px;
}

.hn_testimonial_item_content {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Star rating helper */
.rating i,
.star i {
  color: var(--c-amber);
  font-size: 0.85rem;
}


/* ════════════════════════════════════
   INVESTOR SECTION
   ════════════════════════════════════ */
.hn_investor {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_investor_shape {
  position: absolute;
  right: -60px;
  top: 0;
  max-width: 360px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_investor_item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: all var(--dur) var(--ease);
}

.hn_investor_item:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-glow);
}

.hn_investor_item_thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-cyan-glow);
  flex-shrink: 0;
}

.hn_investor_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn_investor_name {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.hn_investor_item_content p {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin: 0;
}


/* ════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════ */
.hn_contact {
  padding: 120px 0;
}

.hn_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}

.hn_contact_item:hover {
  border-color: var(--c-border-glow);
}

.hn_contact_item_icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-cyan);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.hn_contact_item:hover .hn_contact_item_icon {
  background: var(--c-cyan);
  color: #fff;
}

.hn_contact_item_title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.hn_contact_item_content p {
  font-size: 0.875rem;
  color: var(--c-text2);
  margin: 0;
}

.hn_contact_item_content a {
  color: var(--c-cyan);
}

.hn_contact_item_content a:hover {
  color: var(--c-text);
}

.hn_contact_form {}


/* ════════════════════════════════════
   INVESTMENT CALCULATOR
   ════════════════════════════════════ */
.hn_calculator {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.calculator_main_shape {
  position: absolute;
  top: -80px;
  right: -80px;
  max-width: 400px;
  opacity: 0.04;
  pointer-events: none;
  display: none;
}

.calculator_shape {
  position: absolute;
  max-width: 260px;
  opacity: 0.05;
  pointer-events: none;
}

.calculator_shape_left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.calculator_shape_right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hn_calculator_wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px;
}

.hn_calculator_wrapper label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* Calculator results list */
.cal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.cal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur) var(--ease);
}

.cal-list li:last-child {
  border-bottom: none;
}

.cal-list li:last-child .value {
  color: var(--c-cyan);
  font-weight: 700;
  font-size: 1rem;
}

.cal-list .caption {
  color: var(--c-text2);
}

.cal-list .value {
  color: var(--c-text);
  font-weight: 600;
}


/* ════════════════════════════════════
   TRANSACTION SECTION
   ════════════════════════════════════ */
.hn_transaction {
  padding: 120px 0;
}

.hn_transaction_area {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.hn_transaction_area_header {
  padding: 0 24px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-card2);
}

.hn_transaction_area_body {
  padding: 0;
}

/* Border tabs */
.hn_border_tabs {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  border-bottom: none;
}

.hn_border_tabs .nav-item {
  flex: 1 1 auto;
}

.hn_border_tabs .nav-link {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text3);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: all var(--dur) var(--ease);
  background: transparent;
  cursor: pointer;
}

.hn_border_tabs .nav-link:hover {
  color: var(--c-cyan);
}

.hn_border_tabs .nav-link.active {
  color: var(--c-cyan);
  border-bottom-color: var(--c-cyan);
  background: transparent;
}

/* Table gateway cell */
.hn_table_gateway {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hn_table_gateway img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  padding: 4px;
}

.hn_table_gateway h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}


/* ════════════════════════════════════
   NEWSLETTER SECTION
   ════════════════════════════════════ */
.hn_newsletter {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hn_newsletter_wrapper {
  background: linear-gradient(135deg, var(--c-card) 0%, var(--c-card2) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.hn_newsletter_wrapper::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  filter: blur(60px);
  pointer-events: none;
}

.hn_newsletter_wrapper_shape,
.hn_newsletter_wrapper_shape_two {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  max-width: 180px;
}

.hn_newsletter_wrapper_shape {
  left: 20px;
  bottom: 10px;
}

.hn_newsletter_wrapper_shape_two {
  right: 20px;
  top: 10px;
  transform: rotate(180deg);
}

.hn_newsletter_wrapper .hn_block_title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}


/* ════════════════════════════════════
   WHY CHOOSE US SECTION
   ════════════════════════════════════ */
.choose-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.choose-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.choose-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all var(--dur) var(--ease);
}

.choose-item:hover {
  border-color: var(--c-border-glow);
  background: var(--c-cyan-dim);
}

.choose-item-title {
  margin-bottom: 14px;
}

.choose-item-title h5 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-item-title h5 span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.choose-item-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.choose-item-content .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.choose-item-details p {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}


/* ════════════════════════════════════
   HOLIDAY SECTION
   ════════════════════════════════════ */
.hn_holiday_section {}

.hn_card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hn_card .card-body ul li {
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hn_card .card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  flex-shrink: 0;
}

.hn_card .card-body ul li:last-child {
  border-bottom: none;
}

.hn_card .card-header .header-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}


/* ════════════════════════════════════
   PAGE SECTION SPACING
   ════════════════════════════════════ */
section+section {}


/* ════════════════════════════════════════════════════════
   NOT_EDITABLE COMPONENTS — Complete Design System
   ════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   PLAN CARDS  (nx-plan-card)
   ───────────────────────────────────── */
.nx-plan-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.nx-plan-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(99, 179, 237, 0.13);
}

.nx-plan-card--featured {
  border-color: var(--c-cyan);
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.07) 0%, var(--c-card) 60%);
}

.nx-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(130deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.nx-plan-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}

.nx-plan-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.nx-plan-card:hover .nx-plan-icon {
  background: var(--c-cyan);
}

.nx-plan-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(99, 179, 237, 0.4));
}

.nx-plan-card:hover .nx-plan-icon img {
  filter: brightness(0) invert(1);
}

.nx-plan-name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.nx-plan-price-val {
  font-family: var(--f-mono);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--c-cyan);
  line-height: 1;
}

.nx-plan-price-cur {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text3);
}

.nx-plan-price-sep {
  font-size: 0.8rem;
  color: var(--c-text3);
}

.nx-plan-features {
  padding: 8px 24px;
  flex: 1;
}

.nx-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nx-plan-features ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.845rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
  gap: 8px;
}

.nx-plan-features ul li:last-child {
  border-bottom: none;
}

.nx-val {
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.845rem;
  text-align: right;
  flex-shrink: 0;
}

.nx-val--accent {
  color: var(--c-cyan) !important;
}

.nx-val--green {
  color: var(--c-green) !important;
}

.nx-check-yes {
  color: var(--c-green);
}

.nx-check-no {
  color: var(--c-red);
}

.nx-plan-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
}

/* Empty state */
.nx-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 0;
  color: var(--c-text3);
}

.nx-empty-state i {
  font-size: 2.5rem;
}

.nx-empty-state p {
  font-size: 0.9rem;
  margin: 0;
}


/* ─────────────────────────────────────
   STAKING CARDS  (nx-stake-card)
   ───────────────────────────────────── */
.nx-stake-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.nx-stake-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.nx-stake-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.05) 0%, transparent 60%);
}

.nx-stake-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s var(--ease);
}

.nx-stake-card:hover .nx-stake-icon {
  background: var(--c-cyan);
  color: #fff;
}

.nx-stake-name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-stake-profit {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nx-stake-profit span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text3);
  -webkit-text-fill-color: var(--c-text3);
  margin-left: 4px;
}

.nx-stake-features {
  padding: 16px 24px;
  flex: 1;
}

.nx-stake-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.845rem;
  border-bottom: 1px solid var(--c-border);
}

.nx-stake-row:last-child {
  border-bottom: none;
}

.nx-stake-row>span:first-child {
  color: var(--c-text2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nx-stake-row>span:first-child i {
  color: var(--c-cyan);
  font-size: 0.85rem;
}

.nx-stake-row>span:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.nx-stake-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
}


/* ─────────────────────────────────────
   BLOG CARDS  (nx-blog-card)
   ───────────────────────────────────── */
.nx-blog-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.nx-blog-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.nx-blog-thumb {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.nx-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.nx-blog-card:hover .nx-blog-thumb img {
  transform: scale(1.07);
}

.nx-blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 15, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.nx-blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nx-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--c-text3);
  margin-bottom: 10px;
}

.nx-blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nx-blog-meta i {
  color: var(--c-cyan);
}

.nx-blog-title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.nx-blog-title a {
  color: var(--c-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s var(--ease);
}

.nx-blog-title a:hover {
  color: var(--c-cyan);
}

.nx-blog-excerpt {
  font-size: 0.855rem;
  color: var(--c-text2);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.nx-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-cyan);
  transition: gap 0.25s var(--ease);
  margin-top: auto;
}

.nx-blog-btn:hover {
  gap: 10px;
  color: var(--c-cyan);
}

.nx-blog-btn i {
  font-size: 0.9rem;
}


/* ─────────────────────────────────────
   HOW IT WORKS  (nx-how-*)
   ───────────────────────────────────── */
.nx-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

@media (max-width: 991px) {
  .nx-how-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .nx-how-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(33.33% - 10px);
    right: calc(33.33% - 10px);
    height: 1px;
    background: linear-gradient(90deg, var(--c-cyan-glow), var(--c-violet-dim), var(--c-cyan-glow));
    pointer-events: none;
    z-index: 0;
  }
}

.nx-how-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.nx-how-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.nx-how-num {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: #63b3ed7a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nx-how-num::before,
.nx-how-num::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--c-cyan-glow);
}

.nx-how-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease);
}

.nx-how-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(99, 179, 237, 0.4));
}

.nx-how-card:hover .nx-how-icon {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
}

.nx-how-card:hover .nx-how-icon img {
  filter: brightness(0) invert(1);
}

.nx-how-title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-how-desc {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}

.nx-how-line {
  display: none;
}


/* ─────────────────────────────────────
   TESTIMONIAL  (nx-testi-*)
   ───────────────────────────────────── */
.nx-testi-slider {
  padding-bottom: 44px;
}

.nx-testi-slide {
  padding: 0 12px;
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

/* equal-height cards: slick track becomes a flex row */
.nx-testi-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.nx-testi-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  transition: all 0.3s var(--ease);
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nx-testi-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-glow);
}

.nx-testi-quote {
  font-size: 2.2rem;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.6;
}

.nx-testi-text {
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nx-testi-stars {
  margin-bottom: 16px;
}

.nx-testi-stars i {
  color: var(--c-amber);
  font-size: 0.85rem;
}

.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.nx-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-cyan-glow);
  flex-shrink: 0;
}

.nx-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-testi-name {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 2px;
}

.nx-testi-role {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin: 0;
}


/* ─────────────────────────────────────
   INVESTOR SLIDER  (nx-investor-*)
   ───────────────────────────────────── */
.nx-investor-slider {
  padding-bottom: 20px;
}

.nx-investor-slide {
  padding: 0 10px;
}

.nx-investor-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s var(--ease);
}

.nx-investor-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-3px);
}

.nx-investor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-cyan-glow);
  flex-shrink: 0;
}

.nx-investor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-investor-name {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 4px;
}

.nx-investor-amount {
  font-size: 0.8rem;
  color: var(--c-cyan);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nx-investor-amount i {
  font-size: 0.78rem;
}


/* ─────────────────────────────────────
   FAQ  (nx-faq-*)
   ───────────────────────────────────── */
.nx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.nx-faq-item:hover,
.nx-faq-item:has(.collapse.show) {
  border-color: var(--c-border-glow);
}

.nx-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: color 0.25s var(--ease);
}

.nx-faq-question:hover {
  color: var(--c-cyan);
}

.nx-faq-icon {
  color: var(--c-cyan);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.nx-faq-question[aria-expanded="true"] .nx-faq-icon {
  transform: rotate(45deg);
}

.nx-faq-answer {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.75;
}


/* ─────────────────────────────────────
   CONTACT  (nx-contact-*)
   ───────────────────────────────────── */
.nx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nx-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}

.nx-contact-info-item:hover {
  border-color: var(--c-border-glow);
  transform: translateX(4px);
}

.nx-contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.nx-contact-info-item:hover .nx-contact-info-icon {
  background: var(--c-cyan);
  color: #fff;
}

.nx-contact-info-icon--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159, 122, 234, 0.25);
  color: var(--c-violet);
}

.nx-contact-info-icon--green {
  background: var(--c-green-dim);
  border-color: rgba(72, 187, 120, 0.25);
  color: var(--c-green);
}

.nx-contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 4px;
}

.nx-contact-info-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}

.nx-contact-info-val a {
  color: var(--c-text);
  transition: color 0.25s var(--ease);
}

.nx-contact-info-val a:hover {
  color: var(--c-cyan);
}

.nx-contact-info-sub {
  font-size: 0.78rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-contact-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px;
}

.nx-contact-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}


/* ─────────────────────────────────────
   HOLIDAY CARDS  (nx-holiday-*)
   ───────────────────────────────────── */
.nx-holiday-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s var(--ease);
}

.nx-holiday-card:hover {
  border-color: var(--c-border-glow);
}

.nx-holiday-card-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-card2);
}

.nx-holiday-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.nx-holiday-icon--red {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.nx-holiday-icon--amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-holiday-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

.nx-holiday-list {
  list-style: none;
  padding: 12px 22px;
  margin: 0;
}

.nx-holiday-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.nx-holiday-list li:last-child {
  border-bottom: none;
}

.nx-holiday-list li i {
  color: var(--c-red);
  font-size: 0.85rem;
}

.nx-holiday-empty {
  color: var(--c-text3) !important;
}

.nx-holiday-empty i {
  color: var(--c-green) !important;
}


/* ─────────────────────────────────────
   RANKING CARDS  (nx-rank-*)
   ───────────────────────────────────── */
.nx-rank-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s var(--ease);
}

.nx-rank-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.nx-rank-card--top {
  border-color: var(--c-border-glow);
}

.nx-rank-card--top-1 {
  background: linear-gradient(160deg, rgba(246, 173, 85, 0.08) 0%, var(--c-card) 60%);
  border-color: rgba(246, 173, 85, 0.3);
}

.nx-rank-card--top-2 {
  background: linear-gradient(160deg, rgba(148, 163, 184, 0.06) 0%, var(--c-card) 60%);
  border-color: rgba(148, 163, 184, 0.2);
}

.nx-rank-card--top-3 {
  background: linear-gradient(160deg, rgba(205, 133, 63, 0.07) 0%, var(--c-card) 60%);
  border-color: rgba(205, 133, 63, 0.2);
}

.nx-rank-top {
  padding: 26px 22px 20px;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  position: relative;
}

.nx-rank-crown {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1rem;
}

.nx-rank-card--top-1 .nx-rank-crown {
  color: var(--c-amber);
}

.nx-rank-card--top-2 .nx-rank-crown {
  color: #94A3B8;
}

.nx-rank-card--top-3 .nx-rank-crown {
  color: #CD853F;
}

.nx-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 800;
  margin: 0 auto 12px;
}

.nx-rank-card--top-1 .nx-rank-badge {
  background: rgba(246, 173, 85, 0.15);
  border-color: rgba(246, 173, 85, 0.3);
  color: var(--c-amber);
}

.nx-rank-card--top-2 .nx-rank-badge {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.25);
  color: #94A3B8;
}

.nx-rank-card--top-3 .nx-rank-badge {
  background: rgba(205, 133, 63, 0.12);
  border-color: rgba(205, 133, 63, 0.2);
  color: #CD853F;
}

.nx-rank-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
}

.nx-rank-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nx-rank-name {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.nx-rank-bonus {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-green);
}

.nx-rank-details {
  padding: 10px 22px;
}

.nx-rank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.835rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
}

.nx-rank-row:last-child {
  border-bottom: none;
}

.nx-rank-row .nx-val {
  color: var(--c-text);
}


/* ─────────────────────────────────────
   AFFILIATE STEPS  (nx-aff-*)
   ───────────────────────────────────── */
.nx-aff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

@media (max-width: 991px) {
  .nx-aff-grid {
    grid-template-columns: 1fr;
  }
}

.nx-aff-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
  transition: all 0.3s var(--ease);
  overflow: visible;
}

.nx-aff-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.nx-aff-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.nx-aff-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.nx-aff-card:hover .nx-aff-icon {
  background: var(--c-cyan);
  color: #fff;
}

.nx-aff-step-num {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-border);
  line-height: 1;
}

.nx-aff-title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.nx-aff-desc {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}

.nx-aff-arrow {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-cyan);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
}

@media (min-width: 992px) {
  .nx-aff-arrow {
    display: flex;
  }
}


/* ─────────────────────────────────────
   REFERRAL TIERS  (nx-tier-*)
   ───────────────────────────────────── */
.nx-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.nx-tier-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.nx-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.nx-tier-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.nx-tier-card:hover::before {
  opacity: 1;
}

.nx-tier-card--violet::before {
  background: linear-gradient(90deg, var(--c-violet), var(--c-cyan));
}

.nx-tier-level {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 8px;
}

.nx-tier-pct {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.nx-tier-card--violet .nx-tier-pct {
  background: linear-gradient(125deg, var(--c-violet), var(--c-cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.nx-tier-pct span {
  font-size: 1rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--c-text3);
}

.nx-tier-label {
  font-size: 0.72rem;
  color: var(--c-text3);
  font-weight: 500;
}

/* Referral Section Block */
.nx-referral-section {}

.nx-referral-block {}

.nx-referral-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.nx-referral-block-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-referral-block-icon--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159, 122, 234, 0.25);
  color: var(--c-violet);
}

.nx-referral-block-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 4px;
}

.nx-referral-block-sub {
  font-size: 0.82rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-referral-divider {
  height: 1px;
  background: var(--c-border);
  margin: 48px 0;
}


/* ─────────────────────────────────────
   REFERRAL REWARD  (nx-ref-*)
   ───────────────────────────────────── */
.nx-ref-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nx-ref-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0.7;
}

.nx-ref-block--violet::before {
  background: linear-gradient(90deg, var(--c-violet), var(--c-cyan));
}

.nx-ref-block:hover {
  border-color: var(--c-border-glow);
  box-shadow: var(--shadow-glow);
}

.nx-ref-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.nx-ref-block-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-ref-block-icon--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159,122,234,0.25);
  color: var(--c-violet);
}

.nx-ref-block-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 4px;
}

.nx-ref-block-sub {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-ref-tiers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nx-ref-tier-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-ref-tier-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-ref-tier-badge--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159,122,234,0.25);
  color: var(--c-violet);
}

.nx-ref-tier-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--c-border);
  border-radius: 999px;
  overflow: hidden;
}

.nx-ref-tier-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  transition: width 0.6s var(--ease);
}

.nx-ref-tier-bar--violet {
  background: linear-gradient(90deg, var(--c-violet), var(--c-cyan));
}

.nx-ref-tier-pct {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-cyan);
  min-width: 52px;
  text-align: right;
  line-height: 1;
}

.nx-ref-tier-pct span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text3);
}

.nx-ref-tier-pct--violet {
  color: var(--c-violet);
}


/* ─────────────────────────────────────
   WHY CHOOSE US  (nx-why-*)
   ───────────────────────────────────── */
.nx-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .nx-why-grid {
    grid-template-columns: 1fr;
  }
}

.nx-why-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.nx-why-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.nx-why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.nx-why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.nx-why-card:hover .nx-why-icon {
  background: var(--c-cyan);
  color: #fff;
}

.nx-why-num {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-border);
  line-height: 1;
}

.nx-why-title {
  font-family: var(--f-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.nx-why-desc {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}


/* ─────────────────────────────────────
   NEWSLETTER  (nx-newsletter-*)
   ───────────────────────────────────── */
.nx-newsletter-wrap {
  padding: 4px;
}

.nx-newsletter-inner {
  background: linear-gradient(135deg, var(--c-card2) 0%, var(--c-card) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
}

.nx-newsletter-inner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  filter: blur(80px);
  pointer-events: none;
}

.nx-newsletter-glow {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--c-violet-dim);
  filter: blur(80px);
  pointer-events: none;
}

.nx-newsletter-text {
  position: relative;
  z-index: 1;
}

.nx-newsletter-title {
  font-family: var(--f-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.nx-newsletter-desc {
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}

.nx-newsletter-form {
  position: relative;
  z-index: 1;
}

.nx-newsletter-field {
  display: flex;
  align-items: center;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 16px;
  gap: 10px;
  transition: border-color 0.25s var(--ease);
}

.nx-newsletter-field:focus-within {
  border-color: var(--c-cyan);
}

.nx-newsletter-field-icon {
  color: var(--c-text3);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nx-newsletter-field .form-control {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--c-text);
  padding: 6px 0;
  box-shadow: none !important;
  font-size: 0.9rem;
}

.nx-newsletter-field .form-control::placeholder {
  color: var(--c-text3);
}

.nx-newsletter-btn {
  border-radius: var(--r-pill) !important;
  flex-shrink: 0;
  padding: 10px 22px;
}

.nx-newsletter-note {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.nx-newsletter-note i {
  color: var(--c-green);
}

@media (max-width: 575px) {
  .nx-newsletter-inner {
    padding: 32px 20px;
  }

  .nx-newsletter-field {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-sm);
  }

  .nx-newsletter-btn {
    border-radius: var(--r-sm) !important;
  }
}


/* ─────────────────────────────────────
   TRANSACTION TABS  (nx-tx-*)
   ───────────────────────────────────── */
.nx-tx-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.nx-tx-tabs {
  display: flex;
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto;
}

.nx-tx-tabs::-webkit-scrollbar {
  height: 2px;
}

.nx-tx-tab {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--c-text3);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.nx-tx-tab i {
  font-size: 0.95rem;
}

.nx-tx-tab:hover {
  color: var(--c-cyan);
}

.nx-tx-tab.active {
  color: var(--c-cyan);
  border-bottom-color: var(--c-cyan);
}

.nx-tx-pane {
  display: none;
}

.nx-tx-pane.active {
  display: block;
}

.nx-tx-trx {
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--c-text3);
}

.nx-tx-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-text2);
}

.nx-tx-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-tx-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
}

.nx-tx-badge--cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-tx-badge--green {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-tx-badge--amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-tx-amount {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-cyan);
}

.nx-tx-empty {
  text-align: center;
  padding: 40px 20px !important;
  color: var(--c-text3);
  font-size: 0.875rem;
}

.nx-tx-empty i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}


/* ─────────────────────────────────────
   MODAL OVERRIDES
   ───────────────────────────────────── */
.nx-modal-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.nx-modal-header {
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 24px;
}

.nx-modal-header .modal-title {
  color: var(--c-text);
  font-size: 1rem;
}

.nx-modal-body {
  padding: 24px;
}

.nx-modal-footer {
  border-top: 1px solid var(--c-border);
  padding: 16px 24px;
  gap: 10px;
}


/* ════════════════════════════════════════════════════════
   SECTIONS — NEW DESIGN COMPONENTS
   resources/views/backend/frontend/sections/
   ════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   ABOUT SECTION  (nx-about-*)
   ───────────────────────────────────── */
.hn_about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hn_about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(99, 179, 237, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hn_about_shape {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 42%;
  opacity: 0.04;
  pointer-events: none;
}

.nx-about-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-about-img-main {
  position: relative;
  z-index: 1;
}

.nx-about-img-main img {
  max-width: 100%;
  filter: drop-shadow(0 0 50px rgba(99, 179, 237, 0.18));
  animation: nx-float-slow 6s ease-in-out infinite;
}

@keyframes nx-float-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.nx-about-img-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  z-index: 0;
  opacity: 0.35;
  filter: blur(14px);
}

.nx-about-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--c-card);
  border: 1px solid var(--c-border-glow);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.nx-about-badge i {
  color: var(--c-green);
  font-size: 1rem;
}

.nx-about-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.nx-about-desc {
  font-size: 0.95rem;
  color: var(--c-text2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.nx-about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 24px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}

.nx-about-stat-item {
  text-align: center;
  flex: 1;
}

.nx-about-stat-item+.nx-about-stat-item {
  border-left: 1px solid var(--c-border);
  padding-left: 28px;
}

.nx-about-stat-num {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.nx-about-stat-lbl {
  font-size: 0.72rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .nx-about-stats {
    gap: 16px;
    padding: 16px;
  }

  .nx-about-stat-item+.nx-about-stat-item {
    padding-left: 16px;
  }

  .nx-about-stat-num {
    font-size: 1.2rem;
  }

  .nx-about-badge {
    display: none;
  }
}


/* ─────────────────────────────────────
   BANNER / HERO  (nx-banner-*)
   ───────────────────────────────────── */
.hn_banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}

.hn_banner_bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hn_banner_bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
}

.hn_banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(99, 179, 237, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 80%, rgba(159, 122, 234, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hn_banner>.container {
  position: relative;
  z-index: 1;
}

.nx-banner-content {}

.nx-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.nx-banner-label i {
  font-size: 0.85rem;
}

.nx-banner-title {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.nx-banner-desc {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

.nx-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.nx-banner-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: inline-flex;
  backdrop-filter: blur(8px);
}

.nx-banner-trust-avatars img {
  height: 44px;
  width: auto;
}

.nx-banner-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ═══════════════════════════════════════
   LIVE MARKETS WIDGET (banner right side)
   ═══════════════════════════════════════ */
.lm-card {
  background: rgba(13, 19, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.lm-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lm-col-head {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #3d4f70;
  padding: 4px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4px;
}

.lm-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background .18s;
  cursor: pointer;
  border-radius: 8px;
}

.lm-row:last-of-type {
  border-bottom: none;
}

.lm-row:hover {
  background: rgba(54, 148, 237, 0.06);
}

/* Asset column */
.lm-asset {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lm-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.lm-sym {
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
}

.lm-name {
  font-size: 10px;
  color: #475569;
}

/* Sparkline column */
.lm-spark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-spark {
  width: 72px;
  height: 30px;
  display: block;
  overflow: visible;
}

.lm-spark-line {
  transition: stroke .3s;
}

.lm-spark-area {
  opacity: .15;
  transition: fill .3s;
}

/* Price column */
.lm-price {
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
  font-family: 'Geist Mono', monospace;
  line-height: 1.4;
}

.lm-chg {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.lm-payout {
  font-size: 9.5px;
  color: #3cd2a5;
  margin-top: 1px;
}

/* Flash when price updates */
@keyframes lmFlashUp {

  0%,
  100% {
    background: transparent
  }

  40% {
    background: rgba(60, 210, 165, 0.15)
  }
}

@keyframes lmFlashDn {

  0%,
  100% {
    background: transparent
  }

  40% {
    background: rgba(232, 82, 97, 0.15)
  }
}

.lm-price.flash-up {
  animation: lmFlashUp .6s ease;
  border-radius: 4px;
}

.lm-price.flash-dn {
  animation: lmFlashDn .6s ease;
  border-radius: 4px;
}

.nx-banner-trust-text strong {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.nx-banner-trust-text span {
  font-size: 0.78rem;
  color: var(--c-text2);
}

.hn_banner_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 46%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 60px rgba(99, 179, 237, 0.12));
  animation: hn-float 5s ease-in-out infinite;
}

@keyframes hn-float {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 16px));
  }
}

@media (max-width: 991px) {
  .hn_banner {
    min-height: auto;
    padding: 110px 0 70px;
    text-align: center;
  }

  .nx-banner-desc {
    margin: 0 auto 28px;
  }

  .nx-banner-actions {
    justify-content: center;
  }

  .nx-banner-trust {
    margin: 0 auto;
  }

  .hn_banner_img {
    display: none;
  }
}


/* ─────────────────────────────────────
   HOW IT WORKS  (section level)
   ───────────────────────────────────── */
.hn_how_work {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_how_work_shape {
  position: absolute;
  right: -60px;
  top: 40px;
  max-width: 360px;
  opacity: 0.04;
  pointer-events: none;
}


/* ─────────────────────────────────────
   TESTIMONIAL  (section level)
   ───────────────────────────────────── */
.hn_testimonial {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_testimonial_shape {
  position: absolute;
  left: -60px;
  bottom: 0;
  max-width: 340px;
  opacity: 0.04;
  pointer-events: none;
}


/* ─────────────────────────────────────
   INVESTOR  (section level)
   ───────────────────────────────────── */
.hn_investor {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_investor_shape {
  position: absolute;
  right: -60px;
  top: 0;
  max-width: 360px;
  opacity: 0.04;
  pointer-events: none;
}


/* ─────────────────────────────────────
   FAQ SECTION  (nx-section-faq)
   ───────────────────────────────────── */
.nx-section-faq {
  padding: 120px 0;
  position: relative;
}


/* ─────────────────────────────────────
   WHY CHOOSE US  (nx-section-why)
   ───────────────────────────────────── */
.nx-section-why {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}


/* ─────────────────────────────────────
   PLAN SECTION  (section level)
   ───────────────────────────────────── */
.hn_plan {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_plan_shape {
  position: absolute;
  right: -80px;
  top: 60px;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}


/* ─────────────────────────────────────
   BLOG SECTION  (section level)
   ───────────────────────────────────── */
.hn_blog {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_blog_shape {
  position: absolute;
  left: -60px;
  bottom: 60px;
  max-width: 340px;
  opacity: 0.04;
  pointer-events: none;
}


/* ─────────────────────────────────────
   REFERRAL SECTIONS  (section level)
   ───────────────────────────────────── */
.hn_referral {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_referral_shape {
  position: absolute;
  left: -80px;
  top: 0;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_referral_step {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hn_referral_step_shape {
  position: absolute;
  right: -80px;
  bottom: 0;
  max-width: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.hn_holiday_section {}

.hn_ranking_section {}


/* ─────────────────────────────────────
   CONTACT SECTION  (section level)
   ───────────────────────────────────── */
.hn_contact {
  padding: 120px 0;
}


/* ─────────────────────────────────────
   CALCULATOR SECTION  (section level)
   ───────────────────────────────────── */
.hn_calculator {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.calculator_main_shape {
  position: absolute;
  top: -80px;
  right: -80px;
  max-width: 400px;
  opacity: 0.04;
  pointer-events: none;
  display: none !important;
}

.calculator_shape {
  position: absolute;
  max-width: 240px;
  opacity: 0.04;
  pointer-events: none;
}

.calculator_shape_left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.calculator_shape_right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.hn_calculator_wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 40px;
}

.hn_calculator_wrapper .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}


/* ─────────────────────────────────────
   TRANSACTION SECTION (Bootstrap tabs)
   ───────────────────────────────────── */
.hn_transaction {
  padding: 120px 0;
}

/* Override Bootstrap tab-content inside nx-tx-wrap */
.nx-tx-wrap .tab-content {
  padding: 0;
}

.nx-tx-wrap .tab-pane {
  display: none;
}

.nx-tx-wrap .tab-pane.show.active {
  display: block;
}

/* Tab nav — Bootstrap nav-link inside nx-tx-tabs */
.nx-tx-tabs .nav-link,
.nx-tx-tabs button[data-bs-toggle="tab"] {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--c-text3);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border-radius: 0;
}

.nx-tx-tabs button[data-bs-toggle="tab"]:hover {
  color: var(--c-cyan);
}

.nx-tx-tabs button[data-bs-toggle="tab"].active,
.nx-tx-tabs .nav-link.active {
  color: var(--c-cyan);
  border-bottom-color: var(--c-cyan);
  background: transparent;
}


/* ─────────────────────────────────────
   NEWSLETTER SECTION  (section level)
   ───────────────────────────────────── */
.hn_newsletter {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


/* ─────────────────────────────────────
   SECTION SHARED UTILITIES
   ───────────────────────────────────── */

/* Section padding helper */
.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Accordion override for faq sections */
.accordion-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm) !important;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-item+.accordion-item {
  border-top: 1px solid var(--c-border);
}

.accordion-header {}

.accordion-button,
.accordion-button span.accordion-button {
  background: var(--c-card);
  color: var(--c-text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s var(--ease);
}

.accordion-button:not(.collapsed) {
  color: var(--c-cyan);
  background: var(--c-card);
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(60%) sepia(80%) saturate(400%) hue-rotate(180deg);
}

.accordion-body {
  background: var(--c-card);
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.75;
}

/* ─── Block header section label ─── */
.hn_block_header .section-top-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-cyan);
  margin-bottom: 10px;
}

/* Section-wide shape img fallback */
.hn_about_shape,
.hn_plan_shape,
.hn_blog_shape,
.hn_how_work_shape,
.hn_investor_shape,
.hn_testimonial_shape,
.hn_referral_shape,
.hn_referral_step_shape,
.calculator_main_shape,
.calculator_shape {
  pointer-events: none;
  user-select: none;
}

/* ─── Slick dots override ─── */
.slick-dots {
  bottom: -36px;
}

.slick-dots li button::before {
  color: var(--c-cyan);
  font-size: 8px;
  opacity: 0.4;
}

.slick-dots li.slick-active button::before {
  color: var(--c-cyan);
  opacity: 1;
}


/* ─────────────────────────────────────
   RESPONSIVE — SECTION PADDING MOBILE
   ───────────────────────────────────── */
@media (max-width: 767px) {

  .hn_about,
  .hn_plan,
  .hn_blog,
  .hn_how_work,
  .hn_investor,
  .hn_testimonial,
  .hn_referral,
  .hn_referral_step,
  .hn_contact,
  .hn_calculator,
  .hn_transaction,
  .nx-section-faq,
  .nx-section-why,
  .py-120 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hn_newsletter {
    padding: 56px 0;
  }

  .hn_calculator_wrapper {
    padding: 24px;
  }
}


/* ════════════════════════════════════════════════════════
   BACKEND / ADMIN — FRONTEND CMS DESIGN SYSTEM
   resources/views/backend/frontend/
   ════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   ADM CARD
   ───────────────────────────────────── */
.adm-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.adm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.adm-card-header-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.adm-card-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  flex: 1;
}

.adm-card-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.adm-card-header-meta {
  margin-left: auto;
}

.adm-card-body {
  padding: 24px;
}

.adm-card-body.p-0 {
  padding: 0;
}

.adm-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--c-border);
  background: var(--c-card2);
}


/* ─────────────────────────────────────
   ADM BUTTONS
   ───────────────────────────────────── */
.adm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.845rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.adm-btn:hover {
  text-decoration: none;
}

.adm-btn-primary {
  background: linear-gradient(130deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  border-color: transparent;
}

.adm-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--c-cyan-glow);
  color: #fff;
}

.adm-btn-secondary {
  background: var(--c-card2);
  color: var(--c-text2);
  border-color: var(--c-border);
}

.adm-btn-secondary:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.adm-btn-danger {
  background: var(--c-red-dim);
  color: var(--c-red);
  border-color: rgba(252, 129, 129, 0.2);
}

.adm-btn-danger:hover {
  background: var(--c-red);
  color: #fff;
}

/* Icon-only buttons */
.adm-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.adm-btn-icon:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.adm-btn-icon-primary {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border-color: var(--c-cyan-glow);
}

.adm-btn-icon-primary:hover {
  background: var(--c-cyan);
  color: #fff;
}

.adm-btn-icon-cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border-color: var(--c-cyan-glow);
}

.adm-btn-icon-cyan:hover {
  background: var(--c-cyan);
  color: #fff;
}

.adm-btn-icon-danger {
  background: var(--c-red-dim);
  color: var(--c-red);
  border-color: rgba(252, 129, 129, 0.2);
}

.adm-btn-icon-danger:hover {
  background: var(--c-red);
  color: #fff;
}

.adm-action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ─────────────────────────────────────
   ADM FORM ELEMENTS
   ───────────────────────────────────── */
.adm-form-group {
  margin-bottom: 4px;
}

.adm-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text2);
  margin-bottom: 7px;
}

.adm-required {
  color: var(--c-red);
  margin-left: 2px;
}

.adm-input,
.adm-select,
.adm-textarea {
  width: 100%;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.875rem;
  padding: 9px 14px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
}

.adm-input:focus,
.adm-select:focus,
.adm-textarea:focus {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.12);
}

.adm-input::placeholder,
.adm-textarea::placeholder {
  color: var(--c-text3);
}

.adm-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.adm-select option {
  background: var(--c-card2);
  color: var(--c-text);
}

.adm-textarea {
  resize: vertical;
  line-height: 1.6;
}

.adm-select-sm {
  padding: 6px 32px 6px 12px;
  font-size: 0.82rem;
  height: 34px;
}

/* Input group — input + icon button */
.adm-input-group {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.adm-input-group .adm-input {
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  flex: 1;
}

.adm-ai-btn,
.adm-iconpicker-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  border-left: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-cyan);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.adm-ai-btn:hover,
.adm-iconpicker-btn:hover {
  background: var(--c-cyan);
  color: #fff;
}

/* Full-width AI button */
.adm-ai-btn-full {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.adm-ai-btn-full:hover {
  background: var(--c-cyan);
  color: #fff;
}

/* Image preview */
.adm-img-preview {
  width: 100%;
  min-height: 160px;
  border: 2px dashed var(--c-border);
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.adm-img-preview:hover {
  border-color: var(--c-cyan);
}

.adm-img-preview label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-text3);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 20px;
  text-align: center;
}

.adm-img-preview label i {
  font-size: 1.8rem;
  color: var(--c-cyan);
}

.adm-img-preview input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}


/* ─────────────────────────────────────
   ADM TABLE
   ───────────────────────────────────── */
.adm-table {
  width: 100%;
  color: var(--c-text2);
  font-size: 0.875rem;
  border-collapse: collapse;
}

.adm-table thead th {
  background: var(--c-card2);
  color: var(--c-text3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}

.adm-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s var(--ease);
}

.adm-table tbody tr:last-child {
  border-bottom: none;
}

.adm-table tbody tr:hover {
  background: rgba(99, 179, 237, 0.04);
}

.adm-table tbody td {
  padding: 13px 16px;
  vertical-align: middle;
  color: var(--c-text2);
}

.adm-table-name {
  color: var(--c-text);
  font-weight: 500;
}

.adm-table-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  padding: 4px;
}

.adm-code {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--c-cyan);
  font-family: monospace;
}

/* Empty state */
.adm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 20px;
  color: var(--c-text3);
}

.adm-empty-state i {
  font-size: 2.5rem;
  opacity: 0.5;
}

.adm-empty-state p {
  font-size: 0.9rem;
  margin: 0;
}

.adm-empty-state-full {
  padding: 48px 24px;
  text-align: center;
  color: var(--c-text3);
}

.adm-empty-state-full i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}


/* ─────────────────────────────────────
   ADM BADGES
   ───────────────────────────────────── */
.adm-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adm-badge-green {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.adm-badge-red {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.adm-badge-cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.adm-badge-amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}


/* ─────────────────────────────────────
   ADM MODAL
   ───────────────────────────────────── */
.adm-modal-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.adm-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-card2);
}

.adm-modal-header-cyan .adm-modal-icon {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border-color: var(--c-cyan-glow);
}

.adm-modal-header-danger .adm-modal-icon {
  background: var(--c-red-dim);
  color: var(--c-red);
  border-color: rgba(252, 129, 129, 0.2);
}

.adm-modal-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid;
  flex-shrink: 0;
}

.adm-modal-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  flex: 1;
}

.adm-modal-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text3);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  margin-left: auto;
}

.adm-modal-close:hover {
  background: var(--c-red-dim);
  color: var(--c-red);
  border-color: rgba(252, 129, 129, 0.2);
}

.adm-modal-body {
  padding: 22px;
}

.adm-modal-text {
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0 0 20px;
}

.adm-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}


/* ─────────────────────────────────────
   ADM SEARCH BAR
   ───────────────────────────────────── */
.adm-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0 12px;
  transition: border-color 0.25s var(--ease);
}

.adm-search-bar:focus-within {
  border-color: var(--c-cyan);
}

.adm-search-bar i {
  color: var(--c-text3);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.adm-search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--c-text);
  font-size: 0.875rem;
  padding: 8px 0;
  width: 180px;
  font-family: var(--f-body);
}

.adm-search-input::placeholder {
  color: var(--c-text3);
}

.adm-search-form {
  display: flex;
}


/* ─────────────────────────────────────
   ADM SECTIONS GRID (sections.blade.php)
   ───────────────────────────────────── */
.adm-section-grid {
  display: flex;
  flex-direction: column;
}

.adm-section-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s var(--ease);
}

.adm-section-item:last-child {
  border-bottom: none;
}

.adm-section-item:hover {
  background: rgba(99, 179, 237, 0.04);
}

.adm-section-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-violet-dim);
  border: 1px solid rgba(159, 122, 234, 0.2);
  color: var(--c-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.adm-section-info {
  flex: 1;
}

.adm-section-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 2px;
}

.adm-section-meta {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin: 0;
}

.adm-section-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.adm-section-link:hover {
  background: var(--c-cyan);
  color: #fff;
  transform: rotate(15deg);
}


/* ─────────────────────────────────────
   BREADCRUMB (backend admin)
   ───────────────────────────────────── */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--c-text3);
}

.breadcrumb-item a {
  color: var(--c-cyan);
}

.breadcrumb-item.active {
  color: var(--c-text3);
}


/* ─────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────── */
@media (max-width: 767px) {
  .adm-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .adm-card-header-actions {
    width: 100%;
  }

  .adm-search-input {
    width: 130px;
  }

  .adm-modal-actions {
    flex-direction: column-reverse;
  }

  .adm-modal-actions .adm-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ════════════════════════════════════════════════════════
   DASHBOARD TOPBAR — COMPLETE FIX
   Topbar sidebar এর ডান পাশে, একদম উপরে থাকবে
   ════════════════════════════════════════════════════════ */

/* ─── Override existing navbar — sidebar এর সাথে align ─── */
.hn_dashboard_navbar {
  position: fixed !important;
  top: 0;
  left: 252px;
  right: 0;
  z-index: 98;
  background: rgba(5, 8, 15, 0.95) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
  padding: 0 24px;
  height: 64px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-left: 0 !important;
  transition: left 0.25s var(--ease);
}

/* main content — navbar height compensation */
.hn_dashboard_main {
  margin-left: 252px;
  margin-top: 64px;
  flex: 1;
  min-height: calc(100vh - 64px);
}

/* ─── Left section ─── */
.hn_navbar_left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hn_navbar_title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Right section ─── */
.hn_navbar_right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ─── Globe / icon button ─── */
.hn_nav_icon_btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.hn_nav_icon_btn:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

/* ─── User dropdown button ─── */
.hn_nav_user_btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 5px 12px 5px 5px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  height: 42px;
}

.hn_nav_user_btn:hover {
  border-color: var(--c-cyan);
  background: rgba(99, 179, 237, 0.06);
}

.hn_nav_user_btn[aria-expanded="true"] {
  border-color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

/* ─── Avatar circle ─── */
.hn_nav_user_avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  font-family: var(--f-head);
}

.hn_nav_user_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hn_nav_user_avatar--lg {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── Name & status beside avatar ─── */
.hn_nav_user_info {
  line-height: 1;
}

.hn_nav_user_name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  margin-bottom: 2px;
}

.hn_nav_user_status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hn_nav_status_dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.5);
  animation: nx-pulse-ring 1.6s ease infinite;
  flex-shrink: 0;
}

/* chevron */
.hn_nav_chevron {
  font-size: 0.65rem;
  color: var(--c-text3);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.hn_nav_user_btn[aria-expanded="true"] .hn_nav_chevron {
  transform: rotate(180deg);
}

/* ─── Dropdown panel ─── */
.hn_nav_dropdown {
  background: var(--c-card) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 6px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55) !important;
  margin-top: 8px !important;
  backdrop-filter: blur(20px);
  min-width: 170px;
}

.hn_nav_dropdown_item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 0.845rem;
  color: var(--c-text2) !important;
  padding: 9px 12px !important;
  border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.hn_nav_dropdown_item i {
  font-size: 0.88rem;
  width: 16px;
  text-align: center;
  color: var(--c-text3);
  flex-shrink: 0;
}

.hn_nav_dropdown_item:hover,
.hn_nav_dropdown_item:focus {
  background: var(--c-cyan-dim) !important;
  color: var(--c-cyan) !important;
}

.hn_nav_dropdown_item:hover i,
.hn_nav_dropdown_item:focus i {
  color: var(--c-cyan);
}

.hn_nav_dropdown_item.active {
  background: var(--c-cyan-dim);
  color: var(--c-cyan) !important;
}

.hn_nav_divider {
  border-color: var(--c-border) !important;
  margin: 4px 0 !important;
  opacity: 1 !important;
}

.hn_nav_logout {
  color: var(--c-red) !important;
}

.hn_nav_logout i {
  color: var(--c-red) !important;
}

.hn_nav_logout:hover {
  background: var(--c-red-dim) !important;
  color: var(--c-red) !important;
}

.hn_nav_logout:hover i {
  color: var(--c-red) !important;
}

/* ─── User dropdown header block ─── */
.hn_nav_user_dropdown {
  min-width: 220px;
}

.hn_nav_user_header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--c-card2);
  margin-bottom: 4px;
  pointer-events: none;
}

.hn_nav_user_fullname {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.hn_nav_user_email {
  font-size: 0.72rem;
  color: var(--c-text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  margin-top: 1px;
}
/* ─── Mobile back button ─── */
.mobile-back-btn {
  display: none;
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE/TABLET
   ════════════════════════════════════ */
@media (max-width: 991px) {

  /* Sidebar hidden off-screen on mobile */
  .hn_dashboard_sidebar {
    left: -270px;
  }

  .hn_dashboard_sidebar.active {
    left: 0;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .hn_dashboard_sidebar_close {
    display: flex;
  }

  /* Topbar full width on mobile */
  .hn_dashboard_navbar {
    left: 0 !important;
  }

  /* Main content no left margin on mobile */
  .hn_dashboard_main {
    margin-left: 0 !important;
    padding-bottom: 68px;
  }

  /* Show hamburger on mobile */
  .hn_dashboard_sidebar_open {
    display: flex;
  }

  /* Mobile bottom nav */
  .mobile-app-menu {
    display: flex;
  }
}

@media (max-width: 767px) {

  /* Hide name/status on very small screens — keep avatar only */
  .hn_nav_user_info,
  .hn_nav_chevron {
    display: none !important;
  }

  .hn_nav_user_btn {
    padding: 4px;
    width: 38px;
    border-radius: 50%;
  }

  .hn_nav_user_avatar {
    width: 30px;
    height: 30px;
  }

  .hn_nav_user_dropdown {
    right: 0 !important;
  }

  .hn_navbar_title {
    font-size: 0.85rem;
  }
}

/* ════════════════════════════════════════════════════════
   FRONTEND WEBSITE DESIGN FIX
   header fixed আছে তাই main content উপরে নামানো দরকার
   ════════════════════════════════════════════════════════ */

/* ─── CRITICAL FIX: Frontend main content padding ─── */
/* .hn_header fixed আছে height ~76px, তাই main এ সমান padding দিতে হবে */
body:not(:has(.hn_dashboard)) main#main,
body:not(:has(.hn_dashboard)) #main {
  padding-top: 80px;
}

/* Fallback for older browsers that don't support :has() */
main#main {
  padding-top: 80px;
}

/* Dashboard body তে main এর padding override — dashboard এর নিজস্ব layout */
.hn_dashboard~* main,
body:has(.hn_dashboard) main {
  padding-top: 0 !important;
}

/* ─── hn_header — transparent initially, solid on scroll ─── */
.hn_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hn_header.header-fixed {
  background: rgba(5, 8, 15, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

/* Header inner area height */
.hn_header_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  transition: padding 0.3s ease;
}

.hn_header.header-fixed .hn_header_area {
  padding: 14px 0;
}

/* ─── Header dropdown menu ─── */
.hn_header .dropdown-menu {
  background: var(--c-card) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 6px !important;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
  margin-top: 8px !important;
}

.hn_header .dropdown-item {
  font-size: 0.845rem;
  color: var(--c-text2);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}

.hn_header .dropdown-item:hover,
.hn_header .dropdown-item.active {
  background: var(--c-cyan-dim) !important;
  color: var(--c-cyan) !important;
}

.hn_header .dropdown-divider {
  border-color: var(--c-border) !important;
  margin: 4px 0 !important;
}

/* ─── Banner — already has padding-top 120px so it compensates ─── */
/* Banner প্রথম section হলে extra spacing দরকার নেই */
.hn_banner {
  padding-top: 130px !important;
  padding-bottom: 90px;
}

/* ─── Page sections — non-banner pages need top spacing via hn_page_banner ─── */
.hn_page_banner {
  padding-top: 130px !important;
  padding-bottom: 80px;
}

/* ─── Footer dropdown menu ─── */
.hn_footer .dropdown-menu {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ─── Mobile header fix ─── */
@media (max-width: 991px) {

  body:not(:has(.hn_dashboard)) main#main,
  main#main {
    padding-top: 72px;
  }

  .hn_banner {
    padding-top: 110px !important;
    padding-bottom: 70px;
  }

  .hn_page_banner {
    padding-top: 110px !important;
  }
}

@media (max-width: 575px) {
  main#main {
    padding-top: 68px;
  }

  .hn_banner {
    padding-top: 100px !important;
  }
}

/* ════════════════════════════════════════════════════════
   FRONTEND WEBSITE DISPLAY FIX
   header fixed → main content spacing
   ════════════════════════════════════════════════════════ */

/* ─── CORE FIX: main#main padding-top ─── */
/* hn_header fixed position আছে, তাই main content header এর নিচে যায় */
main#main {
  padding-top: 82px;
}

@media (max-width: 991px) {
  main#main {
    padding-top: 72px;
  }
}

@media (max-width: 575px) {
  main#main {
    padding-top: 68px;
  }
}

/* ─── Banner page — already has own padding-top ─── */
.hn_banner {
  padding-top: 130px !important;
}

@media (max-width: 991px) {
  .hn_banner {
    padding-top: 110px !important;
  }
}

/* ─── Inner page banner ─── */
.hn_page_banner {
  padding-top: 130px !important;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .hn_page_banner {
    padding-top: 110px !important;
  }
}

/* ─── Header dropdown menu (dark theme) ─── */
.hn_header .dropdown-menu {
  background: #0d1322 !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6) !important;
  margin-top: 8px !important;
}

.hn_header .dropdown-item {
  font-size: 0.845rem;
  color: #94A3B8;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hn_header .dropdown-item:hover,
.hn_header .dropdown-item.active {
  background: rgba(99, 179, 237, 0.12) !important;
  color: #63B3ED !important;
}

.hn_header .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.07) !important;
  margin: 4px 0 !important;
}

/* ─── Header initial transparent → sticky dark ─── */
.hn_header {
  background: transparent;
}

/* On page load show header background immediately for non-banner pages */
.page-inner .hn_header {
  background: rgba(5, 8, 15, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║   NEXVAULT — PROFESSIONAL SECTION SYSTEM                    ║
   ║   Alternating backgrounds • W3C valid • No inline CSS       ║
   ║   Section naming: hn_[name] / nx-[component]                ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION BACKGROUND PALETTE
   bg-a → #05080f  (darkest)
   bg-b → #070b14  (mid-dark + subtle blue tint)
   bg-c → #060a12  (with mesh overlay)
   bg-d → #08101a  (slight indigo)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* Section background tokens */
  --s-bg-a: #05080f;
  --s-bg-b: #07091a;
  --s-bg-c: #060c16;
  --s-bg-d: #090e1c;
  --s-bg-e: #050910;

  /* Glow accents */
  --s-glow-cyan: rgba(99, 179, 237, 0.07);
  --s-glow-violet: rgba(159, 122, 234, 0.06);
  --s-glow-green: rgba(72, 187, 120, 0.05);

  /* Separator lines */
  --s-sep: rgba(255, 255, 255, 0.04);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hn_banner,
.hn_about,
.hn_plan,
.hn_blog,
.hn_how_work,
.hn_investor,
.hn_testimonial,
.hn_referral,
.hn_referral_step,
.hn_contact,
.hn_calculator,
.hn_transaction,
.hn_newsletter,
.nx-section-faq,
.nx-section-why,
.hn_holiday_section,
.hn_ranking_section {
  position: relative;
  overflow: hidden;
}

/* Top separator glow line for every section */
.hn_about::before,
.hn_plan::before,
.hn_blog::before,
.hn_how_work::before,
.hn_investor::before,
.hn_testimonial::before,
.hn_referral::before,
.hn_referral_step::before,
.hn_contact::before,
.hn_calculator::before,
.hn_transaction::before,
.nx-section-faq::before,
.nx-section-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--c-border-glow) 30%,
      var(--c-cyan) 50%,
      var(--c-border-glow) 70%,
      transparent 100%);
  opacity: 0.35;
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION ALTERNATING BACKGROUNDS
   Odd  sections → --s-bg-a (darkest, base)
   Even sections → --s-bg-b / --s-bg-c (slightly lighter)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* BANNER — base darkest */
.hn_banner {
  background-color: var(--s-bg-a);
}

/* ABOUT — bg-b with cyan glow top-left */
.hn_about {
  background-color: var(--s-bg-b);
}

.hn_about::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--s-glow-cyan) 0%, transparent 70%);
  pointer-events: none;
}

/* PLAN — bg-a with violet glow */
.hn_plan {
  background-color: var(--s-bg-a);
}

.hn_plan::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--s-glow-violet) 0%, transparent 70%);
  pointer-events: none;
}

/* CALCULATOR — bg-c distinct */
.hn_calculator {
  background-color: var(--s-bg-c);
}

.hn_calculator::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--s-glow-cyan) 0%, transparent 65%);
  pointer-events: none;
}

/* TRANSACTION — bg-b */
.hn_transaction {
  background-color: var(--s-bg-b);
}

/* STAKING (uses hn_plan class) — already covered above */

/* INVESTOR — bg-d with violet */
.hn_investor {
  background-color: var(--s-bg-d);
}

.hn_investor::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -60px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, var(--s-glow-violet) 0%, transparent 65%);
  pointer-events: none;
}

/* HOW IT WORKS — bg-a */
.hn_how_work {
  background-color: var(--s-bg-a);
}

.hn_how_work::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--s-glow-cyan) 0%, transparent 70%);
  pointer-events: none;
}

/* REFERRAL / AFFILIATE — bg-c */
.hn_referral {
  background-color: var(--s-bg-c);
}

/* REFERRAL STEP — bg-b */
.hn_referral_step {
  background-color: var(--s-bg-b);
}

.hn_referral_step::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--s-glow-green) 0%, transparent 65%);
  pointer-events: none;
}

/* TESTIMONIAL — bg-a */
.hn_testimonial {
  background-color: var(--s-bg-a);
}

.hn_testimonial::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--s-glow-violet) 0%, transparent 65%);
  pointer-events: none;
}

/* BLOG — bg-d */
.hn_blog {
  background-color: var(--s-bg-d);
}

/* CONTACT — bg-c */
.hn_contact {
  background-color: var(--s-bg-c);
}

.hn_contact::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--s-glow-cyan) 0%, transparent 65%);
  pointer-events: none;
}

/* FAQ — bg-b */
.nx-section-faq {
  background-color: var(--s-bg-b);
}

/* WHY CHOOSE US — bg-a */
.nx-section-why {
  background-color: var(--s-bg-a);
}

.nx-section-why::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--s-glow-violet) 0%, transparent 65%);
  pointer-events: none;
}

/* NEWSLETTER — bg-c */
.hn_newsletter {
  background-color: var(--s-bg-c);
}

/* HOLIDAY — bg-d */
.hn_holiday_section {
  background-color: var(--s-bg-d);
}

/* RANKING — bg-b */
.hn_ranking_section {
  background-color: var(--s-bg-b);
}

/* z-index fix: content above glow */
.hn_about>.container,
.hn_plan>.container,
.hn_calculator>.container,
.hn_investor>.container,
.hn_how_work>.container,
.hn_referral>.container,
.hn_referral_step>.container,
.hn_testimonial>.container,
.hn_blog>.container,
.hn_contact>.container,
.nx-section-faq>.container,
.nx-section-why>.container,
.hn_newsletter>.container,
.hn_transaction>.container {
  position: relative;
  z-index: 1;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADING SYSTEM (hn_block_header)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hn_block_header {
  margin-bottom: 52px;
}

.hn_block_title {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.hn_block_title span {
  display: inline;
}

.hn_block_header>p {
  font-size: 0.95rem;
  color: var(--c-text2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.nx-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.nx-grad-text {
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-color {
  color: var(--c-cyan);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-plan-card  (plan.blade / all_plan.blade / staking.blade)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-plan-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nx-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-glow);
  box-shadow: 0 20px 60px rgba(99, 179, 237, 0.1);
}

.nx-plan-card--featured {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 1px var(--c-cyan-glow), 0 20px 60px rgba(99, 179, 237, 0.15);
}

.nx-plan-card--featured:hover {
  box-shadow: 0 0 0 1px var(--c-cyan), 0 24px 70px rgba(99, 179, 237, 0.2);
}

.nx-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.nx-plan-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  background: linear-gradient(180deg, rgba(99, 179, 237, 0.04) 0%, transparent 100%);
}

.nx-plan-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}

.nx-plan-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nx-plan-name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.nx-plan-price-val {
  font-family: var(--f-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-cyan);
}

.nx-plan-price-cur {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text3);
  text-transform: uppercase;
}

.nx-plan-price-sep {
  font-size: 0.78rem;
  color: var(--c-text3);
}

.nx-plan-features {
  padding: 18px 24px;
  flex: 1;
}

.nx-plan-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx-plan-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.82rem;
  color: var(--c-text2);
  gap: 8px;
}

.nx-plan-features li:last-child {
  border-bottom: none;
}

.nx-plan-features li>span:first-child {
  color: var(--c-text3);
}

.nx-val {
  font-weight: 600;
  color: var(--c-text);
}

.nx-val--accent {
  color: var(--c-cyan);
  font-weight: 700;
}

.nx-val--green {
  color: var(--c-green);
  font-weight: 700;
}

.nx-check-yes {
  color: var(--c-green);
}

.nx-check-no {
  color: var(--c-red);
}

.nx-plan-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--c-border);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-stake-card  (staking)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-stake-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nx-stake-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-violet-dim);
  box-shadow: 0 20px 60px rgba(159, 122, 234, 0.12);
}

.nx-stake-header {
  padding: 28px 24px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(159, 122, 234, 0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--c-border);
}

.nx-stake-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-violet-dim);
  border: 1px solid rgba(159, 122, 234, 0.2);
  color: var(--c-violet);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.nx-stake-name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-stake-profit {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-violet);
  line-height: 1;
}

.nx-stake-profit span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  font-family: var(--f-body);
}

.nx-stake-features {
  padding: 18px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx-stake-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--c-card2);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
}

.nx-stake-row>span:first-child {
  color: var(--c-text3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nx-stake-row>span:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.nx-stake-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--c-border);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-blog-card  (blog / all_blog)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-blog-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nx-blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-glow);
  box-shadow: 0 16px 48px rgba(99, 179, 237, 0.1);
}

.nx-blog-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.nx-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.nx-blog-card:hover .nx-blog-thumb img {
  transform: scale(1.05);
}

.nx-blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 15, 0.7) 100%);
}

.nx-blog-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--c-text3);
}

.nx-blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nx-blog-title {
  font-family: var(--f-head);
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.nx-blog-title a {
  color: var(--c-text);
  transition: color 0.2s;
}

.nx-blog-title a:hover {
  color: var(--c-cyan);
}

.nx-blog-excerpt {
  font-size: 0.845rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin: 0;
}

.nx-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-cyan);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}

.nx-blog-btn:hover {
  gap: 10px;
  color: var(--c-cyan);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-how-*  (howitwork)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  position: relative;
}

.nx-how-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.nx-how-card:hover {
  border-color: var(--c-cyan-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(99, 179, 237, 0.09);
}

.nx-how-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--f-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #63b3ed7a;
  line-height: 1;
  user-select: none;
}

.nx-how-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--r-md);
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: border-color 0.3s;
}

.nx-how-card:hover .nx-how-icon {
  border-color: var(--c-cyan-glow);
}

.nx-how-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nx-how-card:hover .nx-how-icon i {
  color: #fff;
}

.nx-how-title {
  font-family: var(--f-head);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-how-desc {
  font-size: 0.845rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin: 0;
}

.nx-how-line {
  display: none;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-testi-*  (testimonial)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-testi-slider {
  padding-bottom: 40px;
}

.nx-testi-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  margin: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.nx-testi-card:hover {
  border-color: var(--c-border-glow);
  box-shadow: 0 12px 40px rgba(99, 179, 237, 0.08);
}

.nx-testi-quote {
  font-size: 2rem;
  color: var(--c-cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
}

.nx-testi-text {
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.nx-testi-stars {
  margin-bottom: 16px;
  color: var(--c-amber);
  font-size: 0.82rem;
}

.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.nx-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-border-glow);
  flex-shrink: 0;
}

.nx-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 2px;
}

.nx-testi-role {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-investor-* (investor slider)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-investor-slider {
  padding-bottom: 40px;
}

.nx-investor-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  margin: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.nx-investor-card:hover {
  border-color: var(--c-border-glow);
  transform: translateY(-3px);
}

.nx-investor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-border-glow);
  flex-shrink: 0;
  background: var(--c-card2);
}

.nx-investor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-investor-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 3px;
}

.nx-investor-amount {
  font-size: 0.78rem;
  color: var(--c-cyan);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-faq-*  (faq)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s;
}

.nx-faq-item:has(.collapse.show) {
  border-color: var(--c-cyan-glow);
}

.nx-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.nx-faq-question:hover {
  color: var(--c-cyan);
}

.nx-faq-icon {
  font-size: 0.9rem;
  color: var(--c-text3);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.2s;
}

.nx-faq-question[aria-expanded="true"] .nx-faq-icon {
  transform: rotate(45deg);
  color: var(--c-cyan);
}

.nx-faq-answer {
  padding: 4px 22px 18px;
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.75;
  border-top: 1px solid var(--c-border);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-contact-* (contact)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nx-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color 0.2s, transform 0.2s;
}

.nx-contact-info-item:hover {
  border-color: var(--c-border-glow);
  transform: translateX(4px);
}

.nx-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nx-contact-info-icon--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159, 122, 234, 0.2);
  color: var(--c-violet);
}

.nx-contact-info-icon--green {
  background: var(--c-green-dim);
  border-color: rgba(72, 187, 120, 0.2);
  color: var(--c-green);
}

.nx-contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin: 0 0 4px;
  font-weight: 700;
}

.nx-contact-info-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 2px;
}

.nx-contact-info-val a {
  color: var(--c-text);
  transition: color 0.2s;
}

.nx-contact-info-val a:hover {
  color: var(--c-cyan);
}

.nx-contact-info-sub {
  font-size: 0.78rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-contact-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-why-*  (why_choose_us)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.nx-why-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.nx-why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.nx-why-card:hover {
  border-color: var(--c-cyan-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 179, 237, 0.08);
}

.nx-why-card:hover::after {
  opacity: 1;
}

.nx-why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nx-why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.nx-why-num {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(99, 179, 237, 0.07);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.nx-why-title {
  font-family: var(--f-head);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.nx-why-desc {
  font-size: 0.845rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-aff-*  (affiliate_step)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-aff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.nx-aff-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  text-align: center;
}

.nx-aff-card:hover {
  border-color: var(--c-cyan-glow);
  transform: translateY(-4px);
}

.nx-aff-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.nx-aff-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-aff-step-num {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text3);
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 3px 9px;
}

.nx-aff-title {
  font-family: var(--f-head);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.nx-aff-desc {
  font-size: 0.845rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin: 0;
}

.nx-aff-arrow {
  display: none;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-tier-*  (referral commissions)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.nx-tier-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  text-align: center;
  min-width: 110px;
  transition: border-color 0.25s, transform 0.25s;
}

.nx-tier-card:hover {
  border-color: var(--c-cyan-glow);
  transform: translateY(-3px);
}

.nx-tier-card--violet {
  border-color: rgba(159, 122, 234, 0.2);
}

.nx-tier-card--violet:hover {
  border-color: var(--c-violet);
}

.nx-tier-level {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text3);
  margin-bottom: 8px;
}

.nx-tier-pct {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-cyan);
  line-height: 1;
}

.nx-tier-card--violet .nx-tier-pct {
  color: var(--c-violet);
}

.nx-tier-pct span {
  font-size: 1rem;
}

.nx-tier-label {
  font-size: 0.7rem;
  color: var(--c-text3);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nx-referral-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.nx-referral-block-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--c-cyan-dim);
  border: 1px solid var(--c-cyan-glow);
  color: var(--c-cyan);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nx-referral-block-icon--violet {
  background: var(--c-violet-dim);
  border-color: rgba(159, 122, 234, 0.2);
  color: var(--c-violet);
}

.nx-referral-block-title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 3px;
}

.nx-referral-block-sub {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-referral-divider {
  height: 1px;
  background: var(--c-border);
  margin: 40px 0;
  position: relative;
}

.nx-referral-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--c-cyan);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-rank-*  (ranking)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-rank-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nx-rank-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-glow);
  box-shadow: 0 16px 48px rgba(99, 179, 237, 0.08);
}

.nx-rank-card--top-1 {
  border-color: #F6C90E;
  box-shadow: 0 0 0 1px rgba(246, 201, 14, 0.3);
}

.nx-rank-card--top-2 {
  border-color: #9CA3AF;
}

.nx-rank-card--top-3 {
  border-color: #CD7F32;
}

.nx-rank-top {
  padding: 28px 20px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(99, 179, 237, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.nx-rank-crown {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.9rem;
  color: #F6C90E;
  opacity: 0.7;
}

.nx-rank-badge {
  display: inline-block;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--c-text3);
  padding: 3px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nx-rank-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid var(--c-border-glow);
  background: var(--c-card2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-rank-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-rank-name {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 8px;
}

.nx-rank-bonus {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-green);
}

.nx-rank-details {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nx-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 6px 10px;
  background: var(--c-card2);
  border-radius: 6px;
}

.nx-rank-row>span:first-child {
  color: var(--c-text3);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-holiday-*
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-holiday-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
}

.nx-holiday-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-card2);
}

.nx-holiday-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nx-holiday-icon--red {
  background: var(--c-red-dim);
  border: 1px solid rgba(252, 129, 129, 0.2);
  color: var(--c-red);
}

.nx-holiday-icon--amber {
  background: var(--c-amber-dim);
  border: 1px solid rgba(246, 173, 85, 0.2);
  color: var(--c-amber);
}

.nx-holiday-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

.nx-holiday-list {
  list-style: none;
  margin: 0;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nx-holiday-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--c-card2);
  border-radius: var(--r-sm);
  font-size: 0.845rem;
  color: var(--c-text2);
}

.nx-holiday-list li i {
  color: var(--c-red);
  flex-shrink: 0;
}

.nx-holiday-empty {
  color: var(--c-text3) !important;
}

.nx-holiday-empty i {
  color: var(--c-green) !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-tx-*  (transaction tabs)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-tx-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.nx-tx-tabs {
  display: flex;
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.nx-tx-tabs::-webkit-scrollbar {
  display: none;
}

.nx-tx-tab {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 16px 18px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--c-text3);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.nx-tx-tab:hover {
  color: var(--c-cyan);
}

.nx-tx-tab.active {
  color: var(--c-cyan);
  border-bottom-color: var(--c-cyan);
}

.nx-tx-pane {
  display: none;
}

.nx-tx-pane.active {
  display: block;
}

.nx-tx-trx {
  font-family: monospace;
  font-size: 0.78rem;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--c-text3);
}

.nx-tx-user {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.845rem;
  color: var(--c-text);
}

.nx-tx-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-head);
}

.nx-tx-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
}

.nx-tx-badge--cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  border: 1px solid var(--c-cyan-glow);
}

.nx-tx-badge--green {
  background: var(--c-green-dim);
  color: var(--c-green);
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.nx-tx-badge--amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
  border: 1px solid rgba(246, 173, 85, 0.2);
}

.nx-tx-amount {
  font-weight: 600;
  color: var(--c-cyan);
  font-family: var(--f-mono);
}

.nx-tx-empty {
  text-align: center;
  padding: 40px;
  color: var(--c-text3);
  font-size: 0.875rem;
}

.nx-dim {
  color: var(--c-text3);
  font-size: 0.8rem;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-newsletter-*
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-newsletter-wrap {
  padding: 80px 0;
}

.nx-newsletter-inner {
  background: var(--c-card);
  border: 1px solid var(--c-border-glow);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.nx-newsletter-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.nx-newsletter-glow {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(159, 122, 234, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.nx-newsletter-title {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 12px;
}

.nx-newsletter-desc {
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.7;
  margin: 0;
}

.nx-newsletter-form {
  position: relative;
  z-index: 1;
}

.nx-newsletter-field {
  display: flex;
  align-items: center;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  gap: 8px;
  transition: border-color 0.2s;
}

.nx-newsletter-field:focus-within {
  border-color: var(--c-cyan);
}

.nx-newsletter-field-icon {
  color: var(--c-text3);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nx-newsletter-field .form-control {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: var(--c-text);
  font-size: 0.875rem;
}

.nx-newsletter-field .form-control::placeholder {
  color: var(--c-text3);
}

.nx-newsletter-btn {
  border-radius: var(--r-pill) !important;
  flex-shrink: 0;
}

.nx-newsletter-note {
  font-size: 0.75rem;
  color: var(--c-text3);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 767px) {
  .nx-newsletter-inner {
    padding: 32px 24px;
  }

  .nx-newsletter-field {
    flex-wrap: wrap;
    border-radius: var(--r-md);
  }

  .nx-newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   nx-about-*
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-about-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-about-img-main img {
  max-width: 100%;
  filter: drop-shadow(0 0 60px rgba(99, 179, 237, 0.14));
  animation: nx-float 6s ease-in-out infinite;
}

@keyframes nx-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.nx-about-img-shadow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  opacity: 0.3;
  filter: blur(12px);
}

.nx-about-badge {
  position: absolute;
  bottom: 20px;
  right: -8px;
  background: var(--c-card2);
  border: 1px solid var(--c-cyan-glow);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.nx-about-badge i {
  color: var(--c-green);
}

.nx-about-title {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.nx-about-desc {
  font-size: 0.95rem;
  color: var(--c-text2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.nx-about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}

.nx-about-stat-item {
  text-align: center;
  flex: 1;
}

.nx-about-stat-item+.nx-about-stat-item {
  border-left: 1px solid var(--c-border);
  padding-left: 24px;
}

.nx-about-stat-num {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--c-cyan), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.nx-about-stat-lbl {
  font-size: 0.68rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .nx-about-stats {
    gap: 14px;
  }

  .nx-about-stat-item+.nx-about-stat-item {
    padding-left: 14px;
  }

  .nx-about-badge {
    display: none;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   hn_calculator_wrapper
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hn_calculator_wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
}

.hn_calculator_wrapper .form-label,
.hn_calculator_wrapper label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text2);
  margin-bottom: 8px;
  display: block;
}

.cal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  background: var(--c-card2);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  font-size: 0.845rem;
}

.cal-list li .caption {
  color: var(--c-text3);
}

.cal-list li .value {
  color: var(--c-cyan);
  font-weight: 600;
  font-family: var(--f-mono);
}

@media (max-width: 767px) {
  .hn_calculator_wrapper {
    padding: 24px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRANSACTION JS TABS (data-target custom)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-tx-wrap .nx-tx-tab {
  cursor: pointer;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION PADDING — unified
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hn_about,
.hn_plan,
.hn_blog,
.hn_how_work,
.hn_investor,
.hn_testimonial,
.hn_referral,
.hn_referral_step,
.hn_contact,
.hn_calculator,
.hn_transaction,
.nx-section-faq,
.nx-section-why,
.hn_holiday_section,
.hn_ranking_section {
  padding: 100px 0;
}

@media (max-width: 767px) {

  .hn_about,
  .hn_plan,
  .hn_blog,
  .hn_how_work,
  .hn_investor,
  .hn_testimonial,
  .hn_referral,
  .hn_referral_step,
  .hn_contact,
  .hn_calculator,
  .hn_transaction,
  .nx-section-faq,
  .nx-section-why,
  .hn_holiday_section,
  .hn_ranking_section {
    padding: 64px 0;
  }
}

/* py-120 utility */
.py-120 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .py-120 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX BADGE  — status pills used across all log pages
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.nx-badge-green {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-badge-cyan {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-badge-amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-badge-red {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.nx-badge-violet {
  background: var(--c-violet-dim);
  color: var(--c-violet);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX TRX ID  — monospace transaction id pill
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-trx-id {
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX BALANCE ROW  — info row used in modals & pages
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stk-balance-row {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAKING MODAL SUMMARY CARD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stk-summary {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 14px 8px;
}

.stk-summary-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-cyan);
  margin-bottom: 3px;
}

.stk-summary-lbl {
  font-size: 0.7rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAKING PLAN BADGE  (Fixed / Percent label)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-staking-badge-fixed {
  background: var(--c-green-dim);
  color: var(--c-green);
  font-size: 0.72rem;
}

.nx-staking-badge-percent {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
  font-size: 0.72rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GATEWAY CARDS  — deposit / payment method selector
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-gateway-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.nx-gateway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-cyan-dim), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.nx-gateway-card:hover {
  border-color: var(--c-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 179, 237, 0.1);
}

.nx-gateway-card:hover::before {
  opacity: 1;
}

.nx-gateway-card.selected {
  border-color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.nx-gateway-img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-gateway-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-gateway-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-cyan);
}

.nx-gateway-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.nx-gateway-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-gateway-sub {
  font-size: 0.72rem;
  color: var(--c-text3);
  margin: 0;
}

.nx-gateway-arrow {
  color: var(--c-border-glow);
  font-size: 1.2rem;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nx-gateway-card:hover .nx-gateway-arrow {
  color: var(--c-cyan);
  transform: translateX(3px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX OUTLINE BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hn_btn_outline {
  background: transparent;
  border: 1.5px solid var(--c-cyan);
  color: var(--c-cyan);
  border-radius: var(--r-pill);
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--dur) var(--ease);
}

.hn_btn_outline:hover {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX FILTER SELECT  — compact dark styled select
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-filter-select {
  width: auto;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}

.nx-filter-select:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: none;
}

.nx-filter-select option {
  background: var(--c-card2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NX TD TRUNCATE  — table cell with max-width clamp
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-td-truncate {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GATEWAY FALLBACK  — hidden by default, shown via JS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-gateway-img-fallback {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HN MAIN TABLE — Global Redesign (Transaction / Log pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Table base ── */
.table.hn_main_table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.85rem;
}

/* ── Header ── */
.table.hn_main_table thead tr {
  background: linear-gradient(90deg,
      rgba(99, 179, 237, 0.15) 0%,
      rgba(159, 122, 234, 0.10) 100%);
}

.table.hn_main_table thead th {
  background: transparent;
  color: #b0c4de;
  font-family: var(--f-head);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.table.hn_main_table thead th:first-child {
  border-radius: var(--r-sm) 0 0 0;
}

.table.hn_main_table thead th:last-child {
  border-radius: 0 var(--r-sm) 0 0;
}

.card-body.p-0 .table.hn_main_table thead th:first-child,
.card-body.p-0 .table.hn_main_table thead th:last-child {
    border-radius: 0 !important;
}

/* ── Body rows ── */
.table.hn_main_table tbody tr {
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: hnRowIn 0.32s var(--ease) both;
}

.table.hn_main_table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.07);
}

.table.hn_main_table tbody tr:hover {
  background: rgba(99, 179, 237, 0.12) !important;
  box-shadow: inset 3px 0 0 var(--c-cyan);
}

/* ── Body cells ── */
.table.hn_main_table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
  background-color: #0b111c;
  color: #fff;
}

.table.hn_main_table tbody tr:last-child td {
  border-bottom: none;
}

/* ── TRX ID pill ── */
.table.hn_main_table .nx-trx-id {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
  border: 1px solid rgba(99, 179, 237, 0.18);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.4px;
  transition: background var(--dur), border-color var(--dur);
}

.table.hn_main_table tbody tr:hover .nx-trx-id {
  background: rgba(99, 179, 237, 0.2);
  border-color: rgba(99, 179, 237, 0.38);
}

/* ── Details / description cell ── */
.table.hn_main_table .nx-td-truncate {
  max-width: 240px;
}

.table.hn_main_table .nx-td-truncate span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--c-text2);
  font-size: 0.82rem;
}

/* ── Amount — monospace numbers ── */
.table.hn_main_table .fw-semibold {
  font-family: var(--f-mono);
  letter-spacing: 0.4px;
}

/* ── Badge upgrades ── */
.table.hn_main_table .nx-badge {
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: box-shadow var(--dur);
}

.table.hn_main_table .nx-badge-green {
  border: 1px solid rgba(72, 187, 120, 0.22);
}

.table.hn_main_table .nx-badge-red {
  border: 1px solid rgba(252, 129, 129, 0.22);
}

.table.hn_main_table tbody tr:hover .nx-badge-green {
  box-shadow: 0 0 10px rgba(72, 187, 120, 0.22);
}

.table.hn_main_table tbody tr:hover .nx-badge-red {
  box-shadow: 0 0 10px rgba(252, 129, 129, 0.22);
}

/* ── Charge / muted cells ── */
.table.hn_main_table .nx-muted {
  font-size: 0.82rem;
  color: var(--c-text3);
}

/* ── Date cell ── */
.table.hn_main_table .nx-dim {
  font-size: 0.77rem;
  white-space: nowrap;
}

/* ── Row staggered fade-in ── */
@keyframes hnRowIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.table.hn_main_table tbody tr:nth-child(1) {
  animation-delay: 0.04s;
}

.table.hn_main_table tbody tr:nth-child(2) {
  animation-delay: 0.08s;
}

.table.hn_main_table tbody tr:nth-child(3) {
  animation-delay: 0.12s;
}

.table.hn_main_table tbody tr:nth-child(4) {
  animation-delay: 0.16s;
}

.table.hn_main_table tbody tr:nth-child(5) {
  animation-delay: 0.20s;
}

.table.hn_main_table tbody tr:nth-child(6) {
  animation-delay: 0.24s;
}

.table.hn_main_table tbody tr:nth-child(7) {
  animation-delay: 0.27s;
}

.table.hn_main_table tbody tr:nth-child(n+8) {
  animation-delay: 0.30s;
}

/* ── Mobile — card layout ── */
@media (max-width: 767px) {
  .table.hn_main_table thead {
    display: none;
  }

  .table.hn_main_table tr {
    display: block;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
    transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  }

  .table.hn_main_table tr:hover {
    border-color: rgba(99, 179, 237, 0.3);
    background: rgba(99, 179, 237, 0.1) !important;
    box-shadow: 0 4px 20px rgba(99, 179, 237, 0.1);
    transform: translateY(-2px);
  }

  .table.hn_main_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.82rem;
  }

  .table.hn_main_table td:last-child {
    border-bottom: none;
  }

  /* label from data-header */
  .table.hn_main_table td::before {
    content: attr(data-header);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--c-text3);
    flex-shrink: 0;
    margin-right: 10px;
  }

  /* TRX top row left-border accent */
  .table.hn_main_table td:first-child {
    background: linear-gradient(90deg, rgba(99, 179, 237, 0.07) 0%, transparent 80%);
    border-left: 3px solid var(--c-cyan);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOG PAGE HEADER  —  nx-log-page-hd
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-log-page-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.09) 0%, rgba(159, 122, 234, 0.06) 100%);
  border: 1px solid rgba(99, 179, 237, 0.18);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.nx-log-page-hd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-cyan) 0%, var(--c-violet) 100%);
}

.nx-log-page-hd-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 179, 237, 0.15);
  border: 1px solid rgba(99, 179, 237, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.nx-log-page-hd h4 {
  font-size: 1.15rem;
  color: var(--c-text);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KPI CHIP ROW  —  nx-kpi-row / nx-kpi-chip
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nx-kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nx-kpi-chip {
  flex: 1 1 160px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.nx-kpi-chip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--nx-kpi-color, var(--c-cyan));
  opacity: 0.7;
}

.nx-kpi-chip:hover {
  border-color: var(--nx-kpi-color, var(--c-cyan));
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.nx-kpi-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--c-text3);
}

.nx-kpi-val {
  font-family: var(--f-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}

.nx-kpi-val small {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--c-text3);
  margin-left: 4px;
  font-family: var(--f-body);
}

/* KPI chip colour modifiers (replaces --nx-kpi-color inline variable) */
.nx-kpi-chip--cyan {
  --nx-kpi-color: var(--c-cyan);
}

.nx-kpi-chip--green {
  --nx-kpi-color: var(--c-green);
}

.nx-kpi-chip--amber {
  --nx-kpi-color: var(--c-amber);
}

.nx-kpi-chip--red {
  --nx-kpi-color: var(--c-red);
}

.nx-kpi-chip--violet {
  --nx-kpi-color: var(--c-violet);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOG CARD HEADER  —  nx-log-card-hd / nx-log-card-icon
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.card-header.nx-log-card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px !important;
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.06) 0%, transparent 55%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.nx-log-card-hd-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nx-log-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.nx-log-card-icon.c {
  background: rgba(99, 179, 237, 0.15);
  color: var(--c-cyan);
  border: 1px solid rgba(99, 179, 237, 0.25);
}

.nx-log-card-icon.g {
  background: rgba(72, 187, 120, 0.15);
  color: var(--c-green);
  border: 1px solid rgba(72, 187, 120, 0.25);
}

.nx-log-card-icon.v {
  background: rgba(159, 122, 234, 0.15);
  color: var(--c-violet);
  border: 1px solid rgba(159, 122, 234, 0.25);
}

.nx-log-card-icon.a {
  background: rgba(246, 173, 85, 0.15);
  color: var(--c-amber);
  border: 1px solid rgba(246, 173, 85, 0.25);
}

.nx-log-card-icon.r {
  background: rgba(252, 129, 129, 0.15);
  color: var(--c-red);
  border: 1px solid rgba(252, 129, 129, 0.25);
}

.nx-log-card-hd h5 {
  color: var(--c-text);
  font-size: 0.95rem;
}

.nx-log-card-hd .nx-dim {
  font-size: 0.75rem;
}

/* ████████████████████████████████████████████████████████████████████
   FRONTEND SITE — GLOBAL DESIGN UPGRADE  (CodeCanyon Professional)
   All sections: Hero · Stats · How · Why · Assets · Plans · Referral
                 Testimonials · FAQ · CTA / Newsletter
   ████████████████████████████████████████████████████████████████████ */

/* ══════════════════════════════════════════════
   1.  HERO / BANNER
   ══════════════════════════════════════════════ */

/* Richer radial-gradient backdrop */
.hn_banner::before {
  background:
    radial-gradient(ellipse 90% 70% at 15% 35%, rgba(99, 179, 237, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 88% 75%, rgba(159, 122, 234, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 55% 5%, rgba(72, 187, 120, 0.08) 0%, transparent 50%);
}

/* animated background orbs */
.hn_banner::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(60px) scale(1.1);
  }
}

/* Hero badge — glowing pill */
.nx-hero-badge {
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.18) 0%, rgba(159, 122, 234, 0.13) 100%);
  border: 1px solid rgba(99, 179, 237, 0.4);
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  padding: 7px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 22px rgba(99, 179, 237, 0.15);
}

/* Hero title - bigger + tighter */
.nx-banner-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem) !important;
  letter-spacing: -1.5px !important;
  line-height: 1.06 !important;
  margin-bottom: 22px;
}

/* Gradient highlight on banner title */
.nx-banner-title em,
.nx-banner-title span.grad {
  font-style: normal;
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Banner description - slightly larger */
.nx-banner-desc {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: #94a3b8;
}

/* Live markets panel - glassmorphism */
.hn_banner .col-lg-6:last-child>div {
  background: rgba(11, 16, 29, 0.82) !important;
  border: 1px solid rgba(99, 179, 237, 0.22) !important;
  border-radius: 20px !important;
  box-shadow:
    0 0 60px rgba(99, 179, 237, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(14px);
}

/* ══════════════════════════════════════════════
   2.  SECTION SPACING & SEPARATORS
   ══════════════════════════════════════════════ */

.nx-section {
  padding: 110px 0;
}

.nx-section-alt {
  position: relative;
  background: var(--c-bg2);
}

.nx-section-alt::before,
.nx-section-alt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 179, 237, 0.22) 50%, transparent 100%);
}

.nx-section-alt::before {
  top: 0;
}

.nx-section-alt::after {
  bottom: 0;
}

/* ══════════════════════════════════════════════
   3.  SECTION HEADINGS
   ══════════════════════════════════════════════ */

.hn_section_title {
  font-size: clamp(1.8rem, 3.8vw, 2.9rem) !important;
  letter-spacing: -0.8px !important;
  margin-bottom: 16px;
}

.hn_section_desc {
  font-size: 1rem !important;
  line-height: 1.85 !important;
  color: var(--c-text2);
  max-width: 580px;
}

.nx-label {
  font-size: 0.69rem;
  letter-spacing: 2.2px;
}

/* ══════════════════════════════════════════════
   4.  STATS / COUNTER CARDS
   ══════════════════════════════════════════════ */

.hn_counter_card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 38px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.hn_counter_card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0;
  transition: opacity 0.3s;
}

.hn_counter_card:hover {
  border-color: rgba(99, 179, 237, 0.28);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(99, 179, 237, 0.08);
  transform: translateY(-5px);
}

.hn_counter_card:hover::after {
  opacity: 1;
}

.hn_counter_num {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem) !important;
  margin-bottom: 10px;
}

.hn_counter_label {
  font-size: 0.8rem;
  color: var(--c-text2);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   5.  HOW IT WORKS CARDS
   ══════════════════════════════════════════════ */

.nx-how-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.025) 0%, var(--c-card) 100%) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-lg) !important;
  padding: 38px 30px !important;
  transition: all 0.35s var(--ease) !important;
}

.nx-how-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: opacity 0.35s;
}

.nx-how-card:hover {
  border-color: rgba(99, 179, 237, 0.32) !important;
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 28px rgba(99, 179, 237, 0.1) !important;
}

.nx-how-card:hover::after {
  opacity: 1;
}

.nx-how-icon {
  width: 72px !important;
  height: 72px !important;
  border-radius: 18px !important;
  font-size: 1.6rem !important;
  transition: all 0.35s var(--ease) !important;
}

.nx-how-card:hover .nx-how-icon {
  box-shadow: 0 0 24px rgba(99, 179, 237, 0.45) !important;
  transform: scale(1.08);
}

.nx-how-title {
  font-size: 1.1rem !important;
}

.nx-how-desc {
  color: var(--c-text2);
  line-height: 1.8 !important;
}

/* ══════════════════════════════════════════════
   6.  WHY CHOOSE US CARDS
   ══════════════════════════════════════════════ */

.nx-why-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.02) 0%, var(--c-card) 100%) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 28px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease) !important;
}

.nx-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  transition: width 0.4s var(--ease);
}

.nx-why-card:hover::after {
  width: 100%;
}

.nx-why-card:hover {
  border-color: rgba(99, 179, 237, 0.28) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 18px rgba(99, 179, 237, 0.07) !important;
}

.nx-why-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: var(--r-sm) !important;
}

.nx-why-title {
  font-size: 1rem !important;
  font-weight: 700;
}

.nx-why-desc {
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: var(--c-text3);
}

.nx-why-card:hover .nx-why-desc {
  color: var(--c-text2);
}

/* ══════════════════════════════════════════════
   7.  ASSET / GATEWAY CARDS
   ══════════════════════════════════════════════ */

.nx-gateway-card {
  background: var(--c-card) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 18px 20px !important;
  transition: all 0.3s var(--ease) !important;
}

.nx-gateway-card:hover {
  border-color: rgba(99, 179, 237, 0.32) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 14px rgba(99, 179, 237, 0.09) !important;
}

/* ══════════════════════════════════════════════
   8.  INVESTMENT PLAN CARDS
   ══════════════════════════════════════════════ */

.nx-plan {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.025) 0%, var(--c-card) 100%) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-lg) !important;
  padding: 36px 30px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease) !important;
}

.nx-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0;
  transition: opacity 0.35s;
}

.nx-plan:hover {
  border-color: rgba(99, 179, 237, 0.38) !important;
  transform: translateY(-10px) !important;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5), 0 0 38px rgba(99, 179, 237, 0.13) !important;
}

.nx-plan:hover::before {
  opacity: 1;
}

/* Featured (popular) plan */
.nx-plan-card--featured {
  background: linear-gradient(160deg, rgba(99, 179, 237, 0.12) 0%, rgba(159, 122, 234, 0.07) 50%, var(--c-card) 100%) !important;
  border-color: rgba(99, 179, 237, 0.45) !important;
  box-shadow: 0 0 44px rgba(99, 179, 237, 0.14) !important;
}

.nx-plan-card--featured::before {
  opacity: 1 !important;
}

/* Popular badge */
.nx-plan-badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 14px rgba(99, 179, 237, 0.4);
}

/* Plan ROI — gradient number */
.nx-plan-roi,
.nx-plan .nx-plan-roi {
  font-size: 3.6rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

/* Plan header icon */
.nx-plan-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.nx-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-cyan-dim);
  border: 1px solid rgba(99, 179, 237, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-cyan);
  flex-shrink: 0;
  transition: all 0.3s;
}

.nx-plan:hover .nx-plan-icon {
  background: var(--c-cyan);
  color: #fff;
  box-shadow: 0 0 18px rgba(99, 179, 237, 0.4);
}

.nx-plan:hover .nx-plan-icon i {
  color: #fff;
}

/* ══════════════════════════════════════════════
   9.  REFERRAL BLOCKS
   ══════════════════════════════════════════════ */

.nx-referral-block {
  background: var(--c-card) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: var(--r-md) !important;
  padding: 34px 26px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease) !important;
  height: 100%;
}

.nx-referral-block:hover {
  border-color: rgba(99, 179, 237, 0.28) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38) !important;
}

.nx-referral-block-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 16px !important;
  font-size: 1.5rem !important;
  margin: 0 auto 20px !important;
  transition: all 0.35s var(--ease) !important;
}

.nx-referral-block:hover .nx-referral-block-icon {
  background: var(--c-cyan) !important;
  border-color: var(--c-cyan) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(99, 179, 237, 0.45) !important;
}

.nx-referral-block-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.nx-referral-block-sub {
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: var(--c-text3) !important;
}

.nx-referral-block:hover .nx-referral-block-sub {
  color: var(--c-text2) !important;
}

/* ══════════════════════════════════════════════
   10. TESTIMONIAL CARDS  (nx-testi-card)
   ══════════════════════════════════════════════ */

.nx-testi-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.nx-testi-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 8rem;
  color: rgba(99, 179, 237, 0.07);
  line-height: 1;
  pointer-events: none;
  font-style: normal;
}

.nx-testi-card:hover {
  border-color: rgba(99, 179, 237, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38), 0 0 16px rgba(99, 179, 237, 0.07);
  transform: translateY(-5px);
}

.nx-testi-stars {
  color: var(--c-amber) !important;
  font-size: 0.88rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.nx-testi-text {
  font-size: 0.9rem !important;
  line-height: 1.88 !important;
  color: var(--c-text2) !important;
  font-style: italic;
  margin-bottom: 20px;
}

.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.nx-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.18);
  border: 2px solid rgba(99, 179, 237, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.nx-testi-name {
  font-size: 0.9rem !important;
  font-weight: 700;
  color: var(--c-text) !important;
}

.nx-testi-role {
  font-size: 0.72rem !important;
  color: var(--c-text3) !important;
  letter-spacing: 0.5px;
}

/* Equal-height: propagate flex height through Slick's inner wrapper div */
.nx-testi-slider.slick-initialized .slick-slide > div {
  height: 100%;
  display: flex;
}

/* ══════════════════════════════════════════════
   11. FAQ ITEMS
   ══════════════════════════════════════════════ */

/* card-style FAQ items */
[data-bs-toggle="collapse"].nx-faq-question,
.nx-faq-list [role="button"] {
  padding: 18px 22px !important;
  border-radius: var(--r-sm) !important;
  background: var(--c-card) !important;
}

.nx-faq-list .nx-faq-item,
.nx-section-faq .collapse,
.nx-section-faq [data-bs-toggle="collapse"] {
  background: var(--c-card);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--r-sm) !important;
  margin-bottom: 10px !important;
  overflow: hidden;
  transition: border-color 0.25s;
}

.nx-section-faq [data-bs-toggle="collapse"]:hover {
  border-color: rgba(99, 179, 237, 0.2) !important;
}

/* wrap the inline FAQ items in home.blade */
.nx-faq-list>div {
  background: var(--c-card);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--r-sm) !important;
  margin-bottom: 8px !important;
  padding: 0 4px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.nx-faq-list>div:hover {
  border-color: rgba(99, 179, 237, 0.22) !important;
}

/* ══════════════════════════════════════════════
   12. CTA / NEWSLETTER
   ══════════════════════════════════════════════ */

.nx-newsletter-wrap {
  padding: 6px;
}

.nx-newsletter-inner {
  background: linear-gradient(135deg,
      rgba(99, 179, 237, 0.10) 0%,
      rgba(159, 122, 234, 0.08) 45%,
      rgba(13, 19, 34, 0.95) 100%) !important;
  border: 1px solid rgba(99, 179, 237, 0.24) !important;
  border-radius: var(--r-lg) !important;
  padding: 72px 60px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99, 179, 237, 0.07) !important;
}

.nx-newsletter-inner::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.nx-newsletter-inner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(159, 122, 234, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.nx-newsletter-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
  background: linear-gradient(125deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.nx-newsletter-desc {
  font-size: 1.02rem !important;
  color: var(--c-text2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.nx-newsletter-field {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(99, 179, 237, 0.24) !important;
  border-radius: var(--r-pill) !important;
  padding: 6px 6px 6px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nx-newsletter-field:focus-within {
  border-color: rgba(99, 179, 237, 0.5) !important;
  box-shadow: 0 0 20px rgba(99, 179, 237, 0.12) !important;
}

.nx-newsletter-btn {
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-violet) 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 11px 26px !important;
  border-radius: var(--r-pill) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.nx-newsletter-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 22px rgba(99, 179, 237, 0.4) !important;
}

.nx-newsletter-note {
  font-size: 0.74rem !important;
  color: var(--c-text3) !important;
  margin-top: 12px !important;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   13. MOBILE ADJUSTMENTS
   ══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .nx-banner-title {
    letter-spacing: -0.8px !important;
  }

  .hn_counter_card {
    padding: 26px 16px;
  }

  .nx-how-card {
    padding: 28px 22px !important;
  }

  .nx-referral-block {
    padding: 26px 18px !important;
  }

  .nx-newsletter-inner {
    padding: 44px 28px !important;
  }

  .nx-testi-slider {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 575px) {
  .nx-newsletter-field {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-sm) !important;
    padding: 10px !important;
  }

  .nx-newsletter-btn {
    width: 100%;
    text-align: center;
    border-radius: var(--r-sm) !important;
  }
}

/* ████████████████████████████████████████████████████████████████████████████
   ██  FRONTEND GLOBAL DESIGN THICK — CODECANYON PROFESSIONAL UPGRADE        ██
   ██  Header · Body · Footer · All Sections · Buttons · Typography          ██
   ████████████████████████████████████████████████████████████████████████████ */

/* ─────────────────────────────────────────
   GLOBAL TYPOGRAPHY BOOST
   ───────────────────────────────────────── */
body {
  font-size: 15.5px;
  line-height: 1.72;
  color: #94a3b8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.3px;
  color: #e2e8f0;
}

p {
  line-height: 1.82;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   HEADER — premium sticky bar
   ───────────────────────────────────────── */
.hn_header {
  padding: 0 !important;
  background: rgba(5, 8, 15, 0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.hn_header.header-fixed {
  background: rgba(5, 8, 15, 0.97) !important;
  backdrop-filter: blur(28px) !important;
  border-bottom-color: rgba(99, 179, 237, 0.16) !important;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.55) !important;
}

.hn_header_area {
  padding: 18px 0 !important;
  transition: padding 0.3s ease !important;
}

.hn_header.header-fixed .hn_header_area {
  padding: 13px 0 !important;
}

/* Logo */
.hn_header_logo img {
  height: 38px !important;
}

/* Nav links */
.hn_header_menu li a {
  font-family: 'Geist', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  letter-spacing: 0.1px;
  transition: all 0.22s ease !important;
}

.hn_header_menu li a:hover,
.hn_header_menu li a.active {
  color: #63b3ed !important;
  background: rgba(99, 179, 237, 0.1) !important;
}

/* Sign In button */
.btn.hn_btn_border_base {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  padding: 10px 26px !important;
  border-width: 1.5px !important;
  letter-spacing: 0.1px;
}

/* Get Started button */
.btn.hn_btn_solid,
.btn.cmn-btn {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  padding: 10px 26px !important;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 18px rgba(99, 179, 237, 0.22) !important;
}

.btn.hn_btn_solid:hover,
.btn.cmn-btn:hover {
  box-shadow: 0 8px 28px rgba(99, 179, 237, 0.38) !important;
  transform: translateY(-3px) !important;
}

/* Mobile menu panel */
@media (max-width: 991px) {
  .hn_header_menu_area {
    background: rgba(5, 8, 15, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    border-left: 1px solid rgba(99, 179, 237, 0.14) !important;
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.7) !important;
  }

  .hn_header_menu li a {
    font-size: 1rem !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
}

/* ─────────────────────────────────────────
   HERO BANNER
   ───────────────────────────────────────── */
.hn_banner {
  padding-top: 140px !important;
  padding-bottom: 100px !important;
}

.hn_banner::before {
  background:
    radial-gradient(ellipse 90% 70% at 15% 35%, rgba(99, 179, 237, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 88% 75%, rgba(159, 122, 234, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 55% 0%, rgba(72, 187, 120, 0.09) 0%, transparent 50%) !important;
}

/* Hero badge */
.nx-hero-badge {
  font-size: 0.73rem !important;
  letter-spacing: 1.8px !important;
  padding: 8px 20px !important;
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.18), rgba(159, 122, 234, 0.12)) !important;
  border-color: rgba(99, 179, 237, 0.45) !important;
  box-shadow: 0 0 24px rgba(99, 179, 237, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Hero heading */
.nx-banner-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  line-height: 1.04 !important;
}

/* Hero description */
.nx-banner-desc {
  font-size: 1.08rem !important;
  line-height: 1.88 !important;
  color: #8fa0b5 !important;
  max-width: 540px;
}

/* Hero trust bar */
.nx-banner-trust {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(99, 179, 237, 0.18) !important;
  border-radius: 14px !important;
  padding: 14px 20px !important;
  backdrop-filter: blur(12px) !important;
}

/* ─────────────────────────────────────────
   SECTION HEADINGS
   ───────────────────────────────────────── */
.hn_section_title {
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  font-weight: 900 !important;
  letter-spacing: -1.2px !important;
  line-height: 1.08 !important;
  margin-bottom: 18px;
}

.hn_section_desc {
  font-size: 1.02rem !important;
  line-height: 1.88 !important;
  color: #8fa0b5 !important;
  max-width: 600px;
}

/* Centered desc text */
.text-center .hn_section_desc {
  margin-left: auto;
  margin-right: auto;
}

.nx-label {
  font-size: 0.68rem !important;
  letter-spacing: 2.5px !important;
  font-weight: 800 !important;
  color: #63b3ed;
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   STATS / COUNTER
   ───────────────────────────────────────── */
.hn_counter_card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 42px 26px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease !important;
}

.hn_counter_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-violet));
  opacity: 0;
  transition: opacity 0.35s;
}

.hn_counter_card:hover {
  border-color: rgba(99, 179, 237, 0.3) !important;
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(99, 179, 237, 0.08) !important;
}

.hn_counter_card:hover::before {
  opacity: 1;
}

.hn_counter_num {
  font-size: clamp(1.75rem, 5vw, 2.75rem) !important;
  font-weight: 900 !important;
  margin-bottom: 10px;
  display: block;
}

.hn_counter_label {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  color: #64748b !important;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.nx-how-card {
  background: linear-gradient(155deg, rgba(99, 179, 237, 0.05) 0%, rgba(13, 19, 34, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  padding: 44px 32px !important;
  overflow: hidden;
}

.nx-how-card:hover {
  border-color: rgba(99, 179, 237, 0.38) !important;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45), 0 0 32px rgba(99, 179, 237, 0.1) !important;
  transform: translateY(-12px) !important;
}

.nx-how-icon {
  width: 78px !important;
  height: 78px !important;
  border-radius: 20px !important;
  font-size: 1.8rem !important;
  margin-bottom: 24px !important;
  border-color: rgba(99, 179, 237, 0.22) !important;
}

.nx-how-card:hover .nx-how-icon {
  box-shadow: 0 0 28px rgba(99, 179, 237, 0.5) !important;
  transform: scale(1.1) rotate(-3deg) !important;
}

.nx-how-num {
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  margin-bottom: 18px;
}

.nx-how-title {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-bottom: 12px;
}

.nx-how-desc {
  font-size: 0.92rem !important;
  line-height: 1.82 !important;
  color: #64748b !important;
}

.nx-how-card:hover .nx-how-desc {
  color: #94a3b8 !important;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────── */
.nx-why-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 18px !important;
  padding: 30px !important;
}

.nx-why-card:hover {
  border-color: rgba(99, 179, 237, 0.32) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-8px) !important;
}

.nx-why-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  font-size: 1.25rem !important;
  border-color: rgba(99, 179, 237, 0.2) !important;
}

.nx-why-title {
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  color: #e2e8f0 !important;
}

.nx-why-desc {
  font-size: 0.88rem !important;
  line-height: 1.78 !important;
  color: #64748b !important;
}

.nx-why-card:hover .nx-why-desc {
  color: #8fa0b5 !important;
}

/* ─────────────────────────────────────────
   ASSET / GATEWAY CARDS
   ───────────────────────────────────────── */
.nx-gateway-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 20px 22px !important;
  transition: all 0.3s ease !important;
}

.nx-gateway-card:hover {
  border-color: rgba(99, 179, 237, 0.35) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 0 16px rgba(99, 179, 237, 0.1) !important;
  transform: translateY(-5px) !important;
}

/* ─────────────────────────────────────────
   PLAN CARDS
   ───────────────────────────────────────── */
.nx-plan {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.03) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  padding: 40px 32px !important;
}

.nx-plan:hover {
  border-color: rgba(99, 179, 237, 0.42) !important;
  transform: translateY(-14px) !important;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.52), 0 0 40px rgba(99, 179, 237, 0.14) !important;
}

.nx-plan-card--featured {
  background: linear-gradient(155deg, rgba(99, 179, 237, 0.14) 0%, rgba(159, 122, 234, 0.08) 50%, var(--c-card) 100%) !important;
  border-color: rgba(99, 179, 237, 0.48) !important;
  box-shadow: 0 0 50px rgba(99, 179, 237, 0.15) !important;
}

.nx-plan-name {
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
}

.nx-plan-roi {
  font-size: 4rem !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
}

.nx-plan-sub {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #64748b !important;
  letter-spacing: 0.5px;
}

.nx-plan-features li {
  font-size: 0.9rem !important;
  padding: 11px 0 !important;
  color: #8fa0b5 !important;
}

/* ─────────────────────────────────────────
   REFERRAL BLOCKS
   ───────────────────────────────────────── */
.nx-referral-block {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.03) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  padding: 40px 30px !important;
}

/* step number ghost decoration */
.nx-referral-block[data-step]::after {
  content: attr(data-step);
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: 'Geist', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(99, 179, 237, 0.06);
  line-height: 1;
  pointer-events: none;
}

.nx-referral-block {
  position: relative;
  overflow: hidden;
}

.nx-referral-block:hover {
  border-color: rgba(99, 179, 237, 0.3) !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-8px) !important;
}

.nx-referral-block-icon {
  width: 68px !important;
  height: 68px !important;
  border-radius: 18px !important;
  font-size: 1.6rem !important;
  margin-bottom: 22px !important;
}

.nx-referral-block-title {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #e2e8f0 !important;
  margin-bottom: 10px !important;
}

.nx-referral-block-sub {
  font-size: 0.9rem !important;
  line-height: 1.78 !important;
  color: #64748b !important;
}

.nx-referral-block:hover .nx-referral-block-sub {
  color: #8fa0b5 !important;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────── */
.nx-testi-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.028) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 34px !important;
}

.nx-testi-card:hover {
  border-color: rgba(99, 179, 237, 0.3) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-6px) !important;
}

.nx-testi-text {
  font-size: 0.95rem !important;
  line-height: 1.9 !important;
  color: #94a3b8 !important;
}

.nx-testi-name {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #e2e8f0 !important;
}

.nx-testi-role {
  font-size: 0.73rem !important;
  color: #4a5568 !important;
  letter-spacing: 0.4px;
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.nx-faq-list>div {
  border-radius: 14px !important;
  margin-bottom: 10px !important;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, var(--c-card) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}

.nx-faq-list>div:hover {
  border-color: rgba(99, 179, 237, 0.25) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3) !important;
}

/* FAQ question text */
.nx-faq-list [role="button"] span,
.nx-section-faq [data-bs-toggle="collapse"] span {
  font-size: 0.96rem !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
}

/* FAQ answer text */
.nx-faq-list .collapse p,
.nx-section-faq .collapse p {
  font-size: 0.9rem !important;
  line-height: 1.85 !important;
  color: #64748b !important;
  padding: 0 22px 16px !important;
}

/* ─────────────────────────────────────────
   CTA / NEWSLETTER
   ───────────────────────────────────────── */
.nx-newsletter-wrap {
  padding: 6px;
}

.nx-newsletter-inner {
  border-radius: 28px !important;
  padding: 80px 60px !important;
  background: linear-gradient(135deg,
      rgba(99, 179, 237, 0.12) 0%,
      rgba(159, 122, 234, 0.09) 45%,
      rgba(11, 16, 29, 0.97) 100%) !important;
  border: 1px solid rgba(99, 179, 237, 0.26) !important;
  box-shadow: 0 0 100px rgba(99, 179, 237, 0.09) !important;
}

.nx-newsletter-title {
  font-size: clamp(2rem, 4.5vw, 3.3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -1.2px !important;
  margin-bottom: 16px;
}

.nx-newsletter-desc {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: #8fa0b5 !important;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.hn_footer {
  background: #030610 !important;
  border-top: 1px solid rgba(99, 179, 237, 0.14) !important;
  padding-top: 86px !important;
  position: relative;
}

.hn_footer::before {
  width: 700px !important;
  background: linear-gradient(90deg, transparent, rgba(99, 179, 237, 0.35), transparent) !important;
}

/* Footer glow orb */
.hn_footer::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99, 179, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hn_footer .container {
  position: relative;
  z-index: 1;
}

.hn_footer_logo img {
  height: 38px !important;
}

/* Footer description */
.hn_footer .nx-muted {
  font-size: 0.9rem !important;
  line-height: 1.82 !important;
  color: #475569 !important;
  margin-top: 14px;
  max-width: 300px;
}

/* Social icons */
.hn_social_media {
  gap: 10px !important;
  margin-top: 24px !important;
  padding-left: 0;
}

.hn_social_media li a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  font-size: 0.95rem !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  transition: all 0.28s ease !important;
}

.hn_social_media li a:hover {
  background: rgba(99, 179, 237, 0.15) !important;
  border-color: rgba(99, 179, 237, 0.4) !important;
  color: #63b3ed !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 16px rgba(99, 179, 237, 0.2) !important;
}

/* Footer subscribe form */
.hn_footer #subscribe .form-control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  padding: 11px 16px !important;
  transition: border-color 0.25s !important;
}

.hn_footer #subscribe .form-control:focus {
  border-color: rgba(99, 179, 237, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1) !important;
  outline: none;
}

.hn_footer #subscribe .form-control::placeholder {
  color: #374151 !important;
}

/* Footer titles */
.hn_footer_title {
  font-size: 0.85rem !important;
  font-weight: 900 !important;
  letter-spacing: 2.2px !important;
  color: #e2e8f0 !important;
  margin-bottom: 22px !important;
  text-transform: uppercase;
}

/* Footer links */
.hn_footer_menu {
  padding-left: 0;
}

.hn_footer_menu li {
  margin-bottom: 10px !important;
}

.hn_footer_menu li a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s ease !important;
}

.hn_footer_menu li a i {
  font-size: 0.68rem;
  color: #334155;
  transition: all 0.22s;
}

.hn_footer_menu li a:hover {
  color: #63b3ed !important;
  padding-left: 5px !important;
}

.hn_footer_menu li a:hover i {
  color: #63b3ed;
}

/* Copyright bar */
.hn_copy_right {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 24px 0 !important;
  margin-top: 60px !important;
}

.hn_copy_right p {
  font-size: 0.84rem !important;
  color: #334155 !important;
}

/* ─────────────────────────────────────────
   BACK TO TOP
   ───────────────────────────────────────── */
.back-to-top {
  width: 44px !important;
  height: 44px !important;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet)) !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(99, 179, 237, 0.35) !important;
  font-size: 1rem !important;
}

.back-to-top:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 28px rgba(99, 179, 237, 0.5) !important;
}

/* ─────────────────────────────────────────
   SECTION ALTERNATES — stronger bg contrast
   ───────────────────────────────────────── */
.nx-section {
  padding: 112px 0 !important;
}

.nx-section-alt {
  background: #080d1a !important;
}

.nx-section-alt::before,
.nx-section-alt::after {
  background: linear-gradient(90deg, transparent 0%, rgba(99, 179, 237, 0.28) 50%, transparent 100%) !important;
}

/* ─────────────────────────────────────────
   TICKER STRIP
   ───────────────────────────────────────── */
.hn_banner+div[style*="tickerScroll"],
.hn_banner~div[style*="border-top"] {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  padding: 12px 0 !important;
}

/* ─────────────────────────────────────────
   MOBILE FINAL ADJUSTMENTS
   ───────────────────────────────────────── */
@media (max-width: 991px) {
  .hn_banner {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
  }

  .nx-section {
    padding: 72px 0 !important;
  }

  .nx-newsletter-inner {
    padding: 52px 28px !important;
  }

  .nx-plan {
    padding: 30px 24px !important;
  }

  .nx-how-card {
    padding: 32px 24px !important;
  }

  .nx-referral-block {
    padding: 30px 22px !important;
  }

  .nx-testi-card {
    padding: 26px !important;
  }
}

@media (max-width: 575px) {
  .hn_banner {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }

  .nx-section {
    padding: 56px 0 !important;
  }

  .hn_counter_card {
    padding: 28px 18px !important;
  }

  .nx-newsletter-inner {
    padding: 38px 20px !important;
    border-radius: 18px !important;
  }

  .hn_footer {
    padding-top: 56px !important;
  }

  .hn_footer .nx-muted {
    max-width: 100%;
  }
}

.nx-log-card-hd .nx-dim {
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════
   NEW HEADER — Binance-style with dropdowns
   ═══════════════════════════════════════════════ */
.hn_hdr_inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 70px;
}

/* ── Nav ── */
.hn_nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.hn_nav_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.hn_nav_item {
  position: relative;
}

.hn_nav_link {
  display: flex;
  align-items: center;
  color: var(--c-text2);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hn_nav_link:hover,
.hn_nav_link.active {
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
}

.hn_caret {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.hn_caret.rotated {
  transform: rotate(180deg);
}

/* ── Dropdown base ── */
.hn_dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  min-width: 200px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  padding: 8px;
}

.hn_dropdown.hn_drop_show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Wide card dropdown */
.hn_dropdown_wide {
  min-width: 540px;
  padding: 20px;
}

.hn_dd_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hn_dd_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.18s ease;
  color: var(--c-text2);
  text-decoration: none;
}

.hn_dd_card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(34, 211, 238, 0.25);
  color: #e2e8f0;
  text-decoration: none;
}

.hn_dd_icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hn_dd_body {
  flex: 1;
}

.hn_dd_title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.hn_dd_desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

.hn_dd_icon--cyan {
  background: rgba(34, 211, 238, .12);
  color: #22d3ee
}

.hn_dd_icon--violet {
  background: rgba(99, 102, 241, .12);
  color: #818cf8
}

.hn_dd_icon--amber {
  background: rgba(245, 158, 11, .12);
  color: #f59e0b
}

.hn_dd_icon--lms {
  background: rgba(99, 102, 241, .15);
  color: #818cf8
}

.hn_dd_title--lms {
  color: #818cf8
}

.hn_dd_card--lms {
  border: none;
  background: rgba(99, 102, 241, .06);
  border-radius: 8px;
}

.hn_dd_footer--lms {
  margin-top: 0;
  border-top: 1px solid rgba(148, 163, 184, .1)
}

.hn_dd_live-dot {
  color: #22d3ee;
  font-size: 6px;
  vertical-align: middle;
  margin-right: 4px
}

.hn_dd_footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hn_dd_badge {
  font-size: 0.72rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Plain dropdown items */
.hn_dd_item {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.855rem;
  color: var(--c-text2);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.hn_dd_item:hover,
.hn_dd_item.active {
  color: var(--c-cyan);
  background: var(--c-cyan-dim);
  text-decoration: none;
}

/* ── Mobile nav drawer ── */
.hn_nav_close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--c-text2);
  border-radius: var(--r-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

.hn_nav_mob_auth {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 991px) {
  .hn_nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 290px;
    height: 100vh;
    background: #0d1117;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 16px 40px;
    z-index: 9998;
    transition: right 0.28s ease;
    overflow-y: auto;
  }

  .hn_nav.hn_nav_open {
    right: 0;
    box-shadow: -8px 0 50px rgba(0, 0, 0, 0.7);
  }

  .hn_nav_menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
  }

  .hn_nav_item {
    width: 100%;
  }

  .hn_nav_link {
    width: 100%;
  }

  .hn_dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 6px;
    display: none;
    margin-top: 4px;
  }

  .hn_dropdown.hn_drop_show {
    display: block;
  }

  .hn_dropdown_wide {
    min-width: 0;
  }

  .hn_dd_grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════ */

/* ── Dashboard utilities ── */
.nx-stat-icon.c {
  background: rgba(34, 211, 238, .12);
  color: #22d3ee
}

/* Quick-link color variants */
.nx-quick-link--cyan {
  border-color: rgba(34, 211, 238, .4) !important;
  background: rgba(34, 211, 238, .06) !important
}

.nx-quick-link--cyan i,
.nx-quick-link--cyan p {
  color: var(--c-cyan, #22d3ee) !important
}

.nx-quick-link--cyan:hover {
  border-color: var(--c-cyan, #22d3ee) !important;
  background: rgba(34, 211, 238, .14) !important
}

.nx-quick-link--violet {
  border-color: rgba(159, 122, 234, .4) !important;
  background: rgba(159, 122, 234, .06) !important
}

.nx-quick-link--violet i,
.nx-quick-link--violet p {
  color: var(--c-violet, #9f7aea) !important
}

.nx-quick-link--violet:hover {
  border-color: var(--c-violet, #9f7aea) !important;
  background: rgba(159, 122, 234, .14) !important;
  color: var(--c-violet, #9f7aea) !important
}

.nx-quick-link--amber {
  border-color: rgba(246, 173, 85, .4) !important;
  background: rgba(246, 173, 85, .06) !important
}

.nx-quick-link--amber i,
.nx-quick-link--amber p {
  color: var(--c-amber, #f6ad55) !important
}

.nx-quick-link--amber:hover {
  border-color: var(--c-amber, #f6ad55) !important;
  background: rgba(246, 173, 85, .14) !important;
  color: var(--c-amber, #f6ad55) !important
}

.nx-quick-link--green {
  border-color: rgba(72, 187, 120, .4) !important;
  background: rgba(72, 187, 120, .06) !important
}

.nx-quick-link--green i,
.nx-quick-link--green p {
  color: var(--c-green, #48bb78) !important
}

.nx-quick-link--green:hover {
  border-color: var(--c-green, #48bb78) !important;
  background: rgba(72, 187, 120, .14) !important;
  color: var(--c-green, #48bb78) !important
}

.nx-stat-value--green {
  color: #48bb78
}

.nx-stat-value--red {
  color: #fc8181
}

.nx-stat-value--violet {
  color: #9f7aea
}

.nx-stat-link--static {
  cursor: default
}

.nx-badge-up {
  background: rgba(72, 187, 120, .15);
  color: #48bb78
}

.nx-badge-dn {
  background: rgba(252, 129, 129, .15);
  color: #fc8181
}

.nx-profit-pos {
  color: #48bb78
}

.nx-profit-neg {
  color: #fc8181
}

/* ── Home page utilities (replaces inline styles in home.blade.php) ── */
.nx-pulse-dot {
  display: inline-block;
  margin-right: 6px;
  width: 7px;
  height: 7px
}

.lm-head-title {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: .3px
}

.lm-head-meta {
  font-size: 10px;
  color: #475569;
  font-weight: 500
}

.nx-trust-count {
  color: #fff
}

/* Ticker strip */
.nx-tk-wrap {
  background: #0b0e17;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
  z-index: 2
}

.nx-tk-wrap::before,
.nx-tk-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 3;
  pointer-events: none
}

.nx-tk-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0b0e17, transparent)
}

.nx-tk-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #0b0e17, transparent)
}

.nx-tk-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content
}

.nx-tk-track:hover {
  animation-play-state: paused
}

.tk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 12.5px;
  padding: 0 4px
}

.tk-sym {
  font-weight: 700;
  color: #c9d1e0;
  font-family: var(--f-head, 'Inter', sans-serif);
  letter-spacing: .3px
}

.tk-price {
  color: #a0aec0;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px
}

.tk-chg {
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Roboto Mono', monospace
}

.tk-sep {
  color: #1e2a3a;
  font-size: 16px;
  margin: 0 4px
}

/* How-to icon color variants */
.nx-how-icon--cyan {
  background: rgba(34, 211, 238, 0.12)
}

.nx-how-icon--cyan i {
  color: #22d3ee
}

.nx-how-icon--green {
  background: rgba(72, 187, 120, 0.12)
}

.nx-how-icon--green i {
  color: #48bb78
}

/* Why-choose icon variants */
.nx-why-icon--yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b
}

.nx-why-icon--green {
  background: rgba(72, 187, 120, 0.12);
  color: #48bb78
}

.nx-why-icon--cyan {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee
}

.nx-why-icon--violet {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa
}

.nx-why-icon--pink {
  background: rgba(251, 113, 133, 0.12);
  color: #fb7185
}

.nx-why-icon--teal {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399
}

/* Asset payout card elements */
.nx-asset-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #818cf8;
  flex-shrink: 0
}

.nx-asset-info {
  flex: 1;
  min-width: 0
}

.nx-asset-name {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0
}

.nx-asset-sub {
  font-size: 11px;
  color: #64748b
}

.nx-asset-payout {
  font-size: 16px;
  font-weight: 700;
  color: #48bb78
}

.nx-asset-payout-lbl {
  font-size: 10px;
  color: #475569
}

.nx-duration-badge {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #64748b
}

.nx-gateway-card--static {
  cursor: default
}

/* Referral block icon color variants */
.nx-referral-block-icon--green {
  background: rgba(72, 187, 120, 0.15);
  border-color: rgba(72, 187, 120, 0.28);
  color: #48bb78
}

/* Testimonial avatar default background */
.nx-testi-avatar--indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8
}

.nx-testi-avatar--cyan {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee
}

.nx-testi-avatar--green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e
}

.nx-testi-avatar--violet {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6
}

.nx-testi-avatar--amber {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b
}

/* FAQ divider + text */
.nx-faq-item--divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.nx-faq-q-text {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0
}

.nx-faq-chevron {
  transition: transform .2s;
  flex-shrink: 0;
  color: #64748b
}

.nx-faq-answer-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 12px
}

/* Sidebar trade link */
.sb-trade-link {
  color: var(--c-cyan)
}

.sb-live-badge {
  background: var(--c-cyan);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 10px
}


/* ============================================================
   Extracted from blade templates
   ============================================================ */

/* --- frontend/home.blade.php --- */
@keyframes tickerScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.nx-testi-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px
}

.nx-testi-slide {
  display: flex
}

/* --- frontend/user/gateway/bank.blade.php --- */
.gw-info-text {
  font-size: .84rem;
  line-height: 1.7
}

.gw-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .84rem
}

.gw-info-label {
  color: #8b9cc8
}

.gw-info-value {
  color: #e8f0fe;
  font-weight: 500
}

.gw-notice-card {
  background: rgba(245, 166, 35, .06);
  border-color: rgba(245, 166, 35, .2)
}

.gw-notice-icon {
  color: #f5a623;
  font-size: 1.1rem;
  flex-shrink: 0
}

.gw-notice-text {
  font-size: .82rem;
  color: #e8f0fe
}

.gw-hint-text {
  font-size: .75rem
}

.gw-required {
  color: #e85261
}

.gw-btn-lg {
  padding: .75rem
}

.gw-label-sm {
  font-size: .75rem
}

/* --- frontend/user/gateway/crypto.blade.php --- */
.clipboard {
  position: relative;
}

/* You just need to get this field */
.copy-input {
  max-width: 275px;
  width: 100%;
  cursor: pointer;
  background-color: #eaeaeb;
  border: none;
  color: #6c6c6c;
  font-size: 14px;
  border-radius: 5px;
  padding: 15px 45px 15px 15px;
  font-family: 'Montserrat', sans-serif;
}

.copy-input:focus {
  outline: none;
}

.copy-btn {
  width: 40px;
  background-color: #eaeaeb;
  font-size: 18px;
  padding: 6px 9px;
  border-radius: 5px;
  border: none;
  color: #6c6c6c;
  margin-left: -50px;
  transition: all .4s;
}

.copy-btn:hover {
  transform: scale(1.3);
  color: #1a1a1a;
  cursor: pointer;
}

.copy-btn:focus {
  outline: none;
}

.copied {
  font-family: 'Montserrat', sans-serif;
  width: 100px;
  opacity: 0;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  color: #000;
  padding: 15px 15px;
  background-color: #fff;
  border-radius: 5px;
  transition: .4s opacity;
}

/* --- frontend/user/gateway/flutterwave.blade.php --- */
.fw-btn {
  background: #f5a623;
  color: #111;
  font-weight: 700;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.fw-note {
  font-size: .78rem
}

/* --- frontend/user/gateway/gateways.blade.php --- */
.gw-free-label {
  color: #3cd2a5
}

.nx-gw-card {
  background: var(--surface, #1a2340);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .15s;
  text-decoration: none;
  color: inherit
}

.nx-gw-card:hover {
  border-color: rgba(54, 148, 237, .45);
  background: rgba(54, 148, 237, .06);
  transform: translateY(-2px);
  text-decoration: none
}

.nx-gw-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.nx-gw-img img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.nx-gw-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #8b9cc8;
  font-size: 1.4rem
}

.nx-gw-info {
  flex: 1;
  min-width: 0
}

.nx-gw-name {
  font-size: .92rem;
  font-weight: 600;
  color: #e8f0fe;
  margin: 0 0 3px
}

.nx-gw-sub {
  font-size: .75rem;
  color: #8b9cc8;
  margin: 0
}

.nx-gw-arrow {
  color: #3694ed;
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .15s, transform .15s
}

.nx-gw-card:hover .nx-gw-arrow {
  opacity: 1;
  transform: translateX(3px)
}

/* --- frontend/user/gateway/_dep_summary.blade.php --- */
.pmt-sum-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.pmt-gw-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pmt-gw-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.pmt-gw-logo .fb {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8b9cc8;
  font-size: 1.1rem
}

.pmt-sum-table {
  width: 100%;
  border-collapse: collapse
}

.pmt-sum-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .84rem;
  vertical-align: middle
}

.pmt-sum-table td:first-child {
  color: #8b9cc8;
  width: 45%
}

.pmt-sum-table td:last-child {
  color: #e8f0fe;
  font-weight: 500;
  text-align: right
}

.pmt-sum-table tr.total-row td {
  background: rgba(54, 148, 237, .07);
  border-bottom: none
}

.pmt-sum-table tr.total-row td:first-child {
  font-weight: 600;
  color: #e8f0fe
}

.pmt-sum-table tr.total-row td:last-child {
  color: #3694ed;
  font-size: 1rem;
  font-weight: 700
}

.pmt-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600
}

.pmt-status-deposit {
  background: rgba(60, 210, 165, .15);
  color: #3cd2a5
}

.pmt-status-invest {
  background: rgba(54, 148, 237, .15);
  color: #5ba8f5
}

.pmt-status-staking {
  background: rgba(155, 108, 255, .15);
  color: #9b6cff
}

.pmt-label-sm {
  font-size: .7rem
}

.pmt-currency-sm {
  font-size: .75rem
}

.pmt-free {
  color: #3cd2a5
}

.pmt-currency-tag {
  font-size: .78rem;
  font-weight: 600;
  margin-left: 4px
}

/* --- frontend/user/gateway/gateway_manual.blade.php --- */
.gw-info-text {
  font-size: .84rem;
  line-height: 1.7
}

.gw-notice-card {
  background: rgba(245, 166, 35, .06);
  border-color: rgba(245, 166, 35, .2)
}

.gw-notice-icon {
  color: #f5a623;
  font-size: 1.1rem;
  flex-shrink: 0
}

.gw-notice-text {
  font-size: .82rem;
  color: #e8f0fe
}

.gw-notice-strong {
  color: #f5a623
}

.gw-hint-text {
  font-size: .75rem
}

.gw-label-sm {
  font-size: .75rem
}

.gw-required {
  color: #e85261
}

.gw-btn-lg {
  padding: .75rem
}

.gw-info-alert {
  background: rgba(54, 148, 237, .1);
  border: 1px solid rgba(54, 148, 237, .2);
  border-radius: 10px;
  color: #e8f0fe;
  font-size: .84rem
}

.gw-info-alert-icon {
  color: #3694ed
}

/* --- frontend/user/gateway/nowpayments.blade.php --- */
.np-hint {
  font-size: .75rem
}

.np-btn-lg {
  padding: .75rem
}

.np-info-card {
  background: rgba(54, 148, 237, .05);
  border-color: rgba(54, 148, 237, .15)
}

.np-info-text {
  font-size: .82rem;
  color: #8b9cc8;
  line-height: 1.6
}

/* --- frontend/user/gateway/payment.blade.php --- */
.image-area {
  height: 300px;
}

.gateway-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- frontend/user/gateway/paypal.blade.php --- */
.pp-btn {
  background: #0070ba;
  color: #fff;
  font-weight: 700;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.pp-btn-icon {
  font-size: 1.2rem
}

.pp-note {
  font-size: .78rem
}

/* --- frontend/user/gateway/paystack.blade.php --- */
.ps-btn {
  background: #00c3f7;
  color: #111;
  font-weight: 700;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.ps-note {
  font-size: .78rem
}

/* --- frontend/user/gateway/razorpay.blade.php --- */
.rz-btn {
  background: #3395ff;
  color: #fff;
  font-weight: 700;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.rz-note {
  font-size: .78rem
}

/* --- frontend/user/gateway/stripe.blade.php --- */
.sk-hint {
  font-size: .75rem
}

.stripe-key-error {
  color: #f59e0b;
  font-size: .83rem;
  display: flex;
  align-items: center;
  padding: 4px 0
}

.sk-card-icon-wrap {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px
}

.sk-card-icon {
  color: #8b9cc8;
  font-size: 1.2rem
}

.sk-btn-lg {
  padding: .75rem
}

/* --- frontend/user/interest_log.blade.php --- */
.nx-log-page-hd-icon--green {
  background: rgba(72, 187, 120, 0.15);
  border-color: rgba(72, 187, 120, 0.3);
  color: var(--c-green)
}

/* --- frontend/user/invest_checkout.blade.php --- */
/* ── Checkout: plan icon ──────────────────── */
.ck-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(98, 91, 246, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── Checkout: stat blocks ──────────────── */
.ck-stat {
  padding: 8px;
}

.ck-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.ck-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Checkout: payment option row ─────────── */
.ck-pay-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s, background .2s;
}

.ck-pay-opt:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.ck-pay-opt.selected {
  border-color: var(--site-color, #625bf6);
  background: rgba(98, 91, 246, .1);
}

.ck-pay-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ck-pay-icon-img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ck-pay-check {
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .2s;
  color: var(--site-color, #625bf6);
  margin-left: auto;
}

.ck-pay-opt.selected .ck-pay-check {
  opacity: 1;
}

/* --- frontend/user/invest_log.blade.php --- */
.nx-log-page-hd-icon--violet {
  background: rgba(159, 122, 234, 0.15);
  border-color: rgba(159, 122, 234, 0.3);
  color: var(--c-violet)
}

/* --- frontend/user/staking/log.blade.php --- */
.nx-log-page-hd-icon--amber {
  background: rgba(246, 173, 85, 0.15);
  border-color: rgba(246, 173, 85, 0.3);
  color: var(--c-amber)
}

/* --- frontend/user/staking_checkout.blade.php --- */
.ck-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(98, 91, 246, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ck-stat {
  padding: 8px;
}

.ck-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.ck-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ck-pay-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s, background .2s;
}

.ck-pay-opt:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.ck-pay-opt.selected {
  border-color: var(--site-color, #625bf6);
  background: rgba(98, 91, 246, .1);
}

.ck-pay-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ck-pay-icon-img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ck-pay-check {
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .2s;
  color: var(--site-color, #625bf6);
  margin-left: auto;
}

.ck-pay-opt.selected .ck-pay-check {
  opacity: 1;
}

/* --- frontend/user/trade/log.blade.php --- */
.tlog-dir-up {
  background: var(--c-green-dim);
  color: var(--c-green)
}

.tlog-dir-dn {
  background: var(--c-red-dim);
  color: var(--c-red)
}

.tlog-mono {
  font-family: monospace
}

.tlog-profit {
  color: var(--c-green)
}

.tlog-loss {
  color: var(--c-red)
}

/* home page avatar chips */
.hm-avatar-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border: 2px solid rgba(99, 102, 241, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  position: relative
}

.hm-avatar-chip:not(:first-child) {
  margin-left: -8px
}

.hm-avatar-chip:nth-child(1) {
  z-index: 4
}

.hm-avatar-chip:nth-child(2) {
  z-index: 3
}

.hm-avatar-chip:nth-child(3) {
  z-index: 2
}

.hm-avatar-chip:nth-child(4) {
  z-index: 1
}

/* ============================================================
   Responsive Utilities — Frontend
   ============================================================ */

/* Banner action buttons wrap on small screens */
.nx-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Referral bar — truncate URL */
.nx-ref-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

.nx-ref-bar-text {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Quick links: readable text on tiny screens */
.nx-quick-link p {
  font-size: clamp(0.65rem, 2.5vw, 0.8rem);
}

/* Footer subscribe form */
@media (max-width: 575.98px) {
  #subscribe {
    flex-direction: column;
  }

  #subscribe button {
    width: 100%;
  }
}

/* Gateway cards: full width on mobile */
@media (max-width: 575.98px) {

  .nx-gw-name,
  .nx-gw-sub {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Stat cards: always readable */
.nx-stat-label {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
}

.nx-stat-value {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

/* ─── Live price colour classes (replaces inline style.color) ─── */
.lm-val--up,
.tk-price.lm-val--up,
.tk-chg.lm-val--up {
  color: #3cd2a5;
}

.lm-val--dn,
.tk-price.lm-val--dn,
.tk-chg.lm-val--dn {
  color: #e85261;
}

/* ─── FAQ chevron open state (replaces style.transform) ─── */
.faq-chevron--open {
  transform: rotate(180deg);
}

/* ─── Image fallback: letter avatar & icon (replaces placeholder.png) ─── */
.nx-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-color, #63B3ED);
  background: rgba(99, 179, 237, .12);
  border-radius: inherit;
  text-transform: uppercase;
  user-select: none;
}

/* plan / how / rank icon fallback <i> sizing */
.nx-plan-icon i,
.nx-how-icon i {
  font-size: 1.5rem;
  color: var(--theme-color, #63B3ED);
}

.nx-rank-icon i {
  font-size: 1.8rem;
  color: var(--theme-color, #63B3ED);
}

/* ─── W3C: make background-image inline-style safe guard visible ─── */
.hn_page_banner:not([style]) {
  background: linear-gradient(135deg, var(--c-bg2) 0%, var(--c-bg3) 100%);
}

/* ════════════════════════════════════
   DASHBOARD — COMPONENTS
   ════════════════════════════════════ */

/* ── Welcome Banner ── */
.db-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.07) 0%, rgba(159, 122, 234, 0.05) 100%);
  border: 1px solid rgba(99, 179, 237, 0.18);
  border-radius: var(--r-md);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
}

.db-welcome::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.07), transparent 70%);
  pointer-events: none;
}

.db-welcome-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 200px;
}

.db-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-violet) 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.2);
}

.db-welcome-info {
  min-width: 0;
}

.db-welcome-hi {
  font-size: 0.72rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1px;
}

.db-welcome-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.db-welcome-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.db-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.db-badge i {
  font-size: 0.65rem;
}

.db-badge-green {
  background: rgba(72, 187, 120, 0.12);
  color: var(--c-green);
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.db-badge-amber {
  background: rgba(246, 173, 85, 0.12);
  color: var(--c-amber);
  border: 1px solid rgba(246, 173, 85, 0.2);
}

.db-badge-cyan {
  background: rgba(99, 179, 237, 0.10);
  color: var(--c-cyan);
  border: 1px solid rgba(99, 179, 237, 0.18);
}

.db-welcome-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.db-balance-box {
  text-align: right;
}

.db-balance-label {
  font-size: 0.72rem;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 2px;
}

.db-balance-val {
  font-family: var(--f-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
}

.db-balance-val small {
  font-size: 0.75rem;
  margin-left: 4px;
  color: var(--c-text2);
  font-family: var(--f-body);
}

.db-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.db-welcome-actions .btn {
    display: inline-flex;
    align-items: center;
    border-radius: 99px;
    padding-inline: 20px;
}

/* Welcome button variants */
.db-btn-outline-red {
  border: 1px solid rgba(252, 129, 129, 0.35);
  color: var(--c-red);
  background: rgba(252, 129, 129, 0.07);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.db-btn-outline-red:hover {
  background: rgba(252, 129, 129, 0.14);
  border-color: var(--c-red);
  color: var(--c-red);
}

.db-btn-outline-cyan {
  border: 1px solid rgba(99, 179, 237, 0.35);
  color: var(--c-cyan);
  background: rgba(99, 179, 237, 0.07);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.db-btn-outline-cyan:hover {
  background: rgba(99, 179, 237, 0.14);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.db-btn-outline-amber {
  border: 1px solid rgba(246, 173, 85, 0.35);
  color: var(--c-amber);
  background: rgba(246, 173, 85, 0.07);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.db-btn-outline-amber:hover {
  background: rgba(246, 173, 85, 0.14);
  border-color: var(--c-amber);
  color: var(--c-amber);
}

/* ── Stat card color accents ── */
.nx-stat--cyan {
  border-left: 3px solid var(--c-cyan);
}

.nx-stat--green {
  border-left: 3px solid var(--c-green);
}

.nx-stat--violet {
  border-left: 3px solid var(--c-violet);
}

.nx-stat--red {
  border-left: 3px solid var(--c-red);
}

.nx-stat--amber {
  border-left: 3px solid var(--c-amber);
}

.nx-stat--pending {
  border-left: 3px solid var(--c-border-glow);
  opacity: 0.85;
}

/* Hover gradient fill for each color */
.nx-stat--cyan::after {
  background: radial-gradient(circle at top right, rgba(99, 179, 237, .07), transparent 70%);
}

.nx-stat--green::after {
  background: radial-gradient(circle at top right, rgba(72, 187, 120, .07), transparent 70%);
}

.nx-stat--violet::after {
  background: radial-gradient(circle at top right, rgba(159, 122, 234, .07), transparent 70%);
}

.nx-stat--red::after {
  background: radial-gradient(circle at top right, rgba(252, 129, 129, .07), transparent 70%);
}

.nx-stat--amber::after {
  background: radial-gradient(circle at top right, rgba(246, 173, 85, .07), transparent 70%);
}

.nx-stat::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  right: 0;
}

/* Pending badge inside stat card */
.nx-stat-pending-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--c-text3);
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 2px 8px;
}

/* ── Card with colored top accent ── */
.nx-card-accent-cyan {
  border-top: 3px solid var(--c-cyan);
}

.nx-card-accent-amber {
  border-top: 3px solid var(--c-amber);
}

.nx-card-accent-green {
  border-top: 3px solid var(--c-green);
}

/* ── Section band (replaces floating section header) ── */
.db-section-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.06) 0%, transparent 60%);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-cyan);
  border-radius: var(--r-md);
  padding: 14px 20px;
}

.db-section-band-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-section-band-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(99, 179, 237, 0.12);
  color: var(--c-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.db-section-band h5 {
  margin: 0;
}

/* ── Progress bars (custom dark theme) ── */
.db-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.db-progress-bar {
  height: 100%;
  border-radius: 100px;
  transition: width 0.6s ease;
  min-width: 2px;
}

.db-progress-bar--green {
  background: linear-gradient(90deg, rgba(72, 187, 120, .6), var(--c-green));
}

.db-progress-bar--cyan {
  background: linear-gradient(90deg, rgba(99, 179, 237, .6), var(--c-cyan));
}

/* ── VIP target pills ── */
.nx-target-pill {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  flex: 1 1 80px;
}

/* ── Chart toggle ── */
.db-chart-toggle {
  display: flex;
  gap: 2px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 3px;
}

.db-chart-btn {
  background: transparent;
  border: none;
  color: var(--c-text3);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all var(--dur) var(--ease);
  line-height: 1;
}

.db-chart-btn.active,
.db-chart-btn:hover {
  background: rgba(99, 179, 237, 0.14);
  color: var(--c-cyan);
}

/* ── Badge variants ── */
.db-badge-green-solid {
  background: rgba(72, 187, 120, 0.14);
  color: var(--c-green);
  border: 1px solid rgba(72, 187, 120, 0.25);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Plan card rows ── */
.db-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-border);
}

.db-plan-row:last-of-type {
  border-bottom: none;
}

/* ── Transaction list ── */
.db-txn-list {
  display: flex;
  flex-direction: column;
}

.db-txn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur) var(--ease);
}

.db-txn-item:last-child {
  border-bottom: none;
}

.db-txn-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.db-txn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.db-txn-icon--in {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.db-txn-icon--out {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.db-txn-info {
  flex: 1 1 0;
  min-width: 0;
}

.db-txn-remark {
  font-size: 0.82rem;
  color: var(--c-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-txn-time {
  font-size: 0.7rem;
  color: var(--c-text3);
}

.db-txn-amount {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--f-mono);
  flex-shrink: 0;
  text-align: right;
}

.db-txn-amount small {
  font-size: 0.65rem;
  margin-left: 2px;
}

.db-txn-amount--in {
  color: var(--c-green);
}

.db-txn-amount--out {
  color: var(--c-red);
}

/* ── Stat value colors ── */
.nx-stat-value--amber {
  color: var(--c-amber);
}

.nx-stat-link-amber {
  color: var(--c-amber) !important;
}

/* ════════════════════════════════════
   DASHBOARD — RESPONSIVE
   ════════════════════════════════════ */

/* Tablet (≤991px) */
@media (max-width: 991px) {
  .nx-content-wrap {
    padding: 18px;
  }

  .nx-chart-wrap {
    height: 220px;
  }
}

/* Large phone (≤767px) */
@media (max-width: 767px) {
  .db-welcome {
    padding: 16px 18px;
    gap: 14px;
  }

  .db-welcome-name {
    font-size: 1.1rem;
    max-width: 220px;
  }

  .db-balance-val {
    font-size: 1.45rem;
  }

  .db-welcome-actions .btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .nx-chart-wrap {
    height: 200px;
  }

  .db-section-band {
    padding: 12px 16px;
  }
}

/* Small phone (≤575px) */
@media (max-width: 575px) {
  .nx-content-wrap {
    padding: 12px;
  }

  .db-welcome {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .db-welcome-left {
    flex: 1;
  }

  .db-welcome-right {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .db-balance-box {
    text-align: left;
  }

  .db-welcome-actions {
    width: 100%;
  }

  .db-welcome-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.74rem;
    padding: 7px 6px;
  }

  .db-welcome-name {
    max-width: 200px;
    font-size: 1.05rem;
  }

  .nx-stat {
    padding: 14px;
  }

  .nx-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .nx-stat-value {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .nx-chart-wrap {
    height: 180px;
  }

  .db-txn-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .db-txn-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .db-txn-remark {
    font-size: 0.78rem;
  }

  .db-txn-amount {
    font-size: 0.82rem;
  }

  .nx-quick-link {
    padding: 10px 5px;
  }

  .nx-quick-link i {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .db-section-band {
    padding: 10px 14px;
    gap: 10px;
  }

  .db-section-band-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .db-avatar {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }
}

/* Tiny phone (≤375px) */
@media (max-width: 375px) {
  .nx-content-wrap {
    padding: 10px 8px;
  }

  .nx-stat {
    padding: 12px 10px;
  }

  .nx-stat-value {
    font-size: 0.92rem;
  }

  .nx-chart-wrap {
    height: 180px;
  }

  .nx-quick-link {
    padding: 8px 4px;
  }

  .nx-quick-link i {
    font-size: 1.05rem;
  }

  .nx-quick-link p {
    font-size: 0.6rem;
    letter-spacing: 0;
  }

  .db-welcome {
    gap: 12px;
  }

  .db-balance-val {
    font-size: 1.3rem;
  }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .nx-content-wrap {
    padding: 10px 16px;
  }

  .db-welcome {
    padding: 10px 14px;
  }

  .nx-chart-wrap {
    height: 160px;
  }
}

/* Tiny phone (≤375px) */
@media (max-width: 375px) {
  .nx-content-wrap {
    padding: 10px 8px;
  }

  .db-welcome {
    padding: 12px;
  }

  .nx-stat {
    padding: 12px 10px;
  }

  .nx-stat-value {
    font-size: 0.95rem;
  }

  .nx-chart-wrap {
    height: 180px;
  }

  .nx-quick-link {
    padding: 8px 4px;
  }

  .nx-quick-link i {
    font-size: 1.05rem;
  }

  .nx-quick-link p {
    font-size: 0.6rem;
    letter-spacing: 0;
  }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .nx-content-wrap {
    padding: 10px 16px;
  }

  .db-welcome {
    padding: 10px 14px;
  }

  .nx-chart-wrap {
    height: 160px;
  }
}

/* ════════════════════════════════════════════════════════
   TRADING MODES SHOWCASE SECTION
   ════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.nx-trading-modes-section {
  background: var(--c-bg2);
}

/* ── Mode Tabs ── */
.nx-mode-tabs {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 16px;
  margin-bottom: 30px !important;
}

.nx-mode-tab {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text2, #9ca3af);
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .3px;
}

.nx-mode-tab:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

.nx-mode-tab.active {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 179, 237, .3);
}

/* ── Panels ── */
.nx-mode-panel {
  display: none;
  animation: fadeSlideUp .4s ease;
}

.nx-mode-panel.active {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mode badge ── */
.nx-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nx-mode-badge--binary {
  background: rgba(99, 179, 237, .12);
  color: var(--c-cyan);
  border: 1px solid rgba(99, 179, 237, .25);
}

.nx-mode-badge--spot {
  background: rgba(72, 187, 120, .12);
  color: var(--c-green);
  border: 1px solid rgba(72, 187, 120, .25);
}

.nx-mode-badge--futures {
  background: rgba(246, 173, 85, .12);
  color: var(--c-amber);
  border: 1px solid rgba(246, 173, 85, .25);
}

/* ── Mode title & desc ── */
.nx-mode-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-text, #f0f6ff);
  line-height: 1.2;
}

.nx-mode-desc {
  color: var(--c-text2, #9ca3af);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 12px;
}

/* ── Feature list ── */
.nx-mode-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.nx-mode-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nx-mode-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nx-mf--green {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-mf--amber {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-mf--blue {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-mf--purple {
  background: var(--c-violet-dim);
  color: var(--c-violet);
}

.nx-mf--red {
  background: var(--c-red-dim);
  color: var(--c-red);
}

.nx-mf-title {
  font-weight: 600;
  color: var(--c-text, #f0f6ff);
  font-size: 0.9rem;
}

.nx-mf-desc {
  color: var(--c-text2, #9ca3af);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── Platform Screenshot ── */
.nx-platform-screenshot {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  background: var(--c-card, #0d1322);
  border: 1px solid var(--c-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px var(--c-border);
}

.nx-ps--binary {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(99, 179, 237, .1);
}

.nx-ps--spot {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(72, 187, 120, .1);
}

.nx-ps--futures {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(246, 173, 85, .1);
}

.nx-ps-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--c-bg3, #0e1428);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--c-border);
}

.nx-ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.nx-ps-dot--red {
  background: #ff5f57;
}

.nx-ps-dot--yellow {
  background: #febc2e;
}

.nx-ps-dot--green {
  background: #28c840;
}

.nx-ps-url {
  margin-left: 10px;
  background: var(--c-card2, #111827);
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.72rem;
  color: var(--c-text2, #9ca3af);
  border: 1px solid var(--c-border);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
}

.nx-ps-img {
  width: 100%;
  display: block;
  border-radius: 0 0 16px 16px;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
}

/* Floating stat badges */
.nx-ps-float {
  position: absolute;
  background: var(--c-card2, #111827);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 8px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  min-width: 80px;
  z-index: 10;
}

.nx-ps-float--tl {
  top: 52px;
  left: -20px;
}

.nx-ps-float--tr {
  top: 52px;
  right: -20px;
}

.nx-psf-label {
  font-size: 0.65rem;
  color: var(--c-text2, #9ca3af);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.nx-psf-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text, #f0f6ff);
  font-family: var(--f-mono, monospace);
}

/* ── Mock UI (fallback when no screenshot image) ── */
.nx-ps-placeholder {
  width: 100%;
  background: var(--c-bg, #05080f);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.nx-ps-mock-binary,
.nx-ps-mock-spot,
.nx-ps-mock-futures {
  height: 360px;
  display: flex;
  flex-direction: column;
}

.nx-mock-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--c-bg3);
  border-bottom: 1px solid var(--c-border);
  font-size: 12px;
}

.nx-mock-logo {
  font-weight: 800;
  color: var(--c-cyan);
  font-size: 13px;
}

.nx-mock-tab {
  color: var(--c-text2, #9ca3af);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
}

.nx-mock-tab--active {
  background: var(--c-card2);
  color: var(--c-cyan);
}

.nx-mock-price {
  font-weight: 700;
  font-family: var(--f-mono, monospace);
  color: #facc15;
}

.nx-mock-bal {
  font-weight: 600;
  color: var(--c-green);
  font-size: 11px;
}

.nx-mock-chart-area {
  flex: 1;
  padding: 8px;
  background: var(--c-bg);
}

.nx-mock-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--c-bg3);
  border-top: 1px solid var(--c-border);
}

.nx-mock-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  border: none;
}

.nx-mock-btn--buy {
  background: #166534;
  color: #4ade80;
}

.nx-mock-btn--sell {
  background: #7f1d1d;
  color: #f87171;
}

/* Mock button modifiers */
.nx-mock-btn--sm {
  flex: 1;
  font-size: 11px;
  padding: 6px;
}

.nx-mock-ls-long {
  flex: 1;
  border-radius: 6px 0 0 6px;
}

.nx-mock-ls-short {
  flex: 1;
  border-radius: 0 6px 6px 0;
}

.nx-mock-field--half {
  flex: 1;
}

.nx-mock-liq {
  color: #ef4444;
}

.nx-mock-chg-up {
  color: #22c55e;
  font-size: 11px;
}

.nx-mock-chg-dn {
  color: #ef4444;
  font-size: 11px;
}

.nx-mock-chart-svg {
  width: 100%;
  height: 100%;
}

.nx-mock-amount {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text, #f0f6ff);
}

.nx-mock-field {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--c-text2, #9ca3af);
  margin-bottom: 6px;
}

/* Spot layout */
.nx-mock-spot-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.nx-mock-orderform {
  width: 140px;
  padding: 10px;
  background: var(--c-bg2);
  border-left: 1px solid var(--c-border);
  flex-shrink: 0;
}

/* Futures layout */
.nx-mock-futures-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.nx-mock-ls-btns {
  display: flex;
  gap: 0;
}

.nx-mock-lev-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nx-mock-lev-label {
  font-size: 10px;
  color: var(--c-text2, #9ca3af);
}

.nx-mock-lev {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--c-card2);
  color: var(--c-text2, #9ca3af);
  cursor: pointer;
}

.nx-mock-lev.active {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-mock-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--c-text2, #9ca3af);
}

/* ── Bottom Comparison Cards ── */
.nx-compare-card {
  background: var(--c-card, #0d1322);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.nx-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.nx-cc--binary {
  border-color: rgba(99, 179, 237, .2);
}

.nx-cc--binary:hover {
  box-shadow: 0 20px 50px rgba(99, 179, 237, .12);
}

.nx-cc--spot {
  border-color: rgba(72, 187, 120, .2);
}

.nx-cc--spot:hover {
  box-shadow: 0 20px 50px rgba(72, 187, 120, .12);
}

.nx-cc--futures {
  border-color: rgba(246, 173, 85, .2);
}

.nx-cc--futures:hover {
  box-shadow: 0 20px 50px rgba(246, 173, 85, .12);
}

.nx-compare-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}

.nx-cc--binary .nx-compare-icon {
  background: var(--c-cyan-dim);
  color: var(--c-cyan);
}

.nx-cc--spot .nx-compare-icon {
  background: var(--c-green-dim);
  color: var(--c-green);
}

.nx-cc--futures .nx-compare-icon {
  background: var(--c-amber-dim);
  color: var(--c-amber);
}

.nx-compare-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text, #f0f6ff);
  margin-bottom: 16px;
}

.nx-compare-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.nx-compare-stats>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.82rem;
}

.nx-compare-stats span {
  color: var(--c-text2, #9ca3af);
}

.nx-compare-stats strong {
  color: var(--c-text, #f0f6ff);
}

.nx-compare-btn {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all .2s;
  border: 1px solid var(--c-border);
  color: var(--c-text, #f0f6ff);
}

.nx-compare-btn:hover {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
  border-color: transparent;
  color: #fff;
}

.nx-cc--binary .nx-compare-btn:hover {
  background: linear-gradient(135deg, #63b3ed, #9f7aea);
}

.nx-cc--spot .nx-compare-btn:hover {
  background: linear-gradient(135deg, #48bb78, #63b3ed);
}

.nx-cc--futures .nx-compare-btn:hover {
  background: linear-gradient(135deg, #f6ad55, #fc8181);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .nx-ps-float {
    display: none;
  }

  .nx-mode-tab {
    padding: 8px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
  .nx-mode-title {
    font-size: 1.4rem;
  }

  .nx-ps-browser-bar .nx-ps-url {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE — New Sections CSS
   Added for CodeCanyon compliance
═══════════════════════════════════════════════════════════════════ */

/* ── Promo Strip ────────────────────────────────────────────────── */
.nx-promo-strip {
  background: linear-gradient(90deg, #1e40af 0%, #7c3aed 50%, #0f766e 100%);
  padding: 10px 0;
  overflow: hidden;
  text-align: center;
}

.nx-promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: .83rem;
  color: #e0e7ff;
  padding: 0 16px;
}

.nx-promo-badge {
  background: rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 700;
  color: #fff;
  font-size: .78rem;
}

.nx-promo-sep {
  opacity: .4;
}

.nx-promo-cta {
  background: #fff;
  color: #1e40af;
  border-radius: 20px;
  padding: 3px 14px;
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
  transition: opacity .2s;
}

.nx-promo-cta:hover {
  opacity: .85;
}

/* ── Security Section ───────────────────────────────────────────── */
.nx-security-section {
  background: transparent;
}

.nx-sec-card {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 24px 16px;
  transition: transform .25s, border-color .25s;
  background: rgba(15, 23, 42, .5);
}

.nx-sec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, .4);
}

.nx-sec-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
  background: rgba(99, 102, 241, .15);
  color: #818cf8;
}

.nx-sec-icon--green {
  background: rgba(34, 197, 94, .12);
  color: #22c55e;
}

.nx-sec-icon--blue {
  background: rgba(59, 130, 246, .12);
  color: #60a5fa;
}

.nx-sec-icon--amber {
  background: rgba(251, 191, 36, .12);
  color: #fbbf24;
}

.nx-sec-icon--cyan {
  background: rgba(6, 182, 212, .12);
  color: #22d3ee;
}

.nx-sec-icon--violet {
  background: rgba(139, 92, 246, .12);
  color: #a78bfa;
}

.nx-sec-icon--pink {
  background: rgba(236, 72, 153, .12);
  color: #f472b6;
}

.nx-sec-label {
  font-weight: 700;
  font-size: .85rem;
  color: #f1f5f9;
  margin-bottom: 2px;
}

.nx-sec-sub {
  font-size: .75rem;
  color: #94a3b8;
}

/* ── Mobile Showcase ────────────────────────────────────────────── */
.nx-mobile-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.nx-mobile-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nx-mobile-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(99, 102, 241, .15);
  color: #818cf8;
}

.nx-mobile-feat-icon.nx-mfi--green {
  background: rgba(34, 197, 94, .12);
  color: #22c55e;
}

.nx-mobile-feat-icon.nx-mfi--amber {
  background: rgba(251, 191, 36, .12);
  color: #fbbf24;
}

.nx-mobile-feat-icon.nx-mfi--cyan {
  background: rgba(6, 182, 212, .12);
  color: #22d3ee;
}

.nx-mobile-feat-title {
  font-weight: 700;
  font-size: .9rem;
  color: #f1f5f9;
}

.nx-mobile-feat-sub {
  font-size: .8rem;
  color: #94a3b8;
}

.nx-phone-mockup {
  position: relative;
  display: inline-block;
}

.nx-phone-frame {
  width: 230px;
  background: #0f172a;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 36px;
  padding: 16px 12px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 255, 255, .04);
  margin: 0 auto;
}

.nx-phone-notch {
  width: 60px;
  height: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  margin: 0 auto 10px;
}

.nx-phone-screen {
  background: #0a0f1e;
  border-radius: 24px;
  overflow: hidden;
  padding: 0 0 8px;
}

.nx-phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 4px;
  font-size: .6rem;
  color: #94a3b8;
}

.nx-phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px 8px;
}

.nx-phone-logo {
  font-weight: 800;
  font-size: .8rem;
  color: #818cf8;
}

.nx-phone-bal {
  font-size: .75rem;
  font-weight: 700;
  color: #22c55e;
}

.nx-phone-chart {
  padding: 0 8px;
}

.nx-phone-asset-label {
  font-size: .65rem;
  color: #94a3b8;
  padding: 2px 4px;
}

.nx-phone-trade-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}

.nx-phone-btn {
  flex: 1;
  text-align: center;
  border-radius: 8px;
  padding: 6px 4px;
  font-size: .7rem;
  font-weight: 700;
  cursor: default;
}

.nx-phone-btn--up {
  background: rgba(34, 197, 94, .2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, .3);
}

.nx-phone-btn--dn {
  background: rgba(239, 68, 68, .2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, .3);
}

.nx-phone-timer {
  font-size: .8rem;
  font-weight: 700;
  color: #fbbf24;
}

.nx-phone-stats-row {
  display: flex;
  justify-content: space-around;
  padding: 6px 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.nx-phone-stat {
  text-align: center;
}

.nx-phone-stat-val {
  font-size: .75rem;
  font-weight: 700;
  color: #f1f5f9;
}

.nx-phone-stat-lbl {
  font-size: .6rem;
  color: #64748b;
}

.nx-phone-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 60px;
  background: rgba(99, 102, 241, .35);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

/* ── Payment Methods ────────────────────────────────────────────── */
.nx-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.nx-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, .7);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 90px;
  transition: transform .25s, border-color .25s;
}

.nx-payment-item:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, .4);
}

.nx-payment-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nx-pay--bitcoin {
  background: rgba(247, 147, 26, .12);
  color: #f7931a;
}

.nx-pay--eth {
  background: rgba(98, 126, 234, .12);
  color: #627eea;
}

.nx-pay--usdt {
  background: rgba(38, 161, 123, .12);
  color: #26a17b;
}

.nx-pay--bnb {
  background: rgba(240, 185, 11, .12);
  color: #f0b90b;
}

.nx-pay--card {
  background: rgba(30, 136, 229, .12);
  color: #1e88e5;
}

.nx-pay--bank {
  background: rgba(67, 160, 71, .12);
  color: #43a047;
}

.nx-pay--other {
  background: rgba(99, 102, 241, .12);
  color: #818cf8;
}

.nx-payment-item span {
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ── Partners / Trusted By ──────────────────────────────────────── */
.nx-partners-section {
  padding: 40px 0;
  text-align: center;
}

.nx-partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.nx-partner-item {
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(15, 23, 42, .5);
  transition: border-color .2s, background .2s;
}

.nx-partner-item:hover {
  border-color: rgba(99, 102, 241, .4);
  background: rgba(15, 23, 42, .9);
}

.nx-partner-logo {
  font-weight: 800;
  font-size: 1rem;
  color: #64748b;
  letter-spacing: .02em;
  transition: color .2s;
}

.nx-partner-item:hover .nx-partner-logo {
  color: #94a3b8;
}

/* ── Home LMS Course Cards ──────────────────────────────────────── */
.nx-home-course-card {
  background: rgba(15, 23, 42, .7);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nx-home-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.nx-hcc-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: rgba(15, 23, 42, .8);
}

.nx-hcc-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #334155;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.nx-hcc-body {
  padding: 18px;
  flex: 1;
  /*display: flex; */
  /*flex-direction: column; */
}

.nx-hcc-badge {
  display: inline-block;
  background: rgba(99, 102, 241, .15);
  color: #818cf8;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.nx-hcc-title {
  font-weight: 700;
  font-size: .95rem;
  color: #f1f5f9;
  margin-bottom: 10px;
  flex: 1;
}

.nx-hcc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: #64748b;
  margin-bottom: 14px;
}

.nx-hcc-price {
  font-weight: 700;
  color: #22c55e;
}

.nx-hcc-btn {
  display: block;
  text-align: center;
  background: rgba(99, 102, 241, .15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, .3);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.nx-hcc-btn:hover {
  background: rgba(99, 102, 241, .3);
  color: #c7d2fe;
}

/* ── Live Trade Toast ───────────────────────────────────────────── */
.nx-trade-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  min-width: 270px;
  max-width: 320px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .95);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.nx-trade-toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.nx-trade-toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.nx-trade-toast-title {
  font-weight: 700;
  font-size: .88rem;
  color: #f1f5f9;
}

.nx-trade-toast-sub {
  font-size: .75rem;
  color: #94a3b8;
  margin-top: 2px;
}

.nx-trade-toast-close {
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color .2s;
}

.nx-trade-toast-close:hover {
  color: #f1f5f9;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(-110%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-110%);
    opacity: 0;
  }
}

.nx-toast-in {
  animation: toastSlideIn .4s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.nx-toast-out {
  animation: toastSlideOut .35s ease-in forwards;
}


/* ████████████████████████████████████████████████████████████████████████████
   HOME PAGE — MOBILE RESPONSIVE FIX
   Covers: Navbar · Hero · Ticker · Sections · Trading Modes · Phone · Footer
████████████████████████████████████████████████████████████████████████████ */

/* ══════════════════════════════════════
   TABLET  (≤991px)
══════════════════════════════════════ */
@media (max-width: 991px) {

  /* ─ Section padding ─ */
  .nx-section {
    padding: 70px 0;
  }

  .nx-section-sm {
    padding: 48px 0;
  }

  /* ─ Banner / Hero ─ */
  .hn_banner {
    padding: 100px 0 60px;
    text-align: center;
  }

  .nx-hero-badge,
  .nx-banner-label {
    margin-left: auto;
    margin-right: auto;
  }

  .nx-banner-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .nx-banner-actions {
    justify-content: center;
  }

  .nx-banner-trust {
    margin: 0 auto;
    max-width: 420px;
  }

  /* ─ Trading mode screenshots ─ */
  .nx-ps-mock-binary,
  .nx-ps-mock-spot,
  .nx-ps-mock-futures {
    height: 280px;
  }

  /* ─ Mode compare cards ─ */
  .nx-compare-card {
    padding: 22px 18px;
  }

  /* ─ Phone mockup ─ */
  .nx-phone-frame {
    max-width: 260px;
  }
}

/* ══════════════════════════════════════
   LARGE PHONE  (≤767px)
══════════════════════════════════════ */
@media (max-width: 767px) {

  /* ─ Section padding ─ */
  .nx-section {
    padding: 56px 0;
  }

  .nx-section-sm {
    padding: 36px 0;
  }

  .nx-trading-modes-section {
    padding: 56px 0;
  }

  /* ─ Banner title ─ */
  .nx-banner-title {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    letter-spacing: -0.8px !important;
  }

  .hn_section_title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
  }

  .nx-banner-desc {
    font-size: 0.95rem !important;
  }

  /* ─ Ticker strip ─ */
  .nx-tk-wrap {
    overflow: hidden;
  }

  /* ─ Promo strip ─ */
  .nx-promo-strip-inner {
    gap: 6px 14px;
    font-size: 0.78rem;
  }

  .nx-promo-sep {
    display: none;
  }

  /* ─ Counter cards ─ */
  .hn_counter_card {
    padding: 22px 12px;
  }

  .hn_counter_num {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  /* ─ Security cards ─ */
  .nx-sec-card {
    padding: 18px 10px;
  }

  /* ─ How it works ─ */
  .nx-how-card {
    padding: 24px 18px !important;
  }

  /* ─ Why choose us ─ */
  .nx-why-card {
    padding: 18px;
  }

  /* ─ Trading mode screenshots ─ */
  .nx-platform-screenshot {
    margin-top: 0;
  }

  .nx-ps-mock-binary,
  .nx-ps-mock-spot,
  .nx-ps-mock-futures {
    height: 240px;
  }

  .nx-ps-browser-bar {
    padding: 8px 12px;
  }

  .nx-ps-dot {
    width: 8px;
    height: 8px;
  }

  /* ─ Mode tabs ─ */
  .nx-mode-tab {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  /* ─ Compare cards ─ */
  .nx-compare-card {
    padding: 18px 14px;
  }

  /* ─ Asset gateway cards ─ */
  .nx-gateway-card {
    padding: 14px;
  }

  .nx-asset-icon {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  /* ─ Payment grid ─ */
  .nx-payment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .nx-payment-item {
    padding: 14px 8px;
  }

  /* ─ Partners row ─ */
  .nx-partners-row {
    gap: 10px;
  }

  /* ─ Phone mockup ─ */
  .nx-phone-frame {
    max-width: 220px;
    margin: 0 auto;
  }

  .nx-phone-mockup {
    display: flex;
    justify-content: center;
  }

  /* ─ Plan cards ─ */
  .nx-plan {
    padding: 24px 20px;
  }

  /* ─ Section headings ─ */
  .hn_section_desc {
    font-size: 0.92rem !important;
  }
}

/* ══════════════════════════════════════
   SMALL PHONE  (≤575px)
══════════════════════════════════════ */
@media (max-width: 575px) {

  /* ─ Section padding ─ */
  .nx-section {
    padding: 48px 0;
  }

  /* ─ Banner ─ */
  .hn_banner {
    padding: 88px 0 48px;
  }

  .nx-banner-title {
    font-size: clamp(1.75rem, 8vw, 2.4rem) !important;
    letter-spacing: -0.5px !important;
  }

  .nx-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nx-banner-actions {
    flex-direction: column;
    gap: 10px !important;
  }

  .nx-banner-trust {
    flex-direction: column;
    gap: 10px;
  }

  /* ─ Hero badge ─ */
  .nx-hero-badge {
    font-size: 0.65rem !important;
    padding: 6px 14px !important;
  }

  /* ─ Security section ─ */
  .nx-sec-card {
    padding: 16px 8px;
  }

  .nx-sec-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .nx-sec-label {
    font-size: 0.78rem;
  }

  .nx-sec-sub {
    font-size: 0.68rem;
  }

  /* ─ How it works ─ */
  .nx-how-card {
    padding: 20px 14px !important;
  }

  .nx-how-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  /* ─ Trading mode screenshots ─ */
  .nx-ps-mock-binary,
  .nx-ps-mock-spot,
  .nx-ps-mock-futures {
    height: 210px;
  }

  .nx-mock-topbar {
    padding: 8px 10px;
    gap: 6px;
  }

  .nx-mock-logo {
    font-size: 11px;
  }

  .nx-mock-tab {
    font-size: 9px;
    padding: 3px 5px;
  }

  .nx-mock-controls {
    padding: 8px 10px;
  }

  .nx-mock-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .nx-mock-amount {
    font-size: 11px;
  }

  /* ─ Mode compare cards: 1 per row on tiny ─ */
  .nx-mode-compare .row>[class*="col-md-4"] {}

  /* ─ Payment grid ─ */
  .nx-payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* ─ Partners ─ */
  .nx-partners-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* ─ Phone mockup ─ */
  .nx-phone-frame {
    max-width: 200px;
  }

  /* ─ Plan cards ─ */
  .nx-plan {
    padding: 20px 16px;
  }

  /* ─ Counter ─ */
  .hn_counter_num {
    font-size: 1.5rem;
  }

  .hn_counter_label {
    font-size: 0.78rem;
  }

  /* ─ Promo badge ─ */
  .nx-promo-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .nx-promo-cta {
    width: 100%;
    text-align: center;
  }

  /* ─ Avatar chips ─ */
  .hm-avatar-chip {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  /* ─ Section heading ─ */
  .hn_section_title {
    font-size: clamp(1.45rem, 6vw, 1.9rem) !important;
  }
}

/* ══════════════════════════════════════
   EXTRA SMALL  (≤375px)
══════════════════════════════════════ */
@media (max-width: 375px) {

  .nx-section {
    padding: 40px 0;
  }

  .hn_banner {
    padding: 80px 0 40px;
  }

  .nx-banner-title {
    font-size: 1.65rem !important;
  }

  .hn_section_title {
    font-size: 1.4rem !important;
  }

  .nx-payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-phone-frame {
    max-width: 185px;
  }

  .nx-ps-mock-binary,
  .nx-ps-mock-spot,
  .nx-ps-mock-futures {
    height: 190px;
  }
}


/* ████████████████████████████████████████████████████████████
   HEADER MOBILE NAV — COMPLETE FIX
████████████████████████████████████████████████████████████ */

/* Hamburger button — visible on mobile */
.hn_header_menu_open {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #e2e8f0;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.hn_header_menu_open:hover {
  background: rgba(99, 179, 237, 0.12);
  border-color: rgba(99, 179, 237, 0.35);
  color: #63b3ed;
}

@media (max-width: 991px) {
  .hn_header_menu_open {
    display: flex;
  }
}

/* Dark overlay behind open nav */
.hn_nav_overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9997;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hn_nav_overlay.active {
  display: block;
}

/* Mobile nav drawer full fix */
@media (max-width: 991px) {
  .hn_nav {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 300px;
    height: 100vh;
    background: #0b0f1a;
    border-left: 1px solid rgba(99, 179, 237, 0.14);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    z-index: 9998;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: none;
  }

  .hn_nav.hn_nav_open {
    right: 0;
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.8);
  }

  /* Nav close button */
  .hn_nav_close {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #0b0f1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 2;
    font-size: 1rem;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    height: auto;
  }

  /* Nav items */
  .hn_nav_menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
    padding: 12px 12px 0;
  }

  .hn_nav_item {
    width: 100%;
  }

  .hn_nav_link {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.92rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .hn_nav_link:last-child {
    border-bottom: none;
  }

  /* Dropdown inside drawer */
  .hn_dropdown {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
    padding: 6px !important;
    display: none !important;
    margin-top: 4px !important;
    min-width: 0 !important;
  }

  .hn_dropdown.hn_drop_show {
    display: block !important;
  }

  .hn_dropdown_wide {
    min-width: 0 !important;
    padding: 12px !important;
  }

  .hn_dd_grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .hn_dd_card {
    flex-direction: row !important;
    text-align: left !important;
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  .hn_dd_icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
  }

  .hn_dd_title {
    font-size: 0.82rem !important;
  }

  .hn_dd_desc {
    font-size: 0.72rem !important;
  }

  .hn_dd_footer {
    display: none;
  }

  /* Mobile auth section at bottom of drawer */
  .hn_nav_mob_auth {
    width: 100%;
    padding: 20px 12px 24px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .hn_nav {
    width: 280px;
  }
}


/* ████████████████████████████████████████████████████████████
   FOOTER — MOBILE RESPONSIVE FIX
████████████████████████████████████████████████████████████ */

@media (max-width: 991px) {
  .hn_footer {
    padding: 60px 0 0 !important;
  }

  .hn_footer_logo {
    margin-bottom: 14px !important;
  }

  .hn_footer_logo img {
    height: 32px !important;
  }

  .hn_footer .nx-muted {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .hn_social_media {
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .hn_footer_title {
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
  }

  .hn_footer_menu li {
    margin-bottom: 8px !important;
  }

  .hn_footer_menu li a {
    font-size: 0.82rem !important;
  }

  .hn_copy_right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    margin-top: 40px !important;
    padding: 20px 0 !important;
  }

  .hn_copy_right p {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 575px) {
  .hn_footer {
    padding: 48px 0 0 !important;
  }

  /* Subscribe form stacks vertically */
  .hn_footer #subscribe {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .hn_footer #subscribe .btn {
    width: 100%;
  }

  /* Social icons */
  .hn_social_media li a {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.88rem !important;
  }

  .hn_copy_right {
    margin-top: 32px !important;
    padding: 16px 0 !important;
  }
}


/* ── Header mobile: logo left, hamburger right ── */
@media (max-width: 991px) {
  .hn_hdr_inner {
    justify-content: space-between;
    padding: 0 16px;
  }

  .hn_header_right {
    margin-left: auto;
  }
}


/* ████████████████████████████████████████████████████████████
   HEADER MOBILE — FINAL DEFINITIVE FIX
   (overrides all previous conflicting rules)
████████████████████████████████████████████████████████████ */

/* Language button — always visible in header */
.hn_header_right .hn_lang_btn {
  display: flex !important;
}

/* Hamburger button — ONLY on mobile */
.hn_header_menu_open {
  display: none !important;
}

@media (max-width: 991.98px) {
  .hn_header_menu_open {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }

  .hn_header_menu_open:hover {
    background: rgba(99, 179, 237, 0.14);
    border-color: rgba(99, 179, 237, 0.4);
    color: #63b3ed;
  }

  /* Header inner: logo left, controls right */
  .hn_hdr_inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    gap: 10px !important;
  }

  /* Hide desktop auth buttons */
  .hn_header_right .d-none.d-lg-flex {
    display: none !important;
  }

  /* Show language + hamburger */
  .hn_header_right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto;
  }
}

@media (min-width: 992px) {

  /* On desktop, hide hamburger — Bootstrap d-lg-none does this but reinforce */
  .hn_header_menu_open {
    display: none !important;
  }
}


/* ████████████████████████████████████████████████
   HORIZONTAL OVERFLOW FIX — mobile
████████████████████████████████████████████████ */

html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* Every direct child of body must not overflow */
body>* {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Ticker strip */
.nx-tk-wrap {
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Promo strip */
.nx-promo-strip,
.nx-promo-strip-inner {
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Banner section */
.hn_banner,
.hn_banner>.container {
  overflow-x: hidden !important;
}

/* All sections */
section {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

@media (max-width: 991.98px) {

  /* Header full width, no overflow */
  .hn_header {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    overflow: visible !important;
  }

  .hn_hdr_inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Logo visible */
  .hn_header_logo {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .hn_header_logo img {
    height: 28px !important;
    max-width: 120px !important;
    object-fit: contain !important;
  }

  /* Banner content left-aligned on mobile */
  .hn_banner {
    text-align: left !important;
  }

  .nx-hero-badge,
  .nx-banner-label {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nx-banner-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nx-banner-actions {
    justify-content: flex-start !important;
  }

  .nx-banner-trust {
    margin: 0 !important;
  }
}


/* ████████████████████████████████████████████████
   DESKTOP DROPDOWN — restore (mobile CSS broke it)
████████████████████████████████████████████████ */
@media (min-width: 992px) {
  .hn_dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: #0d1117 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
    padding: 8px !important;
    display: block !important;
    margin: 0 !important;
  }

  .hn_dropdown.hn_drop_show {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .hn_dropdown_wide {
    min-width: 540px !important;
    padding: 20px !important;
  }

  .hn_dd_grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    flex-direction: unset !important;
  }

  .hn_dd_card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 22px 14px !important;
    gap: 12px !important;
  }

  .hn_dd_icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.35rem !important;
  }

  .hn_dd_footer {
    display: block !important;
  }

  .hn_dd_footer--lms {
    display: block !important;
  }
}


/* ████████████████████████████████████████████████
   DROPDOWN Z-INDEX + SCROLLBAR FIX
████████████████████████████████████████████████ */

/* Header must be above banner */
.hn_header {
  z-index: 10000 !important;
}

/* Dropdown above everything */
@media (min-width: 992px) {
  .hn_has_drop {
    position: relative !important;
  }

  .hn_dropdown {
    z-index: 10001 !important;
  }
}

/* Remove unwanted scrollbar from header area */
.hn_header,
.hn_hdr_inner,
.hn_header_right,
.hn_nav {
  overflow: visible !important;
}

/* Fix body/html overflow — only block horizontal, allow vertical */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* Remove overflow:hidden from body children that was causing scrollbar */
body>*:not(#hnNav):not(.hn_nav_overlay) {
  overflow-x: clip !important;
}


/* ████████████████████████████████████████████████
   BANNER ZOOM FIX — mobile
████████████████████████████████████████████████ */
@media (max-width: 991.98px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 90px !important;
    padding-bottom: 50px !important;
  }

  .nx-banner-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
  }

  .nx-banner-desc {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }

  .nx-hero-badge {
    font-size: 0.65rem !important;
    padding: 6px 12px !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 575px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  .nx-banner-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
  }
}


/* ████████████████████████████████████████████████
   BANNER — same section size as other sections
████████████████████████████████████████████████ */
@media (max-width: 991.98px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 118px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 575px) {
  .hn_banner {
    padding-top: 108px !important;
    padding-bottom: 56px !important;
  }
}


/* ████████████████████████████████████████████████
   BANNER TOP GAP FIX — desktop
████████████████████████████████████████████████ */
@media (min-width: 992px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }
}


/* ████████████████████████████████████████████████
   BANNER FINAL FIX — desktop
████████████████████████████████████████████████ */
@media (min-width: 992px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
  }

  /* Remove any extra margin/padding from banner children */
  .hn_banner>.container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Stats section directly after banner — no extra gap */
  .hn_banner+* {
    margin-top: 0 !important;
  }
}


/* ████████████████████████████████████████████████
   OVERFLOW CLIP UNDO + FULL LAYOUT FIX
████████████████████████████████████████████████ */

/* Remove the bad clip rule */
body>*:not(#hnNav):not(.hn_nav_overlay) {
  overflow-x: unset !important;
}

/* Only these specific wrappers should clip */
html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
}

/* All sections — no clipping */
.hn_banner,
.nx-section,
.nx-promo-strip,
.nx-tk-wrap,
section,
footer {
  overflow: visible !important;
}

/* Container must be full width properly */
.container {
  width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}

/* Stats cards fix */
.hn_counter_card {
  box-sizing: border-box !important;
}

/* Banner — proper padding so title is not cut */
@media (min-width: 992px) {
  .hn_banner {
    padding-top: 130px !important;
    padding-bottom: 80px !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 991.98px) {
  .hn_banner {
    padding-top: 100px !important;
    padding-bottom: 56px !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 575px) {
  .hn_banner {
    padding-top: 90px !important;
    padding-bottom: 48px !important;
  }
}


/* ████████████████████████████████████████████████
   BANNER UI/UX COMPLETE FIX
████████████████████████████████████████████████ */

/* ── Desktop ── */
@media (min-width: 992px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 110px !important;
    padding-bottom: 80px !important;
    overflow: visible !important;
    display: block !important;
  }

  .hn_banner .row {
    align-items: center !important;
  }

  /* Title properly sized */
  .nx-banner-title {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
  }

  /* Live Markets card — no overflow */
  .lm-card {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .lm-row,
  .lm-col-head {
    grid-template-columns: 1.2fr 70px 1fr !important;
  }
}

/* ── Tablet ── */
@media (max-width: 1199px) and (min-width: 992px) {
  .nx-banner-title {
    font-size: clamp(2rem, 3vw, 3rem) !important;
  }

  .lm-spark {
    width: 56px !important;
  }
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
  .hn_banner {
    min-height: auto !important;
    padding-top: 90px !important;
    padding-bottom: 50px !important;
    overflow: visible !important;
    display: block !important;
  }

  .hn_banner .row {
    --bs-gutter-y: 2rem !important;
  }

  /* Title */
  .nx-banner-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.5px !important;
  }

  .nx-banner-desc {
    font-size: 0.95rem !important;
    line-height: 1.72 !important;
  }

  /* Badge */
  .nx-hero-badge {
    font-size: 0.68rem !important;
    padding: 6px 14px !important;
    letter-spacing: 1px !important;
  }

  /* Buttons */
  .nx-banner-actions .btn {
    padding: 10px 22px !important;
    font-size: 0.875rem !important;
  }

  /* Trust bar */
  .nx-banner-trust {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
  }
}

/* ── Small phone ── */
@media (max-width: 575px) {
  .hn_banner {
    padding-top: 80px !important;
    padding-bottom: 44px !important;
  }

  .nx-banner-title {
    font-size: clamp(1.65rem, 7vw, 2.2rem) !important;
  }

  .nx-banner-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .nx-banner-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .nx-banner-trust {
    padding: 10px 14px !important;
  }

  .hm-avatar-chip {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.7rem !important;
  }
}


/* ████████████████████████████████████████████████
   BANNER — RESTORE ORIGINAL DESIGN
████████████████████████████████████████████████ */
.hn_banner {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 140px 0 100px !important;
}

.nx-banner-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  line-height: 1.04 !important;
}

.nx-banner-desc {
  font-size: 1.08rem !important;
  line-height: 1.88 !important;
}

.nx-hero-badge {
  font-size: 0.73rem !important;
  letter-spacing: 1.8px !important;
  padding: 8px 20px !important;
}


/* ████████████████████████████████████████████████████████████
   BANNER — PROFESSIONAL REDESIGN  (nx-banner-pro)
████████████████████████████████████████████████████████████ */

.nx-banner-pro {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 130px 0 90px !important;
}

/* ── Background orbs ── */
.nx-banner-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.nx-banner-orb--1 {
  width: 600px;
  height: 600px;
  top: -180px;
  left: -150px;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.18) 0%, transparent 70%);
}

.nx-banner-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(159, 122, 234, 0.14) 0%, transparent 70%);
}

.nx-banner-orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(72, 187, 120, 0.08) 0%, transparent 70%);
}

/* Container relative for z-index */
.nx-banner-pro-inner {
  position: relative;
  z-index: 1;
}

/* ── Badge ── */
.nx-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.12), rgba(159, 122, 234, 0.08));
  border: 1px solid rgba(99, 179, 237, 0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #63b3ed;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(99, 179, 237, 0.12);
}

.nx-pro-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: proBlink 1.4s ease infinite;
  flex-shrink: 0;
}

@keyframes proBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

/* ── Title ── */
.nx-banner-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -2px !important;
  color: #f0f6ff !important;
}

.nx-banner-title-grad {
  display: block;
  background: linear-gradient(125deg, #63b3ed 0%, #9f7aea 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
.nx-banner-desc {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: #8fa0b5 !important;
  max-width: 500px;
}

/* ── Action buttons ── */
.nx-pro-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nx-pro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.nx-pro-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(59, 130, 246, 0.55);
  color: #fff;
  text-decoration: none;
}

.nx-pro-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 12px;
  background: transparent;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nx-pro-btn-ghost:hover {
  border-color: rgba(99, 179, 237, 0.5);
  color: #63b3ed;
  background: rgba(99, 179, 237, 0.06);
  text-decoration: none;
}

/* ── Trust bar ── */
.nx-pro-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
}

.nx-pro-avatars {
  display: flex;
  flex-shrink: 0;
}

.nx-pro-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border: 2px solid rgba(99, 102, 241, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.nx-pro-avatar:not(:first-child) {
  margin-left: -8px;
}

.nx-pro-avatar:nth-child(1) {
  z-index: 4
}

.nx-pro-avatar:nth-child(2) {
  z-index: 3;
  background: linear-gradient(135deg, #3b82f6, #9f7aea)
}

.nx-pro-avatar:nth-child(3) {
  z-index: 2;
  background: linear-gradient(135deg, #22d3ee, #6366f1)
}

.nx-pro-avatar:nth-child(4) {
  z-index: 1;
  background: linear-gradient(135deg, #f59e0b, #ef4444)
}

.nx-pro-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.nx-pro-trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nx-pro-trust-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1.2;
}

.nx-pro-trust-lbl {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .nx-banner-pro {
    min-height: auto !important;
    padding: 100px 0 60px !important;
  }

  .nx-banner-title {
    font-size: clamp(2rem, 7vw, 3rem) !important;
    letter-spacing: -1px !important;
  }

  .nx-banner-desc {
    max-width: 100%;
  }

  .nx-pro-trust {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .nx-banner-pro {
    padding: 88px 0 52px !important;
  }

  .nx-banner-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    letter-spacing: -0.5px !important;
  }

  .nx-pro-actions {
    flex-direction: column;
    gap: 10px;
  }

  .nx-pro-btn-primary,
  .nx-pro-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .nx-pro-trust {
    padding: 12px 14px;
  }

  .nx-pro-trust-divider {
    display: none;
  }
}


/* ████████████████████████████████████████████████
   BANNER CLIP + GAP FINAL FIX
████████████████████████████████████████████████ */

/* Remove clip from banner — content was being cut */
.hn_banner,
.nx-banner-pro {
  overflow: visible !important;
  clip-path: none !important;
}

/* Only clip the orb decorations, not the content */
.nx-banner-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Container must have proper padding */
.nx-banner-pro .container {
  padding-left: max(15px, env(safe-area-inset-left)) !important;
  padding-right: max(15px, env(safe-area-inset-right)) !important;
}

/* Fix top gap — header is 70px fixed */
@media (min-width: 992px) {
  .nx-banner-pro {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    min-height: calc(100vh - 0px) !important;
  }
}

/* Ensure row content is not clipped */
.nx-banner-pro .row {
  overflow: visible !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Live markets card — fit inside column */
.lm-card {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Orbs stay clipped inside their own div */
.nx-banner-orb {
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Content always above orbs */
.nx-banner-content,
.lm-card {
  position: relative !important;
  z-index: 1 !important;
}


/* ████████████████████████████████████████████████
   BANNER CONTENT POSITION — DEFINITIVE FIX
████████████████████████████████████████████████ */
.hn_banner,
.nx-banner-pro {
  min-height: auto !important;
  height: auto !important;
  display: block !important;
  padding-top: 110px !important;
  padding-bottom: 80px !important;
  overflow: visible !important;
}

.hn_banner .row,
.nx-banner-pro .row {
  align-items: center !important;
}

@media (max-width: 991.98px) {

  .hn_banner,
  .nx-banner-pro {
    padding-top: 90px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 575px) {

  .hn_banner,
  .nx-banner-pro {
    padding-top: 80px !important;
    padding-bottom: 48px !important;
  }
}


/* ████████████████████████████████████████████████
   DOUBLE SCROLLBAR FIX
████████████████████████████████████████████████ */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100% !important;
}


/* ████████████████████████████████████████████████
   HEADER SCROLLBAR REMOVE
████████████████████████████████████████████████ */
.hn_header,
.hn_hdr_inner,
.hn_header_right,
.hn_nav_menu {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

/* html scrollbar — only on right edge of page, not header */
html {
  scrollbar-gutter: stable !important;
}


/* ████████████████████████████████████████████████
   BANNER INTERNAL SCROLL REMOVE
████████████████████████████████████████████████ */
.hn_banner,
.nx-banner-pro,
.hn_banner .container,
.hn_banner .row,
.hn_banner .col-lg-6,
.nx-banner-pro .container,
.nx-banner-pro .row,
.nx-banner-pro-inner {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
  height: auto !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME PAGE — extracted inline styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Phone mockup status-bar icons */
.nx-phone-status-icon {
  font-size: .6rem;
}

/* Phone mockup chart SVG */
.nx-phone-chart-svg {
  width: 100%;
  height: 60px;
}

/* Payment section encrypted-note text */
.nx-payment-note {
  font-size: .85rem;
}

/* Live trade toast — hidden by default */
#nx-trade-toast {
  display: none;
}

/* Forex live-rate label (set by JS) */
.nx-forex-rate-lbl {
  color: #64748b;
  font-size: 10px;
}

/* Toast icon colours */
.nx-toast-icon-win {
  color: #22c55e;
}

.nx-toast-icon-loss {
  color: #ef4444;
}


/* ── Extracted inline styles ── */

/* ── layout/social_pixels.blade.php ── */
#nx-share-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nx-social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
}

.nx-social-share-btn--facebook {
  background: #1877f2;
}

.nx-social-share-btn--twitter {
  background: #000;
}

.nx-social-share-btn--whatsapp {
  background: #25d366;
}

.nx-social-share-btn--telegram {
  background: #229ed9;
}

/* ── layout/header.blade.php ── */
.nx-nav-menu-label {
  font-size: .78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .3px;
}

.nx-nav-close-icon {
  font-size: 1rem;
}

/* ── user/2fa_settings.blade.php ── */
.nx-qr-wrapper {
  background: #fff;
  border-radius: 12px;
}

.nx-warning-box {
  background: rgba(255, 193, 7, .08);
  border: 1px solid rgba(255, 193, 7, .2);
}

.nx-warning-text {
  color: #ffc107;
}

.nx-icon-circle-sm {
  width: 40px;
  height: 40px;
  font-size: .9rem;
}

/* ── user/gateway/stripe.blade.php ── */
#card-element,
.StripeElement {
  box-sizing: border-box;
  height: 46px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: border-color .2s, background .2s;
  cursor: text;
}

#card-element:focus-within,
.StripeElement--focus {
  border-color: rgba(54, 148, 237, .7) !important;
  background: rgba(54, 148, 237, .05) !important;
  outline: none;
}

.StripeElement--invalid {
  border-color: rgba(248, 113, 113, .7) !important;
}

.StripeElement--complete {
  border-color: rgba(14, 203, 129, .5) !important;
}

#card-errors {
  color: #f87171;
  font-size: .83rem;
  min-height: 1.1em;
}

/* ── user/lms/announcements.blade.php ── */
.nx-empty-icon-lg {
  font-size: 3rem;
  color: #475569;
}

.nx-empty-text {
  color: #94a3b8;
}

.nx-announce-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── user/lms/my_certificates.blade.php ── */
.nx-cert-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.nx-cert-avatar-icon {
  font-size: 1.6rem;
}

/* ── user/p2p/orders/show.blade.php ── */
.nx-p2p-details-text {
  max-width: 200px;
}

/* ── Spot dashboard fill/progress bar ── */
.sp-db-fill-wrap {
  position: relative;
  height: 16px;
  background: rgba(var(--nx-primary-rgb, 99, 102, 241), .1);
  border-radius: 4px;
  overflow: hidden;
  min-width: 60px;
}

.sp-db-fill-inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(var(--nx-primary-rgb, 99, 102, 241), .4);
  border-radius: 4px;
  transition: width .3s;
}

.sp-db-fill-lbl {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 16px;
  color: var(--nx-body-color, #555);
  font-weight: 600;
}

/* ════════════════════════════════════════
   VIP Levels — frontend/user/vip_levels
   ════════════════════════════════════════ */

/* Card states */
.vip-card {
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.vip-card:hover {
  transform: translateY(-2px);
}

.vip-card-unlocked {
  border-color: rgba(14, 203, 129, .35) !important;
}

.vip-card-current {
  border-color: rgba(246, 173, 85, .45) !important;
}

.vip-card-locked {
  opacity: .85;
}

/* Top ribbon badges */
.vip-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.vip-ribbon-current {
  background: rgba(246, 173, 85, .18);
  color: #f6ad55;
  border: 1px solid rgba(246, 173, 85, .35);
}

.vip-ribbon-unlocked {
  background: rgba(14, 203, 129, .15);
  color: #0ecb81;
  border: 1px solid rgba(14, 203, 129, .3);
}

.vip-ribbon-locked {
  background: rgba(100, 116, 139, .15);
  color: #94a3b8;
  border: 1px solid rgba(100, 116, 139, .3);
}

/* Icon */
.vip-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}

.vip-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.vip-icon-wrap .vip-icon-fb {
  font-size: 1.6rem;
  color: #f6ad55;
}

/* Progress bar */
.vip-progress-wrap {
  background: rgba(255, 255, 255, .07);
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 4px;
}

.vip-progress-bar {
  height: 100%;
  border-radius: 6px;
  transition: width .5s ease;
}

.vip-progress-bar-green {
  background: linear-gradient(90deg, #0ecb81, #05a866);
}

.vip-progress-bar-amber {
  background: linear-gradient(90deg, #f6ad55, #ed8936);
}

.vip-progress-bar-blue {
  background: linear-gradient(90deg, #63b3ed, #3182ce);
}

.vip-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: #64748b;
  margin-bottom: 10px;
}

/* Stats list */
.vip-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .82rem;
}

.vip-stats li:last-child {
  border-bottom: none;
}

.vip-stats .vip-stat-lbl {
  color: #64748b;
}

.vip-stats .vip-stat-val {
  font-weight: 600;
  color: #f1f5f9;
}

.vip-stats .vip-stat-val.green {
  color: #0ecb81;
}

.vip-stats .vip-stat-val.amber {
  color: #f6ad55;
}

.vip-stats .vip-stat-val.cyan {
  color: #63b3ed;
}

/* Bonus highlight */
.vip-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(246, 173, 85, .12);
  border: 1px solid rgba(246, 173, 85, .3);
  color: #f6ad55;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 12px;
}

/* Unlock notification toast */
.vip-unlock-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.vip-toast-item {
  background: linear-gradient(135deg, #1a2035, #1e2744);
  border: 1px solid rgba(246, 173, 85, .5);
  border-left: 4px solid #f6ad55;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  animation: vip-toast-in .4s ease forwards;
}

.vip-toast-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.vip-toast-title {
  font-size: .85rem;
  font-weight: 700;
  color: #f6ad55;
  margin-bottom: 2px;
}

.vip-toast-sub {
  font-size: .75rem;
  color: #94a3b8;
}

@keyframes vip-toast-in {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vip-toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(60px);
  }
}

/* Light theme overrides */
body.light-theme .vip-progress-wrap {
  background: rgba(0, 0, 0, .08);
}

body.light-theme .vip-stats li {
  border-color: rgba(0, 0, 0, .07);
}

body.light-theme .vip-stats .vip-stat-lbl {
  color: #64748b;
}

body.light-theme .vip-stats .vip-stat-val {
  color: #1e293b;
}

body.light-theme .vip-icon-wrap {
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .1);
}

body.light-theme .vip-toast-item {
  background: #fff;
  border-color: rgba(246, 173, 85, .6);
}


/* ─── UTILITY CLASSES (replaces inline styles) ─── */
.nx-text-xs {
  font-size: .75rem;
}

.nx-text-sm {
  font-size: .82rem;
}

.nx-color-green {
  color: #0ecb81;
}

.nx-color-blue {
  color: #63b3ed;
}

.nx-icon-round {
  border-radius: 50%;
  object-fit: contain;
}

.nx-icon-teal {
  background: rgba(6, 182, 212, .12);
  color: #06b6d4;
}

.nx-p2p-btn-cyan {
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .25);
  color: #06b6d4;
}

.nx-p2p-btn-purple {
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .25);
  color: #8b5cf6;
}

.nx-p2p-btn-green {
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
  color: #10b981;
}

.nx-p2p-btn-red {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #ef4444;
}

.nx-progress-track {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
}

.nx-color-amber {
  color: #f59e0b;
}

@media (max-width: 991px) {
    .hn_dashboard {
        display: block;
    }
}