@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), local("Inter-Regular");
}

:root{
  --bg0:#1a0812;
  --bg1:#2d101d;
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.18);
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --brand1:#5e9ddc;
  --brand2:#d5dce6;
  --good:#46f0a6;
  --warn:#ffcb6b;
  --bad:#ff5c7a;
  --shadow: 0 24px 60px rgba(0,0,0,.35);
  --r: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--txt);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(94,157,220,.18), transparent 60%),
              radial-gradient(900px 900px at 80% 0%, rgba(213,220,230,.15), transparent 60%),
              linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6,11,26,.72), rgba(6,11,26,.35));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar .inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:10px; align-items:center; font-weight:700; letter-spacing:.3px}
.brand-badge{
  width:32px;height:32px;border-radius:10px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 10px 30px rgba(124,77,255,.25);
}
.nav{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22)}
.btn.primary{
  border: 0;
  background: linear-gradient(135deg, rgba(94,231,255,.95), rgba(124,77,255,.95));
  color:#071022;
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent}

.hero{padding:56px 0 26px}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch;
}
.card{
  background: linear-gradient(180deg, var(--glass2), var(--glass));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.card.pad{padding:20px}
.h1{font-size: clamp(28px, 3vw, 42px); line-height:1.1; margin:0 0 10px}
.p{color:var(--muted); margin:0 0 16px; line-height:1.6}
.chip{display:inline-flex; padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: var(--muted); font-size:12px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.mini{
  padding:14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.mini b{display:block; font-size:14px; margin-bottom:6px}
.mini span{color:var(--muted); font-size:12px}

.flash{margin:14px 0}
.alert{padding:12px 14px; border-radius: 14px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06)}
.alert.error{border-color: rgba(255,92,122,.35); background: rgba(255,92,122,.10)}
.alert.success{border-color: rgba(70,240,166,.35); background: rgba(70,240,166,.10)}
.alert.info{border-color: rgba(94,231,255,.32); background: rgba(94,231,255,.08)}

/* Forms */
.form{display:grid; gap:12px}
.field{display:grid; gap:7px}
.label{font-size:12px; color:var(--muted)}
.input{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  color: var(--txt);
  outline: none;
}
.input:focus{border-color: rgba(94,231,255,.42); box-shadow: 0 0 0 3px rgba(94,231,255,.12)}
.hint{font-size:12px; color:var(--muted)}
.err{font-size:12px; color:rgba(255,92,122,.95)}

/* App layout */
.app{
  display:grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 62px);
}
.sidebar{
  position:sticky; top:62px; align-self:start;
  height: calc(100vh - 62px);
  padding:14px;
  border-right: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  backdrop-filter: blur(14px);
}
.side-title{font-size:12px; color: var(--muted); padding:12px 10px}
.side-link{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 10px;
  border-radius: 14px;
  border:1px solid transparent;
  color: var(--txt);
  transition: background .15s ease, border-color .15s ease;
}
.side-link:hover{background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.10)}
.side-link.active{background: rgba(94,231,255,.08); border-color: rgba(94,231,255,.22)}
.badge{
  font-size:11px; padding:4px 8px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  color: var(--muted);
}
.content{padding:18px}
.page-title{font-size:18px; margin:0 0 12px}
.kpi{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
.kpi .mini{background: rgba(255,255,255,.05)}
.kpi .num{font-size:20px; font-weight:700}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
}
.table th,.table td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left; font-size:13px}
.table th{color: var(--muted); font-weight:600; background: rgba(255,255,255,.04)}

.muted{color:var(--muted)}
.row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.spacer{flex:1}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .app{grid-template-columns: 1fr}
  .sidebar{position:relative; top:0; height:auto; border-right:0; border-bottom:1px solid rgba(255,255,255,.10)}
  .kpi{grid-template-columns: repeat(2, 1fr)}
}

/* ============================================================
   MOBILE FINTECH APP THEME (reference design)
   ============================================================ */
:root {
  --m-bg1:#1a0812;
  --m-bg2:#2d101d;
  --m-blue:#e11d48;
  --m-blue2:#fb7185;
  --m-blue3:#be123c;
  --m-card:#240c17;
  --m-text:#ffffff;
  --m-muted:#a89b9f;
  --m-orange:#ffcb6b;
  --m-green:#46f0a6;
  --m-shadow:0 12px 32px rgba(0,0,0,.35);
}
body.app-dark{
  font-family:Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  color:var(--m-text);
  background:var(--m-bg1);
  min-height:100vh;
  padding-bottom:0;
}

.m-app{
  position:relative;
  max-width:480px;
  margin:0 auto;
  min-height:100vh;
  padding-bottom:calc(76px + env(safe-area-inset-bottom));
}

.m-bg{
  pointer-events:none;
  position:fixed;
  inset:0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(225,29,72,.25), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(251,113,133,.20), transparent 55%),
    linear-gradient(180deg, rgba(45,16,29,.8), transparent 40%);
  z-index:0;
}

.m-page{
  position:relative;
  z-index:1;
  padding:12px 14px 20px;
}

.m-notice{
  position:sticky;
  top:0;
  z-index:5;
  background:linear-gradient(90deg,#2c3e50,#34495e);
  color:#ffd54f;
  text-align:center;
  font-size:12px;
  padding:8px 12px;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
}
.m-notice-dot{
  width:8px;height:8px;border-radius:50%;
  background:#ffd54f;
  animation:m-pulse 1.4s ease infinite;
}
@keyframes m-pulse{0%,100%{opacity:1}50%{opacity:.35}}

.m-profile-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 4px 10px;
}
.m-avatar{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,var(--m-bg2),var(--m-blue));
  color:#fff;
  display:grid;place-items:center;
  font-weight:700;font-size:20px;
  box-shadow:var(--m-shadow);
  flex-shrink:0;
}
.m-avatar--lg{width:72px;height:72px;font-size:28px;margin:0 auto 10px}
.m-avatar--sm{width:40px;height:40px;font-size:16px}
.m-profile-meta{flex:1;min-width:0}
.m-profile-id{font-size:18px;font-weight:700;color:var(--m-text)}
.m-profile-sub{font-size:12px;color:var(--m-muted)}
.m-purse-btn{
  display:inline-flex;align-items:center;gap:6px;
  background:linear-gradient(135deg,var(--m-blue),#2d6092);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;font-weight:600;
  box-shadow:0 8px 20px rgba(46,204,113,.28);
  white-space:nowrap;
}
.m-purse-ico{font-size:14px}

.m-hero-card{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  background:linear-gradient(135deg,var(--m-bg2) 0%, var(--m-blue) 120%);
  border-radius:18px;
  padding:16px 10px;
  color:#fff;
  box-shadow:var(--m-shadow);
  margin-bottom:14px;
}
.m-hero-col{
  text-align:center;
  padding:4px 6px;
  border-right:1px solid rgba(255,255,255,.22);
}
.m-hero-col:last-child{border-right:0}
.m-hero-col span{display:block;font-size:11px;opacity:.9;margin-bottom:6px}
.m-hero-col strong{font-size:17px;font-weight:700}
.m-hero-col--id strong{color:#b9ffcf}

.m-auth-box{
  position:relative;z-index:2;
  margin:-40px 14px 20px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:12px 10px;
  min-height:88px;
  box-shadow:0 6px 18px rgba(0,0,0,.2);
  animation:m-fadeUp .45s ease both;
}

.m-stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:16px;
}
.m-stat-card{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:12px 10px;
  min-height:88px;
  box-shadow:0 6px 18px rgba(0,0,0,.2);
  animation:m-fadeUp .45s ease both;
}
.m-stat-card p{
  margin:0 0 8px;
  font-size:10px;
  line-height:1.35;
  color:var(--m-muted);
}
.m-stat-card h3{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:var(--m-blue2);
}
.m-stat-card--highlight h3{
  font-size:18px;
  color:var(--m-blue);
}
@keyframes m-fadeUp{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

.m-menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px 8px;
  padding-bottom:8px;
}
.m-menu-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
  color:var(--m-text);
  font-size:11px;
  line-height:1.25;
  transition:transform .15s ease;
}
.m-menu-item > span:last-child{
  font-size:10px;
  font-weight:600;
  letter-spacing:.1px;
}
.m-menu-item:hover{transform:translateY(-2px)}
.m-menu-ico{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--m-bg2),var(--m-blue));
  display:grid;place-items:center;
  color:#fff;
  font-size:18px;
  box-shadow:0 6px 14px rgba(0,0,0,.2);
}
.m-menu-ico i{font-size:20px;line-height:1}
.m-menu-item--form{border:0;background:transparent;padding:0;margin:0}
.m-menu-item--form button{
  all:unset;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  cursor:pointer;font-size:11px;color:var(--m-text);
}

.m-subheader{
  display:flex;align-items:center;justify-content:space-between;
  padding:8px 2px 14px;
}
.m-subheader h1{
  margin:0;font-size:18px;font-weight:700;color:var(--m-blue3);
}
.m-back,.m-header-action{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.75);
  color:var(--m-blue);
  font-size:18px;font-weight:700;
  box-shadow:0 4px 12px rgba(47,128,237,.12);
}
.m-back-spacer{width:36px}

.m-wallet-card{
  background:linear-gradient(160deg,var(--m-bg2) 0%,var(--m-blue) 100%);
  border-radius:20px;
  padding:18px 16px 0;
  color:#fff;
  box-shadow:var(--m-shadow);
  margin-bottom:14px;
  overflow:hidden;
}
.m-wallet-card--compact{padding-bottom:16px}
.m-wallet-top{text-align:center;padding-bottom:14px}
.m-wallet-label{font-size:13px;opacity:.92}
.m-wallet-total{font-size:34px;font-weight:700;margin-top:4px;letter-spacing:.3px}
.m-wallet-split{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid rgba(255,255,255,.22);
  padding:14px 0;
  text-align:center;
}
.m-wallet-split span{display:block;font-size:12px;opacity:.9}
.m-wallet-split strong{display:block;font-size:18px;margin-top:4px}
.m-wallet-actions{
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;
  background:rgba(0,0,0,.08);
  margin:0 -16px;
}
.m-wallet-actions a{
  text-align:center;padding:14px 10px;
  color:#fff;font-weight:600;font-size:15px;
  transition:background .15s ease;
}
.m-wallet-actions a:hover{background:rgba(255,255,255,.08)}
.m-wallet-divider{width:1px;height:28px;background:rgba(255,255,255,.35)}

.m-tabs{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
  margin-bottom:12px;
}
.m-tab{
  text-align:center;padding:11px 8px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  color:var(--m-muted);
  font-size:13px;font-weight:600;
  border:1px solid rgba(255,255,255,.1);
}
.m-tab.active{
  background:linear-gradient(135deg,var(--m-blue),var(--m-blue2));
  color:#fff;border-color:transparent;
  box-shadow:0 8px 18px rgba(47,128,237,.22);
}

.m-txn-list{display:grid;gap:10px;margin-bottom:16px}
.m-txn-item{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  border-radius:16px;
  padding:14px;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 6px 16px rgba(0,0,0,.2);
}
.m-txn-row{
  display:flex;justify-content:space-between;gap:10px;
  align-items:flex-start;
}
.m-txn-row + .m-txn-row{margin-top:10px;align-items:center}
.m-txn-id{
  font-size:11px;color:var(--m-muted);
  word-break:break-all;flex:1;
}
.m-txn-row time{font-size:11px;color:var(--m-muted);white-space:nowrap}
.m-txn-amt{font-size:22px;font-weight:700;color:var(--m-orange)}
.m-txn-status{font-size:12px;color:#9aa8b8;text-transform:lowercase}
.m-txn-empty{
  text-align:center;padding:28px 16px;
  color:var(--m-muted);font-size:14px;
  background:rgba(255,255,255,.05);
  border-radius:16px;
}

.m-wallet-breakdown{
  background:rgba(255,255,255,.05);
  border-radius:16px;padding:14px;
  border:1px solid rgba(255,255,255,.1);
}
.m-wallet-breakdown h4{margin:0 0 10px;font-size:14px}
.m-breakdown-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
}
.m-breakdown-grid div{
  background:rgba(255,255,255,.05);border-radius:12px;padding:10px;
}
.m-breakdown-grid span{display:block;font-size:11px;color:var(--m-muted)}
.m-breakdown-grid strong{font-size:15px;color:var(--m-blue)}

.m-bottom-nav{
  position:fixed;
  bottom:0;left:50%;
  transform:translateX(-50%);
  width:100%;max-width:480px;
  background:#1a0812;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex;
  justify-content:space-around;
  padding:8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index:40;
}
.m-nav-item{
  display:flex;flex-direction:column;align-items:center;
  gap:4px;
  color:var(--m-muted);
  font-size:10px;
  text-decoration:none;
  padding:4px 12px;
}
.m-nav-item i{font-size:18px;transition:transform .2s}
.m-nav-item.active{
  color:var(--m-blue);
}
.m-nav-ico{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
}
.m-nav-ico i{font-size:16px;line-height:1}

.m-support{
  position:fixed;
  right:max(12px, calc(50% - 240px + 12px));
  bottom:calc(82px + env(safe-area-inset-bottom));
  z-index:19;
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,var(--m-blue2),var(--m-blue));
  color:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  font-size:9px;font-weight:600;
  box-shadow:0 12px 28px rgba(47,128,237,.35);
  animation:m-float 3s ease-in-out infinite;
}
.m-support-icon{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  line-height:1;
}
.m-support-icon i{font-size:16px;line-height:1}
@keyframes m-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}

.m-profile-card{
  text-align:center;
  background:rgba(255,255,255,.05);
  border-radius:20px;padding:22px 16px;
  margin-bottom:14px;
  box-shadow:var(--m-shadow);
}
.m-profile-card h2{margin:0 0 4px;font-size:20px}
.m-profile-phone{margin:0 0 10px;color:var(--m-muted);font-size:14px}
.m-chip{
  display:inline-flex;padding:6px 12px;border-radius:999px;
  background:rgba(47,128,237,.1);color:var(--m-blue);
  font-size:12px;font-weight:600;
}
.m-chip--warn{background:rgba(255,138,43,.12);color:var(--m-orange)}

.m-info-list{
  background:rgba(255,255,255,.05);
  border-radius:18px;overflow:hidden;
  margin-bottom:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
.m-info-row{
  display:flex;justify-content:space-between;gap:12px;
  padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.1);
  font-size:14px;
}
.m-info-row:last-child{border-bottom:0}
.m-info-row span{color:var(--m-muted)}
.m-info-row strong{color:var(--m-text);text-align:right}
.m-info-row--full{flex-direction:column}
.m-copy-link{
  font-size:11px;
  word-break:break-all;
  font-weight:500;
  border:0;
  background:transparent;
  color:var(--m-blue3);
  text-align:left;
  padding:0;
  cursor:pointer;
}
.m-copy-link:hover{text-decoration:underline}

.m-profile-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.m-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  background:rgba(255,255,255,.05);
  color:#fff;font-weight:600;font-size:14px;
  border:1px solid rgba(255,255,255,.1);
}
.m-btn--primary{
  background:linear-gradient(135deg,var(--m-blue),var(--m-blue2));
  color:#fff;border:0;
  box-shadow:0 10px 22px rgba(47,128,237,.25);
}
.m-btn--block{width:100%}

.m-form-card,.m-coming-card,.m-plan-card{
  background:rgba(255,255,255,.05);
  border-radius:18px;padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.2);
  border:1px solid rgba(255,255,255,.1);
}
.m-form{display:grid;gap:12px}
.m-field{display:grid;gap:6px}
.m-field span{font-size:12px;color:var(--m-muted);font-weight:500}
.m-input{
  width:100%;padding:12px 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);color:#fff;
  font-family:inherit;font-size:14px;
  outline:none;
}
.m-input:focus{
  border-color:var(--m-blue2);
  box-shadow:0 0 0 3px rgba(86,204,242,.2);
}

.m-lead{padding:0 4px 12px;margin:0;font-size:13px;color:var(--m-muted)}
.m-plan-list{display:grid;gap:12px}
.m-plan-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.m-plan-head h3{margin:0;font-size:16px}
.m-plan-meta{margin:0 0 12px;padding-left:18px;color:var(--m-muted);font-size:12px}
.m-coming-card h2{margin:10px 0 8px;font-size:18px}
.m-coming-card p{margin:0;color:var(--m-muted);font-size:13px;line-height:1.5}

.m-team-block{margin-bottom:14px}
.m-team-block h3{margin:0 0 8px;font-size:14px;color:var(--m-blue3)}
.m-team-block h3 span{color:var(--m-muted);font-weight:500}
.m-team-row{
  display:flex;gap:10px;align-items:center;
  background:rgba(255,255,255,.8);
  border-radius:14px;padding:10px 12px;margin-bottom:8px;
}
.m-team-row strong{display:block;font-size:14px}
.m-team-row span{font-size:11px;color:var(--m-muted)}

.flash-wrap--mobile{
  position:relative;z-index:6;
  max-width:480px;margin:0 auto;padding:8px 14px 0;
}
body.app-dark .alert{
  color:var(--m-text);
  background:rgba(255,255,255,.9);
  border:1px solid rgba(47,128,237,.15);
}
body.app-dark .alert.success{border-color:rgba(46,204,113,.35);background:rgba(46,204,113,.12)}
body.app-dark .alert.error{border-color:rgba(255,92,122,.35);background:rgba(255,92,122,.1)}

@media (min-width:481px){
  body.app-dark{overflow:hidden}
  .m-app{
    height:100vh;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    padding-bottom:0;
  }
  .m-page{
    flex:1;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:calc(86px + env(safe-area-inset-bottom));
  }
  .m-app{border-left:1px solid rgba(47,128,237,.08);border-right:1px solid rgba(47,128,237,.08)}
}

@media (max-width:380px){
  .m-stats-grid{gap:8px}
  .m-stat-card{padding:10px 8px;min-height:82px}
  .m-stat-card p{font-size:9px}
  .m-stat-card h3{font-size:14px}
 
  .m-hero-col strong{font-size:15px}
}

@media (max-width:480px){
  .m-menu-grid{gap:10px 8px}
  .m-menu-ico{width:48px;height:48px}
  .m-menu-ico i{font-size:18px}
}

/* ============================================================
   NEW PREMIUM LANDING PAGE (DARK & GOLD THEME)
   ============================================================ */
.lp-body {
  background: radial-gradient(1200px 900px at 80% 20%, rgba(255, 200, 55, 0.10), transparent 60%),
              radial-gradient(900px 900px at 15% 80%, rgba(255, 215, 0, 0.05), transparent 50%),
              #030712 !important;
  color: #f3f4f6 !important;
  font-family: 'Poppins', 'Inter', sans-serif !important;
}

.lp-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Custom Header / Topbar adjustments */
.lp-topbar {
  background: rgba(3, 7, 18, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 200, 55, 0.12) !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-topbar .brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 200, 55, 0.3);
}
.lp-topbar .brand span {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #ffc837 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-nav a.lp-link {
  color: rgba(243, 244, 246, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.lp-nav a.lp-link:hover, .lp-nav a.lp-link.active {
  color: #ffc837;
  background: rgba(255, 200, 55, 0.06);
}

.lp-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
  z-index: 1001;
}
.lp-menu-toggle:hover {
  color: #ffc837;
}

.lp-btn-gold {
  background: linear-gradient(135deg, #ffd94d, #f5af19) !important;
  color: #030712 !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(245, 175, 25, 0.25) !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.lp-btn-gold:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(245, 175, 25, 0.4) !important;
  filter: brightness(1.05);
}

.lp-btn-outline {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e5e7eb !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: #ffc837 !important;
  color: #ffc837 !important;
  transform: translateY(-2px) !important;
}

.lp-btn-ghost-nav {
  color: rgba(243, 244, 246, 0.8) !important;
  background: transparent !important;
  border: none !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  transition: all 0.25s ease !important;
}
.lp-btn-ghost-nav:hover {
  color: #ffc837 !important;
  background: rgba(255, 200, 55, 0.05) !important;
}
.lp-admin-nav-link {
  color: rgba(255, 200, 55, 0.7) !important;
}
.lp-admin-nav-link:hover {
  color: #ffc837 !important;
  background: rgba(255, 200, 55, 0.08) !important;
}

/* Hero Section */
.lp-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.lp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-tagline {
  color: #ffc837;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.lp-hero-left h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}
.lp-hero-left h1 span.gold-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-subtitle {
  font-size: 18px;
  color: #f3f4f6;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.lp-hero-desc {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.lp-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 200, 55, 0.15);
  background: rgba(255, 200, 55, 0.03);
  color: #9ca3af;
  font-size: 13px;
  align-self: flex-start;
}
.lp-coming-badge b {
  color: #ffc837;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Floating Logo Showcase on Pedestal */
.lp-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 420px;
}
.lp-pedestal-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 55, 0.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
}
.lp-glowing-circle {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 200, 55, 0.25);
  animation: lp-spin 40s linear infinite;
  z-index: 2;
}
@keyframes lp-spin {
  100% { transform: rotate(360deg); }
}
.lp-logo-float {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 200, 55, 0.45));
  animation: lp-float 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.lp-pedestal {
  position: absolute;
  bottom: 0;
  width: 240px;
  height: 45px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.9) 0%, rgba(3, 7, 18, 0.95) 70%);
  border: 1px solid rgba(255, 200, 55, 0.3);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(255, 200, 55, 0.3);
  z-index: 2;
  transform: translateY(40px);
}
.lp-pedestal-glow {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 25px;
  background: rgba(255, 200, 55, 0.35);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 2;
  transform: translateY(35px);
}

/* Features Grid */
.lp-features {
  padding: 60px 0;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-feature-card {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.lp-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 55, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 55, 0.15);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.lp-feature-card:hover::before {
  opacity: 1;
}
.lp-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 200, 55, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffc837;
  font-size: 20px;
}
.lp-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0;
}
.lp-feature-card p {
  font-size: 13.5px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}
.lp-feature-card .lp-badge-soon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  align-self: flex-start;
}

/* Sections shared title styling */
.lp-divider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 26px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 45px;
  letter-spacing: 1.5px;
}
.lp-divider-title::before, .lp-divider-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffc837 50%, transparent);
}
.lp-divider-title span.lp-dot {
  font-size: 12px;
  color: #ffc837;
}

/* Plans Section */
.lp-plans {
  padding: 60px 0;
  position: relative;
}
.lp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.lp-plan-card {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.lp-plan-card:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.45);
}
.lp-plan-card.highlight {
  border: 1px solid #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
  background: rgba(15, 23, 42, 0.55);
}
.lp-plan-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #9ca3af;
  margin-bottom: 20px;
}
.lp-plan-card.highlight .lp-plan-icon {
  background: rgba(255, 215, 0, 0.1);
  color: #ffc837;
}
.lp-plan-card.elite .lp-plan-icon {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}
.lp-plan-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 15px;
}
.lp-plan-price {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.lp-plan-price span.pkr {
  font-size: 16px;
  color: #ffc837;
  font-weight: 600;
}
.lp-plan-desc {
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0;
}

.lp-plans-notice {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 200, 55, 0.12);
  border-radius: 30px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  color: #e5e7eb;
  margin: 20px auto 0;
  max-width: 720px;
}
.lp-plans-notice i {
  color: #ffc837;
  font-size: 16px;
}

/* How It Works Section */
.lp-how {
  padding: 60px 0;
}
.lp-how-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}
.lp-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  z-index: 2;
  position: relative;
}
.lp-step-circle-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.lp-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffc837;
  color: #030712;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #030712;
}
.lp-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 200, 55, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #ffc837;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 200, 55, 0.05);
}
.lp-step-node:hover .lp-step-circle {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 200, 55, 0.2);
  transform: scale(1.05);
}
.lp-step-node h4 {
  font-size: 15px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 8px;
}
.lp-step-node p {
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
  padding: 0 10px;
}
.lp-step-divider {
  flex: 1;
  height: 2px;
  border-top: 2px dotted rgba(255, 200, 55, 0.25);
  margin-top: 32px;
  z-index: 1;
  min-width: 20px;
}

/* Why Choose & High-Fidelity Dashboard Mockup */
.lp-why {
  padding: 60px 0 80px;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.lp-why-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.lp-why-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.lp-why-left h2 span {
  color: #ffc837;
}
.lp-why-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.lp-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #e5e7eb;
}
.lp-why-item i {
  color: #ffd700;
  font-size: 16px;
  background: rgba(255, 215, 0, 0.08);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.lp-trust-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 12px;
  min-width: 90px;
  text-align: center;
}
.lp-trust-badge span.val {
  font-size: 15px;
  font-weight: 700;
  color: #ffc837;
}
.lp-trust-badge span.lbl {
  font-size: 10.5px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CSS Dashboard Mockup */
.lp-mockup-frame {
  background: #0b0f19;
  border: 1px solid rgba(255, 200, 55, 0.15);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.lp-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.lp-mockup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffc837;
}
.lp-mockup-brand img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.lp-mockup-dots {
  display: flex;
  gap: 6px;
}
.lp-mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.lp-mockup-dots span:nth-child(1) { background: #ef4444; }
.lp-mockup-dots span:nth-child(2) { background: #f59e0b; }
.lp-mockup-dots span:nth-child(3) { background: #10b981; }

.lp-mockup-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
}
.lp-mockup-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding-right: 10px;
}
.lp-mockup-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-mockup-item {
  font-size: 10.5px;
  color: #9ca3af;
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mockup-item.active {
  background: rgba(255, 200, 55, 0.08);
  color: #ffc837;
  font-weight: 600;
}
.lp-mockup-item i {
  font-size: 11px;
}
.lp-mockup-item .lp-soon {
  font-size: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 4px;
  border-radius: 30px;
  margin-left: auto;
}

.lp-mockup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.lp-mockup-kpi {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lp-mockup-kpi:hover {
  border-color: rgba(255, 200, 55, 0.2);
  background: rgba(255, 200, 55, 0.02);
}
.lp-mockup-kpi.active {
  border-color: rgba(255, 200, 55, 0.3) !important;
  background: rgba(255, 200, 55, 0.04) !important;
}
.lp-mockup-kpi span.title {
  font-size: 9.5px;
  color: #9ca3af;
}
.lp-mockup-kpi span.num {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.lp-mockup-kpi i.ico {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  color: rgba(255, 200, 55, 0.4);
}

.lp-mockup-chart-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 10px;
}
.lp-mockup-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.lp-mockup-chart-header span.lbl {
  font-size: 10px;
  font-weight: 600;
  color: #f3f4f6;
}
.lp-mockup-chart-svg {
  width: 100%;
  height: 70px;
}

.lp-mockup-txns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-mockup-txn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  font-size: 10px;
}
.lp-mockup-txn-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mockup-txn-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}
.lp-mockup-txn-icon.green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.lp-mockup-txn-icon.blue { color: #3b82f6; background: rgba(59, 130, 246, 0.08); }
.lp-mockup-txn-icon.yellow { color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.lp-mockup-txn-icon.red { color: #ef4444; background: rgba(239, 68, 68, 0.08); }

.lp-mockup-txn-meta {
  display: flex;
  flex-direction: column;
}
.lp-mockup-txn-meta span.name {
  font-weight: 600;
  color: #e5e7eb;
}
.lp-mockup-txn-meta span.date {
  font-size: 8px;
  color: #9ca3af;
}
.lp-mockup-txn-amt {
  font-weight: 700;
}
.lp-mockup-txn-amt.green { color: #10b981; }
.lp-mockup-txn-amt.red { color: #ef4444; }

/* Landing Page Footer */
.lp-footer {
  background: #02040a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 20px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-footer-logo-row img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 200, 55, 0.25);
}
.lp-footer-logo-row span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #ffc837 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-footer-brand p {
  color: #9ca3af;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}
.lp-footer-socials {
  display: flex;
  gap: 10px;
}
.lp-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #9ca3af;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.25s ease;
}
.lp-footer-socials a:hover {
  background: rgba(255, 200, 55, 0.1);
  border-color: #ffc837;
  color: #ffc837;
  transform: translateY(-2px);
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0;
}
.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer-links a {
  color: #9ca3af;
  font-size: 13px;
  transition: all 0.25s ease;
}
.lp-footer-links a:hover {
  color: #ffc837;
  padding-left: 3px;
}

.lp-footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #9ca3af;
}
.lp-footer-contact-row i {
  color: #ffc837;
  font-size: 13px;
  margin-top: 3px;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-footer-bottom p {
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0;
}
.lp-footer-made {
  font-size: 12.5px;
  color: #9ca3af;
}
.lp-footer-made i {
  color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .lp-menu-toggle {
    display: block !important;
  }
  .lp-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 12, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 200, 55, 0.15);
    flex-direction: column;
    padding: 20px;
    gap: 15px !important;
    align-items: stretch !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
  .lp-nav.active {
    display: flex !important;
  }
  .lp-nav a.lp-link {
    text-align: center;
    padding: 10px;
    width: 100%;
  }
  .lp-nav .btn {
    width: 100%;
    justify-content: center;
  }
  .lp-nav form {
    width: 100%;
    display: flex;
    margin: 0;
  }
  .lp-nav form button {
    width: 100%;
    justify-content: center;
  }

  .lp-hero {
    padding: 40px 0 30px;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .lp-hero-left {
    align-items: center;
  }
  .lp-coming-badge {
    align-self: center;
  }
  .lp-hero-actions {
    justify-content: center;
  }
  .lp-hero-right {
    height: 340px;
  }
  .lp-pedestal-container {
    width: 260px;
    height: 260px;
  }
  .lp-glow-ring {
    width: 220px;
    height: 220px;
  }
  .lp-glowing-circle {
    width: 180px;
    height: 180px;
  }
  .lp-logo-float {
    width: 140px;
    height: 140px;
  }
  .lp-pedestal {
    width: 180px;
    transform: translateY(20px);
  }
  .lp-pedestal-glow {
    width: 130px;
    transform: translateY(15px);
  }

  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .lp-how-flow {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .lp-step-divider {
    display: none;
  }
  .lp-why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .lp-why-right {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .lp-plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 30px;
  }
}

@media (max-width: 575px) {
  .lp-features-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lp-footer-brand, .lp-footer-col {
    align-items: center;
    text-align: center;
  }
  .lp-footer-logo-row {
    justify-content: center;
  }
  .lp-footer-socials {
    justify-content: center;
  }
  .lp-footer-contact-row {
    justify-content: center;
  }
  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .lp-mockup-inner {
    grid-template-columns: 1fr !important;
  }
  .lp-mockup-sidebar {
    display: none !important;
  }
  .lp-mockup-kpis {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   PREMIUM AUTHENTICATION SCREENS (DARK & GOLD)
   ============================================================ */
.auth-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
  background: radial-gradient(circle at center 30%, rgba(225, 29, 72, 0.10) 0%, transparent 60%), #1a0812;
  font-family: 'Poppins', 'Inter', sans-serif;
  box-sizing: border-box;
}

.auth-logo-wrap {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.auth-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(225, 29, 72, 0.45));
  z-index: 2;
}
.auth-logo-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px dashed rgba(225, 29, 72, 0.25);
  animation: lp-spin 30s linear infinite;
  z-index: 1;
}

.auth-card-premium {
  background: #240c17;
  border: 1px solid rgba(225, 29, 72, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(225, 29, 72, 0.05);
  width: 100%;
  max-width: 500px;
  padding: 24px 22px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.auth-card-premium.register-card {
  max-width: 500px;
}

.auth-header {
  text-align: center;
  margin-bottom: 15px;
}
.auth-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.auth-header h2 span {
  color: #e11d48;
}
.auth-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.auth-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) {
  .auth-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.auth-input-wrapper {
  position: relative;
  width: 100%;
}
.auth-input-wrapper i.auth-prefix-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.25s;
}
.auth-input-premium {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: #351523;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.auth-input-premium:focus {
  border-color: #e11d48;
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.15);
  background: #3f1a2a;
}
.auth-input-premium:focus + i.auth-prefix-icon {
  color: #e11d48;
}

.auth-password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 15px;
  transition: color 0.25s;
  padding: 4px;
  z-index: 10;
}
.auth-password-toggle:hover {
  color: #e11d48;
}

.auth-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  user-select: none;
}
.auth-checkbox-row a {
  color: #e11d48;
  text-decoration: none;
  font-weight: 500;
}
.auth-checkbox-row a:hover {
  text-decoration: underline;
}
.auth-checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: #351523;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}
.auth-checkbox-row input[type="checkbox"]:checked {
  background: #e11d48;
  border-color: #e11d48;
}
.auth-checkbox-row input[type="checkbox"]:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #ffffff;
}
.auth-checkbox-row input[type="checkbox"]:focus {
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.2);
}

.auth-btn-premium {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.auth-btn-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
  filter: brightness(1.05);
}
.auth-btn-premium:active {
  transform: translateY(1px);
}

.auth-footer-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 16px;
}
.auth-footer-divider::before, .auth-footer-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.auth-footer-divider:not(:empty)::before {
  margin-right: 1em;
}
.auth-footer-divider:not(:empty)::after {
  margin-left: 1em;
}
.auth-footer-divider a {
  color: #e11d48;
  font-weight: 500;
  text-decoration: none;
}
.auth-footer-divider a:hover {
  text-decoration: underline;
}

.auth-alert-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  box-sizing: border-box;
}
.auth-alert-premium.error {
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  background: rgba(239, 68, 68, 0.08) !important;
  color: #f87171 !important;
}
.auth-alert-premium.success {
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  background: rgba(16, 185, 129, 0.08) !important;
  color: #34d399 !important;
}
.auth-alert-premium.info {
  border: 1px solid rgba(255, 200, 55, 0.35) !important;
  background: rgba(255, 200, 55, 0.08) !important;
  color: #fcd34d !important;
}
.auth-alert-premium i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Modal Styling */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 7, 12, 0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.auth-modal.active {
  display: flex;
}
.auth-modal-content {
  background: #0d121f;
  border: 1px solid rgba(255, 200, 55, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 200, 55, 0.1);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  animation: auth-modal-fade 0.3s ease;
}
@keyframes auth-modal-fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.auth-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-modal-header h3 {
  margin: 0;
  color: #ffc837;
  font-size: 18px;
  font-weight: 700;
}
.auth-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.auth-modal-close:hover {
  color: #ffc837;
}
.auth-modal-body {
  padding: 20px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  line-height: 1.6;
}
.auth-modal-body h4 {
  color: #ffffff;
  margin: 16px 0 6px 0;
  font-size: 14.5px;
}
.auth-modal-body h4:first-child {
  margin-top: 0;
}
.auth-modal-body p {
  margin: 0 0 14px 0;
}
.auth-modal-body::-webkit-scrollbar {
  width: 6px;
}
.auth-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.auth-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 200, 55, 0.2);
  border-radius: 4px;
}
.auth-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 200, 55, 0.4);
}
.auth-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   PREMIUM ADMIN PANEL STYLING (DARK & GOLD)
   ============================================================ */
:root {
  --admin-bg-primary: #030712;
  --admin-bg-card: #0d121f;
  --admin-bg-card-hover: #131a2e;
  --admin-gold: #ffc837;
  --admin-gold-gradient: linear-gradient(135deg, #ffd94d, #f5af19);
  --admin-gold-glow: 0 0 20px rgba(255, 200, 55, 0.15);
  --admin-border: rgba(255, 200, 55, 0.1);
  --admin-border-hover: rgba(255, 200, 55, 0.22);
  --admin-text-primary: #ffffff;
  --admin-text-secondary: rgba(255, 255, 255, 0.65);
  --admin-text-muted: rgba(255, 255, 255, 0.45);
}

/* Overall Admin Layout Wrapper */
.admin-app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: radial-gradient(circle at 80% 10%, rgba(255, 200, 55, 0.05) 0%, transparent 50%), #030712;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--admin-text-primary);
}

/* Sidebar Styling */
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(13, 18, 31, 0.85);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--admin-border);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
  transition: transform 0.3s ease, left 0.3s ease;
  box-sizing: border-box;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--admin-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030712;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(255, 200, 55, 0.3);
}

.admin-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.admin-logo-text span {
  color: var(--admin-gold);
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

/* Custom Scrollbar for Sidebar */
.admin-sidebar-nav::-webkit-scrollbar {
  width: 4px;
}
.admin-sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 200, 55, 0.15);
  border-radius: 4px;
}

.admin-nav-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  letter-spacing: 1px;
  margin: 15px 0 8px 10px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 12px;
  color: var(--admin-text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.admin-nav-link i {
  font-size: 15px;
  width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.admin-nav-link:hover {
  background: rgba(255, 200, 55, 0.04);
  border-color: rgba(255, 200, 55, 0.1);
  color: #ffffff;
}

.admin-nav-link:hover i {
  color: var(--admin-gold);
}

.admin-nav-link.active {
  background: rgba(255, 200, 55, 0.08);
  border-color: rgba(255, 200, 55, 0.22);
  color: var(--admin-gold);
  font-weight: 600;
  box-shadow: var(--admin-gold-glow);
}

.admin-nav-link.active i {
  color: var(--admin-gold);
}

.admin-sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

/* Content Area */
.admin-content {
  padding: 30px 40px;
  overflow-x: hidden;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Page Header */
.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.admin-page-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 40%, var(--admin-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-page-subtitle {
  color: var(--admin-text-secondary);
  font-size: 13.5px;
  margin: 6px 0 0 0;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search Box */
.admin-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-search-box i {
  position: absolute;
  left: 14px;
  color: var(--admin-text-muted);
  font-size: 14px;
  pointer-events: none;
}

.admin-search-input {
  padding: 10px 14px 10px 38px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
  width: 220px;
  transition: all 0.25s ease;
}

.admin-search-input:focus {
  border-color: var(--admin-gold);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: var(--admin-gold-glow);
  width: 260px;
}

/* Mobile topbar styles */
.admin-mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #0d121f;
  border-bottom: 1px solid var(--admin-border);
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 150;
  box-sizing: border-box;
}

.admin-burger-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-mobile-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.admin-mobile-title span {
  color: var(--admin-gold);
}

.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 12, 0.85);
  backdrop-filter: blur(5px);
  z-index: 95;
}

/* KPI Cards */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-kpi-card {
  background: var(--admin-bg-card);
  border: 1px solid var(--admin-border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.28s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.admin-kpi-card:hover {
  transform: translateY(-4px);
  border-color: var(--admin-border-hover);
  background: var(--admin-bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--admin-gold-glow);
}

.admin-kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.admin-kpi-icon.users { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.admin-kpi-icon.active { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.admin-kpi-icon.plans { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.admin-kpi-icon.deposits { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.admin-kpi-icon.withdrawals { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.admin-kpi-icon.bonuses { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.admin-kpi-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.admin-kpi-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--admin-text-secondary);
}

.admin-kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.admin-kpi-change {
  font-size: 11px;
  font-weight: 500;
}
.admin-kpi-change.positive { color: #10b981; }
.admin-kpi-change.negative { color: #ef4444; }
.admin-kpi-change.warning { color: #f59e0b; }
.admin-kpi-change.info { color: #3b82f6; }

/* Section Containers */
.admin-section {
  background: var(--admin-bg-card);
  border: 1px solid var(--admin-border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-section-title {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-section-title i {
  color: var(--admin-gold);
}

/* Badges */
.admin-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.admin-badge.live { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.25); }
.admin-badge.count { background: rgba(255, 200, 55, 0.1); color: var(--admin-gold); border: 1px solid rgba(255, 200, 55, 0.2); }
.admin-badge.success { background: rgba(16, 185, 129, 0.1); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }
.admin-badge.warning { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.admin-badge.danger { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }

/* Tables */
.admin-table-container {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: rgba(13, 18, 31, 0.9);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--admin-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table td {
  padding: 14px 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-table tbody tr {
  transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 200, 55, 0.02);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* User Profile cell */
.admin-user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.admin-user-name {
  font-weight: 600;
  color: #ffffff;
}

.admin-user-phone {
  font-size: 11.5px;
  color: var(--admin-text-muted);
  margin-top: 2px;
}

/* Form Styles */
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--admin-text-secondary);
}

.admin-form-input {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
  box-sizing: border-box;
  width: 100%;
}

.admin-form-input:focus {
  border-color: var(--admin-gold);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: var(--admin-gold-glow);
}

.admin-form-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: grid;
  place-items: center;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.admin-form-checkbox:checked {
  background: var(--admin-gold);
  border-color: var(--admin-gold);
}

.admin-form-checkbox:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #030712;
}

.admin-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--admin-text-secondary);
  cursor: pointer;
  user-select: none;
}

/* Action Buttons */
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: inherit;
  box-sizing: border-box;
}

.admin-btn-primary {
  background: var(--admin-gold-gradient);
  color: #030712;
  box-shadow: 0 4px 15px rgba(245, 175, 25, 0.2);
}

.admin-btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(245, 175, 25, 0.35);
  filter: brightness(1.05);
}

.admin-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.admin-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--admin-gold);
  color: var(--admin-gold);
}

.admin-btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
}

.admin-btn-danger:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.admin-btn-sm {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
}

/* Empty State */
.admin-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--admin-text-muted);
}

.admin-empty-state i {
  font-size: 40px;
  color: rgba(255, 200, 55, 0.2);
  margin-bottom: 12px;
}

.admin-empty-state h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.admin-empty-state p {
  font-size: 13px;
  margin: 0;
}

/* Card details/grida/trees */
.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.admin-detail-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
}

.admin-detail-card b {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  margin-bottom: 6px;
}

.admin-detail-card span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Team tree visualization styles */
.admin-tree-list {
  list-style: none;
  padding-left: 20px;
  margin: 8px 0;
  position: relative;
}

.admin-tree-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 200, 55, 0.15);
}

.admin-tree-item {
  margin: 10px 0;
  position: relative;
}

.admin-tree-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 18px;
  width: 14px;
  height: 1px;
  background: rgba(255, 200, 55, 0.15);
}

.admin-tree-node {
  display: inline-flex;
  flex-direction: column;
  padding: 10px 14px;
  background: rgba(13, 18, 31, 0.45);
  border: 1px solid rgba(255, 200, 55, 0.08);
  border-radius: 10px;
  min-width: 180px;
  transition: all 0.2s ease;
}

.admin-tree-node:hover {
  border-color: var(--admin-gold);
  background: rgba(255, 200, 55, 0.03);
  box-shadow: var(--admin-gold-glow);
}

.admin-tree-node b {
  font-size: 13px;
  color: #ffffff;
}

.admin-tree-node span {
  font-size: 11px;
  color: var(--admin-text-secondary);
  margin-top: 4px;
}

/* Financial cards row */
.admin-financial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.admin-financial-card {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-financial-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--admin-text-muted);
}

.admin-financial-value {
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
}

.admin-financial-change {
  font-size: 11px;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 920px) {
  .admin-app {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    z-index: 180;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .admin-sidebar.open {
    transform: translateX(280px);
  }
  
  .admin-overlay.show {
    display: block;
  }
  
  .admin-mobile-topbar {
    display: flex;
  }
  
  .admin-content {
    padding: 20px 18px;
    min-height: calc(100vh - 54px);
  }
  
  .admin-page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .admin-header-actions {
    justify-content: space-between;
  }
  
  .admin-search-box {
    flex: 1;
  }
  
  .admin-search-input {
    width: 100%;
  }
  
  .admin-search-input:focus {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Converting Tables to Responsive Card layouts on mobile */
  .admin-table-container.responsive-cards {
    border: none;
    background: transparent;
  }
  
  .admin-table-container.responsive-cards .admin-table {
    display: block;
  }
  
  .admin-table-container.responsive-cards .admin-table thead {
    display: none; /* Hide standard headers */
  }
  
  .admin-table-container.responsive-cards .admin-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .admin-table-container.responsive-cards .admin-table tbody tr {
    display: block;
    background: var(--admin-bg-card);
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .admin-table-container.responsive-cards .admin-table tbody tr:hover {
    background: var(--admin-bg-card-hover);
    border-color: var(--admin-border-hover);
  }
  
  .admin-table-container.responsive-cards .admin-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    text-align: right;
  }
  
  .admin-table-container.responsive-cards .admin-table td:last-child {
    border-bottom: none;
  }
  
  .admin-table-container.responsive-cards .admin-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    float: left;
    text-align: left;
  }
  
  .admin-user-cell {
    justify-content: flex-end;
  }
  
  .admin-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .admin-kpi-card {
    padding: 14px;
    border-radius: 14px;
  }
  
  .admin-kpi-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  .admin-kpi-value {
    font-size: 18px;
  }
  
  .admin-section {
    padding: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-financial-grid {
    grid-template-columns: 1fr;
  }
}
