/* =============================================
   ROOT VARIABLES — EFT Trading App
   Ek jagah change karo, poori website update
============================================= */
:root {

  /* ── Brand Colors ── */
  --color-primary: #FBC403;
  --color-primary-dark: #d4a200;
  --color-primary-light: #fdd14d;
  --color-primary-glow: rgba(251, 196, 3, 0.15);
  --color-primary-soft: rgba(251, 196, 3, 0.08);
  --color-primary-border: rgba(251, 196, 3, 0.2);

  /* ── Status Colors ── */
  --color-success: #4ac864;
  --color-success-soft: rgba(74, 200, 100, 0.08);
  --color-success-border: rgba(74, 200, 100, 0.2);

  --color-danger: #ff5b5b;
  --color-danger-soft: rgba(255, 91, 91, 0.08);
  --color-danger-border: rgba(255, 91, 91, 0.2);

  --color-warning: #ffb400;
  --color-info: #4a9eff;

  /* ── Background Layers ── */
  --bg-root: #000000;
  --bg-app: #0a0a0a;
  --bg-card: #141414;
  --bg-input: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --bg-hover: #222222;
  --bg-gold-card: linear-gradient(135deg, #1a1500 0%, #141414 55%, #0f0f0f 100%);

  /* ── Border Colors ── */
  --border-default: #222222;
  --border-subtle: #1a1a1a;
  --border-medium: #2a2a2a;
  --border-gold: #2e2410;
  --border-gold-dark: #2a2010;

  /* ── Text Colors ── */
  --text-primary: #f5f5f5;
  --text-secondary: #d0d0d0;
  --text-muted: #888888;
  --text-faint: #666666;
  --text-disabled: #555555;
  --text-ghost: #444444;
  --text-dark: #3a3a3a;
  --text-black: #0a0a0a;

  /* ── Typography ── */
  --font-base: 'Barlow', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* ── Spacing ── */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 20px;
  --sp-2xl: 24px;
  --sp-3xl: 32px;
  --sp-4xl: 48px;

  /* ── Border Radius ── */
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 13px;
  --radius-xl: 16px;
  --radius-2xl: 18px;
  --radius-3xl: 20px;
  --radius-4xl: 22px;
  --radius-full: 9999px;
  --radius-app: 40px;

  /* ── Shadows ── */
  --shadow-primary: 0 6px 22px rgba(251, 196, 3, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow-sm: 0 4px 14px rgba(251, 196, 3, 0.22);
  --shadow-glow-md: 0 0 0 4px rgba(251, 196, 3, 0.1), 0 8px 24px rgba(251, 196, 3, 0.25);
  --shadow-fab: 0 0 0 5px #111111, 0 0 0 7px #2c2415, 0 8px 20px rgba(251, 196, 3, 0.4);
  --shadow-input: 0 0 0 3px rgba(251, 196, 3, 0.1);
  --shadow-avatar: 0 0 0 6px rgba(251, 196, 3, 0.1), 0 12px 30px rgba(251, 196, 3, 0.3);

  /* ── App Shell ── */
  --app-width: 390px;
  --app-height: 844px;

  /* ── Transitions ── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;

  /* ── Bottom Bar ── */
  --bottombar-height: 80px;
  --bottombar-bg: #111111;
  --bottombar-border: #2a2a2a;

  /* ── Z-Index ── */
  --z-base: 1;
  --z-card: 2;
  --z-overlay: 10;
  --z-navbar: 999;
}

/* =============================================
   RESET
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =============================================
   BASE
============================================= */
html,
body {
  font-family: var(--font-base);
  background: var(--bg-root);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Bootstrap font override */
*,
.btn,
input,
select,
textarea {
  font-family: var(--font-base) !important;
}

/* =============================================
   APP SHELL
============================================= */
.app-container {
  width: var(--app-width);
  height: var(--app-height);
  background: var(--bg-app);
  border-radius: var(--radius-app);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.scroll-body {
  flex: 1;
  overflow-y: auto;
  padding: 50px var(--sp-lg) 95px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-body::-webkit-scrollbar {
  display: none;
}

/* =============================================
   DASHBOARD — HEADER
============================================= */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-xs);
}

.hello-text {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: var(--fw-regular);
  display: block;
}

.user-name {
  font-size: 19px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: block;
}

.last-login-text {
  font-size: 10px;
  color: var(--text-disabled);
  margin-top: 2px;
}

.header-right {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: background var(--transition-base);
}

.icon-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.notif-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--bg-app);
}

/* =============================================
   DIVIDER
============================================= */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-dark), transparent);
  margin: var(--sp-md) 0;
}

/* =============================================
   SECTION TITLE
============================================= */
.sec-title {
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-md) - 2px;
}

.sec-title span {
  color: var(--color-primary);
}

/* =============================================
   WALLET BALANCE CARD
============================================= */
.wallet-card {
  background: var(--bg-gold-card);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border-gold);
  padding: 18px 18px 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.wallet-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.wallet-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}

.wallet-amount {
  font-size: 34px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wallet-amount span {
  font-size: 18px;
  color: var(--color-primary);
  margin-right: 3px;
}

.wallet-sub {
  font-size: 10.5px;
  color: var(--text-disabled);
  margin-top: 5px;
}

/* =============================================
   STATS GRID
============================================= */
.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  padding: 13px 12px 11px;
  text-align: center;
}

.stat-box-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 7px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.stat-box-value {
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.stat-box-label {
  font-size: 10px;
  color: var(--text-faint);
  font-weight: var(--fw-regular);
  line-height: 1.3;
}

/* =============================================
   KYC + INVITE CARDS
============================================= */
.top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md) - 2px;
  margin-bottom: 14px;
}

.card-sm {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 15px 12px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  border: 1px solid var(--border-default);
  text-align: center;
}

.gold-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-sm);
  margin-bottom: 3px;
}

.gold-circle svg {
  color: var(--text-black);
}

.card-sm .clabel {
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.card-sm .csub {
  font-size: 10px;
  color: var(--text-ghost);
  font-weight: var(--fw-regular);
}

.invite-link-box {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  margin-top: 3px;
  border: 1px solid var(--border-medium) - 8;
}

.invite-link-text {
  font-size: 9.5px;
  color: var(--text-muted) + 22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 82px;
}

/* =============================================
   QUICK ACTION BUTTONS
============================================= */
.quick-btn {
  flex: 1;
  height: 50px;
  border-radius: var(--radius-lg);
  border: none;
  font-size: 13px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.quick-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.quick-btn:active {
  transform: scale(0.97);
}

.quick-btn.invest {
  background: var(--color-primary);
  color: var(--text-black);
  box-shadow: var(--shadow-primary);
}

.quick-btn.withdraw {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
}

.quick-btn.referral {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--color-primary);
}

.quick-btn-icon {
  font-size: 15px;
  line-height: 1;
}

.quick-btn-lbl {
  font-size: 11px;
  font-weight: var(--fw-semibold);
}

/* =============================================
   EFT TRADING TOGGLE
============================================= */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-md) - 2px;
}

.toggle-switch {
  width: 42px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--border-medium);
  position: relative;
  cursor: pointer;
  border: 1px solid #333;
  transition: background var(--transition-slow);
}

.toggle-switch.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.toggle-knob {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left var(--transition-slow);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.toggle-switch.active .toggle-knob {
  left: 22px;
}

/* =============================================
   ASSETS CARD
============================================= */
.assets-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 18px var(--sp-lg) var(--sp-lg);
  border: 1px solid var(--border-default);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.assets-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--color-primary-soft) 0%, transparent 70%);
  pointer-events: none;
}

.assets-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.assets-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: var(--fw-regular);
}

.assets-amount {
  font-size: 26px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.wallet-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg) + 1;
  border: 1px solid var(--border-medium) + 8;
}

.assets-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium) + 8, transparent);
  margin-bottom: 14px;
}

.assets-actions {
  display: flex;
  justify-content: space-around;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex: 1;
  text-align: center;
}

.action-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-label {
  font-size: 10.5px;
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

/* =============================================
   LEVEL INCOME TABLE
============================================= */
.level-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  overflow: hidden;
  margin-bottom: 14px;
}

.level-table-head {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 60px;
  padding: 9px 14px;
  background: #1a1500;
  border-bottom: 1px solid var(--border-gold-dark);
}

.level-table-head span {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.level-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 60px;
  padding: 9px 14px;
  align-items: center;
  border-bottom: 1px solid #181818;
  transition: background var(--transition-fast);
}

.level-row:last-child {
  border-bottom: none;
}

.level-row:hover {
  background: var(--color-primary-soft);
}

.level-badge {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
}

.level-badge.l1 {
  background: rgba(251, 196, 3, 0.15);
  color: var(--color-primary);
}

.level-badge.l2 {
  background: rgba(200, 200, 200, 0.1);
  color: #c0c0c0;
}

.level-badge.l3 {
  background: rgba(180, 130, 70, 0.12);
  color: #b4864a;
}

.level-badge.low {
  background: rgba(100, 100, 100, 0.08);
  color: var(--text-faint);
}

.level-cell {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
}

.level-cell.muted {
  color: var(--text-disabled);
}

.level-pct {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.level-income-val {
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.level-income-val.zero {
  color: var(--text-ghost);
}

/* =============================================
   FRIENDS CARD
============================================= */
.friends-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
  margin-bottom: 14px;
  gap: var(--sp-xs);
}

.friend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  flex: 2;
  text-align: center;
}

.friend-value {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
}

.friend-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: var(--fw-regular);
}

.friend-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.friend-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-soft);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-border);
}

/* =============================================
   BOTTOM SPACER
============================================= */
.bottom-spacer {
  height: 10px;
}

/* =============================================
   BOTTOM NAVIGATION BAR
============================================= */
/* .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--app-width);
  height: var(--bottombar-height);
  background: var(--bottombar-bg);
  border-top: 1px solid var(--bottombar-border);
  border-radius: 0 0 var(--radius-app) var(--radius-app);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 10px 18px;
  z-index: var(--z-navbar);
} */

/* .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  text-decoration: none;
  cursor: pointer;
  width: 54px;
  padding-top: var(--sp-xs);
}

.nav-item svg {
  display: block;
  color: #4a4a4a;
  transition: color var(--transition-base);
}

.nav-item.active svg {
  color: var(--color-primary);
}

.nav-label {
  font-family: var(--font-base);
  font-size: 10.5px;
  font-weight: var(--fw-medium);
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

.nav-item.active .nav-label {
  color: var(--color-primary);
}

.nav-fab-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 70px;
  position: relative;
  top: -16px;
}

.nav-fab {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
border: 1.38px solid;
border-image-source: linear-gradient(180deg, #151515 0%, #FBC403 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-fab);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  flex-shrink: 0;
}

.nav-fab:hover {
  transform: scale(1.06);
}

.nav-fab:active {
  transform: scale(0.96);
}

.nav-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
  display: block;
}

.nav-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-fab-icon svg {
  color: var(--text-black);
} */

/* =============================================
   BACK BUTTON (shared across pages)
============================================= */
.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px var(--sp-xl) 18px;
  position: relative;
  flex-shrink: 0;
}

.back-btn {
  position: absolute;
  left: var(--sp-xl);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  text-decoration: none;
  transition: background var(--transition-base);
}

.back-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.page-title {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-align: center;
}

/* =============================================
   SHARED CONTENT AREA
============================================= */
.content-area {
  flex: 1;
  overflow-y: auto;
  padding: 0 var(--sp-lg) 100px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.content-area::-webkit-scrollbar {
  display: none;
}

/* =============================================
   SHARED CARDS
============================================= */
.detail-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-default);
  overflow: hidden;
  position: relative;
  z-index: var(--z-card);
}

.card-section {
  padding: 18px 18px 6px;
}

.card-section+.card-section {
  border-top: 1px solid var(--bg-elevated);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
}

.detail-row+.detail-row {
  border-top: 1px solid #1a1a1a;
}

.row-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: var(--fw-regular);
}

.row-value {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

.row-value.loss {
  color: var(--color-danger);
}

.row-value.profit {
  color: var(--text-primary);
}

.row-value.neutral {
  color: var(--text-primary);
}

.row-value.price {
  color: var(--text-primary);
}

.row-value.buy {
  color: var(--color-primary);
}

.row-value.sell {
  color: var(--color-danger);
}

.row-value.datetime {
  color: var(--color-primary);
  font-size: 12.5px;
  font-weight: var(--fw-medium);
}

/* =============================================
   SHARED SUBMIT BUTTON
============================================= */
.submit-btn {
  width: 100%;
  height: 54px;
  border-radius: var(--radius-lg) + 1;
  background: var(--color-primary);
  border: none;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  color: var(--text-black);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-primary);
}

.submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* =============================================
   BG WATERMARK (shared)
============================================= */
.bg-watermark {
  position: absolute;
  bottom: var(--bottombar-height) - 2;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-watermark svg {
  width: 100%;
  height: 100%;
}

/* =============================================
   NOTE TEXT (shared)
============================================= */
.note-text {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-disabled);
  font-weight: var(--fw-regular);
  margin-top: 18px;
  line-height: 1.5;
  position: relative;
  z-index: var(--z-base);
}

/* =============================================
   LOGIN PAGE
============================================= */
.login--shell {
  width: var(--app-width);
  height: var(--app-height);
  background: var(--bg-app);
  border-radius: var(--radius-app);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.login--body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4xl) var(--sp-2xl) var(--sp-3xl);
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: var(--z-base);
}

.login--body::-webkit-scrollbar {
  display: none;
}

.login--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--sp-3xl);
}

.login--logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-avatar);
  margin-bottom: var(--sp-lg);
}

.login--logo-wrap svg {
  color: var(--text-black);
}

.login--app-name {
  font-size: 24px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.login--app-name span {
  color: var(--color-primary);
}

.login--tagline {
  font-size: 12px;
  color: var(--text-disabled);
  font-weight: var(--fw-regular);
  margin-top: var(--sp-xs);
  letter-spacing: 0.03em;
}

.login--card {
  background: var(--bg-card);
  border-radius: var(--radius-4xl);
  border: 1px solid var(--border-default);
  padding: 26px 22px 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.login--title {
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.01em;
}

.login--subtitle {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: var(--fw-regular);
  margin-bottom: var(--sp-2xl);
}

.login--field-wrap {
  margin-bottom: 14px;
}

.login--label {
  display: block;
  font-size: 11.5px;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.login--input-box {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  padding: 0 14px;
  height: 52px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.login--input-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-input);
}

.login--input-icon {
  color: var(--text-disabled);
  margin-right: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color var(--transition-base);
}

.login--input-box:focus-within .login--input-icon {
  color: var(--color-primary);
}

.login--input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.login--input::placeholder {
  color: var(--text-dark);
}

.login--input-toggle {
  background: none;
  border: none;
  color: var(--text-disabled);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color var(--transition-base);
}

.login--input-toggle:hover {
  color: var(--color-primary);
}

.login--forgot-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--sp-2xl);
  margin-top: -6px;
}

.login--forgot {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: none;
}

.login--forgot:hover {
  opacity: 0.8;
}

.login--error {
  background: var(--color-danger-soft);
  border: 1px solid var(--color-danger-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--color-danger);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.login--btn {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  border: none;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  color: var(--text-black);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-primary);
}

.login--btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.login--btn:active {
  transform: translateY(0);
  opacity: 1;
}

.login--divider {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin: 18px 0;
}

.login--divider-line {
  flex: 1;
  height: 1px;
  background: var(--bg-elevated);
}

.login--divider-text {
  font-size: 11px;
  color: var(--text-ghost);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.login--social-row {
  display: flex;
  gap: var(--sp-md) - 2px;
}

.login--social-btn {
  flex: 1;
  height: 46px;
  border-radius: var(--radius-md) + 2;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.login--social-btn:hover {
  border-color: #3a3a3a;
  background: var(--bg-card);
  color: var(--text-primary);
}

.login--footer {
  text-align: center;
  margin-top: auto;
  padding-top: var(--sp-xl);
}

.login--footer-text {
  font-size: 13px;
  color: var(--text-disabled);
  font-weight: var(--fw-regular);
}

.login--footer-link {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  text-decoration: none;
  margin-left: var(--sp-xs);
}

.login--footer-link:hover {
  opacity: 0.8;
}

/* =============================================
   SIGNUP PAGE
============================================= */
.signup--shell {
  width: var(--app-width);
  height: var(--app-height);
  background: var(--bg-app);
  border-radius: var(--radius-app);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.signup--body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4xl) var(--sp-2xl) var(--sp-3xl);
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: var(--z-base);
}

.signup--body::-webkit-scrollbar {
  display: none;
}

.signup--brand {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: 26px;
}

.signup--logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-md);
  flex-shrink: 0;
}

.signup--logo-wrap svg {
  color: var(--text-black);
}

.signup--app-name {
  font-size: 18px;
  font-weight: var(--fw-black);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.signup--app-name span {
  color: var(--color-primary);
}

.signup--tagline {
  font-size: 11px;
  color: var(--text-disabled);
  font-weight: var(--fw-regular);
  margin-top: 2px;
}

.signup--card {
  background: var(--bg-card);
  border-radius: var(--radius-4xl);
  border: 1px solid var(--border-default);
  padding: var(--sp-2xl) 22px 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.signup--title {
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.01em;
}

.signup--subtitle {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: var(--fw-regular);
  margin-bottom: var(--sp-2xl) - 2px;
}

/* Steps */
.signup--steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-2xl);
}

.signup--step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.signup--step-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  border: 2px solid var(--border-medium);
  color: var(--text-disabled);
  background: var(--bg-input);
  transition: all var(--transition-base);
}

.signup--step.active .signup--step-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-black);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.signup--step.done .signup--step-dot {
  background: var(--color-primary-soft);
  border-color: var(--color-primary-border);
  color: var(--color-primary);
}

.signup--step-lbl {
  font-size: 9.5px;
  color: var(--text-disabled);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.signup--step.active .signup--step-lbl {
  color: var(--color-primary);
}

.signup--step-line {
  flex: 1;
  height: 1px;
  background: var(--border-default);
  margin-bottom: 16px;
  margin-left: -4px;
  margin-right: -4px;
}

/* Signup form fields reuse login vars */
.signup--field-wrap {
  margin-bottom: 13px;
}

.signup--label {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.signup--required {
  color: var(--color-primary);
  margin-left: 2px;
}

.signup--input-box {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  padding: 0 14px;
  height: 50px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.signup--input-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-input);
}

.signup--input-box.error {
  border-color: var(--color-danger-border);
  box-shadow: 0 0 0 3px var(--color-danger-soft);
}

.signup--input-icon {
  color: var(--text-disabled);
  margin-right: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.signup--input-box:focus-within .signup--input-icon {
  color: var(--color-primary);
}

.signup--input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.signup--input::placeholder {
  color: var(--text-dark);
}

.signup--input-toggle {
  background: none;
  border: none;
  color: var(--text-disabled);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color var(--transition-base);
}

.signup--input-toggle:hover {
  color: var(--color-primary);
}

.signup--phone-prefix {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  margin-right: var(--sp-sm);
  padding-right: var(--sp-sm);
  border-right: 1px solid var(--border-medium);
  white-space: nowrap;
}

.signup--optional-tag {
  font-size: 9px;
  color: var(--text-ghost);
  font-weight: var(--fw-medium);
  background: var(--bg-elevated);
  border-radius: 5px;
  padding: 2px 6px;
  margin-left: var(--sp-xs) + 2;
  vertical-align: middle;
  letter-spacing: 0.03em;
}

/* Password strength */
.signup--strength-wrap {
  margin-top: var(--sp-sm);
  display: flex;
  gap: var(--sp-xs);
  align-items: center;
}

.signup--strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--bg-elevated);
  transition: background var(--transition-slow);
}

.signup--strength-bar.weak {
  background: var(--color-danger);
}

.signup--strength-bar.fair {
  background: var(--color-warning);
}

.signup--strength-bar.good {
  background: var(--color-info);
}

.signup--strength-bar.strong {
  background: var(--color-success);
}

.signup--strength-label {
  font-size: 10px;
  color: var(--text-disabled);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}

/* Terms */
.signup--terms-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md) - 2px;
  margin-bottom: var(--sp-xl);
  margin-top: var(--sp-xs);
}

.signup--checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--border-medium);
  background: var(--bg-input);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition-base);
  position: relative;
}

.signup--checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.signup--checkbox:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 9px;
  border: 2px solid var(--text-black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.signup--terms-text {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}

.signup--terms-text a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
}

.signup--terms-text a:hover {
  opacity: 0.8;
}

/* Error / Success alerts */
.signup--error {
  background: var(--color-danger-soft);
  border: 1px solid var(--color-danger-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--color-danger);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.signup--success {
  background: var(--color-success-soft);
  border: 1px solid var(--color-success-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--color-success);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.signup--btn {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-lg) + 1;
  background: var(--color-primary);
  border: none;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  color: var(--text-black);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-primary);
}

.signup--btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.signup--btn:active {
  transform: translateY(0);
  opacity: 1;
}

.signup--footer {
  text-align: center;
  margin-top: auto;
  padding-top: var(--sp-lg);
}

.signup--footer-text {
  font-size: 13px;
  color: var(--text-disabled);
  font-weight: var(--fw-regular);
}

.signup--footer-link {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  text-decoration: none;
  margin-left: var(--sp-xs);
}

.signup--footer-link:hover {
  opacity: 0.8;
}

/* Shared BG decorations for auth pages */
.login--bg-glow,
.signup--bg-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--color-primary-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.login--bg-watermark,
.signup--bg-watermark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.login--bg-watermark svg,
.signup--bg-watermark svg {
  width: 100%;
  height: 100%;
}


/* Add Moeney */
/* Only what Bootstrap can't do */
.addmoney--balance-card {
  background: linear-gradient(135deg, #1a1500 0%, #141414 55%, #0f0f0f 100%);
  border: 1px solid rgba(251, 196, 3, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.addmoney--balance-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.addmoney--balance-amount {
  font-size: 32px;
  font-weight: 900;
  color: #f5f5f5;
  letter-spacing: -0.02em;
  line-height: 1;
}

.addmoney--balance-amount .addmoney--currency {
  font-size: 17px;
  color: var(--color-primary);
}

/* Input box */
.addmoney--input-wrap {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 13px;
  height: 58px;
  transition: border-color .2s, box-shadow .2s;
}

.addmoney--input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.addmoney--prefix {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

.addmoney--input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #f5f5f5;
  width: 100%;
}

.addmoney--input::placeholder {
  color: #2a2a2a;
}

/* Quick amount buttons */
.addmoney--quick-btn {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #888;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  transition: all .2s;
  cursor: pointer;
}

.addmoney--quick-btn:hover,
.addmoney--quick-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

/* Payment method */
.addmoney--method {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
}

.addmoney--method.active {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.addmoney--method-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #1e1e1e;
  color: #555;
  transition: all .2s;
}

.addmoney--method.active .addmoney--method-icon {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.addmoney--method-label {
  font-size: 10px;
  color: #666;
  font-weight: 500;
  transition: color .2s;
}

.addmoney--method.active .addmoney--method-label {
  color: var(--color-primary);
}

/* Submit button */
.addmoney--submit {
  background: var(--color-primary);
  border: none;
  border-radius: 14px;
  height: 52px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px var(--color-primary-glow);
  transition: opacity .2s, transform .15s;
}

.addmoney--submit:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.addmoney--submit:active {
  transform: translateY(0);
}


/* ── Shared reusable classes ── */
.eft-card {
  background: var(--bg-card);
  border: 1px solid var(--border-def);
  border-radius: 16px;
}

.eft-gold-card {
  background: linear-gradient(135deg, #1a1500 0%, #141414 55%, #0f0f0f 100%);
  border: 1px solid var(--color-primary-border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.eft-gold-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.eft-input-wrap {
  background: var(--bg-input);
  border: 1px solid var(--border-mid);
  border-radius: 13px;
  height: 54px;
  transition: border-color .2s, box-shadow .2s;
}

.eft-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.eft-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  width: 100%;
}

.eft-input::placeholder {
  color: #2a2a2a;
}

.eft-prefix {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.eft-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 13px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

.eft-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.eft-btn:active {
  transform: translateY(0);
}

.eft-btn-gold {
  background: var(--color-primary);
  color: #0a0a0a;
  box-shadow: 0 5px 18px var(--color-primary-glow);
}

.eft-btn-outline {
  background: var(--bg-card);
  border: 1px solid var(--border-mid) !important;
  color: var(--text-primary);
}

.eft-btn-outline:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary);
}

.eft-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.eft-amount {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -.02em;
  line-height: 1;
}

.eft-amount .sym {
  font-size: 16px;
  color: var(--color-primary);
}

.eft-sec {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.eft-sec .acc {
  color: var(--color-primary);
}

.eft-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
}

.eft-row {
  padding: 11px 0;
  border-bottom: 1px solid #181818;
}

.eft-row:last-child {
  border-bottom: none;
}

.eft-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.eft-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-def);
  border-radius: 10px;
  color: var(--text-faint);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  cursor: pointer;
  transition: all .2s;
}

.eft-tab.active {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.eft-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Status badges */
.b-done {
  background: var(--color-success-soft) !important;
  color: var(--color-success) !important;
  border: 1px solid var(--color-success-border);
}

.b-pending {
  background: rgba(255, 180, 0, .08) !important;
  color: var(--color-warning) !important;
  border: 1px solid rgba(255, 180, 0, .2);
}

.b-failed,
.b-rejected {
  background: var(--color-danger-soft) !important;
  color: var(--color-danger) !important;
  border: 1px solid var(--color-danger-border);
}

/* Level chips */
.lchip {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.lc1 {
  background: rgba(251, 196, 3, .15);
  color: var(--color-primary);
}

.lc2 {
  background: rgba(200, 200, 200, .1);
  color: #c0c0c0;
}

.lc3 {
  background: rgba(180, 130, 70, .12);
  color: #b4864a;
}

.lc4 {
  background: rgba(100, 100, 100, .08);
  color: #666;
}