/* ==========================================================
   SocialGO — Premium SocialGO Theme
   Purple gradient palette · Sora (display) + Manrope (body)
   ========================================================== */
:root {
  --c-orange-1: #784DF6;
  --c-orange-2: #A586F9;
  --c-primary:  #784DF6;
  --c-primary-dark: #5B35D8;
  --c-amber:    #784DF6;
  --c-gold:     #6B42E0;
  --c-white:    #FFFFFF;
  --c-bg:       #F5F3FF;
  --c-surface:  #FFFFFF;
  --c-text:     #1A1530;
  --c-muted:    #5B5272;
  --c-border:   #DDD6FD;
  --c-soft:     #EDE9FF;
  --c-success:  #18A957;
  --c-danger:   #E0322B;
  --c-warning:  #A586F9;
  --c-info:     #2A88E0;

  --grad-primary: linear-gradient(135deg, #5B35D8 0%, #6B42E0 50%, #784DF6 100%);
  --grad-shine:   linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
  --shadow-sm:  0 2px 8px rgba(50,25,150,.10);
  --shadow-md:  0 8px 22px rgba(50,25,150,.16);
  --shadow-lg:  0 16px 40px rgba(50,25,150,.20);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  22px;

  /* Premium typography stack */
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font: var(--font-body);
}
[data-theme="dark"] {
  --c-bg:      #0F0D1A;
  --c-surface: #17132A;
  --c-text:    #EDE9FF;
  --c-muted:   #9D8DD0;
  --c-border:  #2A2248;
  --c-soft:    #1E1840;
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02","cv03","cv04","cv11","ss01";
  letter-spacing: -0.005em;
  min-height: 100dvh;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
a { color: var(--c-orange-1); text-decoration: none; }
a:hover { color: var(--c-orange-2); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
.hidden { display: none !important; }
.muted { color: var(--c-muted); }
[data-theme="dark"] .muted { color: #B0A3D4; }
.text-center { text-align: center; }

/* Layout */
.container { max-width: 980px; margin: 0 auto; padding: 88px 16px 32px; }
.container.narrow { max-width: 560px; }
.has-bottomnav { padding-bottom: 110px; }

/* Topbar */
.topbar {
  position: fixed; top:0; left:0; right:0; z-index: 50;
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 18px;
  background: rgba(245,243,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}
[data-theme="dark"] .topbar { background: rgba(15,12,26,.78); }
.brand { display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:800; font-size:18px; }
.brand-logo {
  width:36px; height:36px; border-radius: 12px;
  background: var(--grad-primary);
  color: #fff; display:grid; place-items:center;
  box-shadow: var(--shadow-md);
  position: relative; overflow:hidden;
}
.brand-logo::after { content:''; position:absolute; inset:0; background: var(--grad-shine); }
.brand-img { border-radius: 10px; }
.brand-img-lg { width:48px; height:48px; border-radius: 14px; }
.brand-text { background: var(--grad-primary); -webkit-background-clip: text; background-clip:text; color: transparent; letter-spacing: -0.02em; }
.brand-center { justify-content: center; margin-bottom: 8px; }
.topbar-actions { display:flex; gap:8px; align-items:center; }
.icon-btn {
  width:40px; height:40px; border-radius: 12px;
  background: var(--c-surface); border:1px solid var(--c-border);
  display:grid; place-items:center; color: var(--c-text);
  box-shadow: var(--shadow-sm); transition: transform .15s ease;
  font-size: 18px;
}
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn--menu { color: var(--c-primary); }

/* Side drawer (landing / guest) */
.side-drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.side-drawer-backdrop {
  position: absolute; inset: 0; background: rgba(10,8,25,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.side-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 340px;
  background: var(--c-surface); color: var(--c-text);
  box-shadow: -16px 0 40px rgba(50,25,150,.22);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column; padding: 18px 18px 24px;
  pointer-events: auto;
}
.side-drawer.open { pointer-events: auto; }
.side-drawer.open .side-drawer-backdrop { opacity: 1; pointer-events: auto; }
.side-drawer.open .side-drawer-panel { transform: translateX(0); }
.side-drawer-head { display:flex; align-items:center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.side-drawer-tag { font-size: 12.5px; margin: 0 4px 16px; line-height: 1.5; }
.side-drawer-nav { display:flex; flex-direction: column; gap: 4px; flex: 1; }
.side-link {
  display:flex; align-items:center; gap: 14px;
  padding: 13px 14px; border-radius: 14px;
  background: transparent; color: var(--c-text); font-weight: 600;
  font-size: 15px; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease;
  font-family: var(--font-body);
}
.side-link i { font-size: 20px; color: var(--c-primary); width: 24px; text-align: center; }
.side-link:hover { background: var(--c-soft); }
.side-link--primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-sm); margin-top: 4px; }
.side-link--primary i { color: #fff; }
.side-link--primary:hover { color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.side-drawer-foot { margin-top: 14px; font-size: 12px; text-align: center; padding-top: 12px; border-top: 1px solid var(--c-border); }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius: 14px; padding: 12px 18px; font-weight:700; font-size:15px;
  border: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, opacity .2s, background .2s;
  white-space: nowrap; font-family: var(--font-body); letter-spacing: -0.01em;
}
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 14px 22px; font-size: 16px; border-radius: 16px; }
.btn-primary {
  color: #fff; background: var(--grad-primary);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background: var(--grad-shine); pointer-events:none; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--c-surface); color: var(--c-text); border:1px solid var(--c-border); }
.btn-ghost:hover { background: var(--c-soft); }
.btn-danger { background: linear-gradient(135deg, #FF6A6A, #E0322B); color:#fff; }
.btn-block { display:flex; width: 100%; }

/* Auth pages */
.page-auth { min-height: 100dvh; background:
  radial-gradient(1000px 400px at 50% -100px, rgba(120,77,246,.10), transparent 60%),
  radial-gradient(800px 400px at 100% 100%, rgba(107,66,224,.08), transparent 60%),
  var(--c-bg);
}
.auth-shell { padding: 56px 18px 64px; max-width: 460px; margin: 0 auto; }
.auth-card {
  background: var(--c-surface);
  border:1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.auth-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-primary); }
.auth-card h1 { margin: 12px 0 6px; font-size: 26px; }
.auth-foot { text-align:center; margin-top: 16px; color: var(--c-muted); }
.auth-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0; color: var(--c-muted); font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--c-border);
}
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px 16px; border-radius: 12px;
  border: 1.5px solid var(--c-border); background: var(--c-surface);
  color: var(--c-text); font-size: 14.5px; font-weight: 600;
  text-decoration: none; transition: all .15s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.btn-google:hover { border-color: #4285F4; background: #f0f4ff; }
[data-theme="dark"] .btn-google:hover { background: rgba(66,133,244,.12); }

.field { display:block; margin: 10px 0; }
.field > span { display:block; font-size:13px; color: var(--c-muted); margin-bottom: 6px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; font-size: 15px;
  border-radius: 12px; background: var(--c-surface);
  border: 1px solid var(--c-border); color: var(--c-text);
  transition: border-color .2s, box-shadow .2s; font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--c-orange-2); box-shadow: 0 0 0 4px rgba(120,77,246,.12); }
.input-with-icon { position:relative; display:block; }
.input-with-icon .reveal {
  position:absolute; right: 8px; top:50%; transform: translateY(-50%);
  background:none; border:none; padding:8px; color: var(--c-muted);
}
.row-between { display:flex; align-items:center; justify-content: space-between; margin: 6px 0 14px; }
.link-soft { color: var(--c-orange-1); font-size: 14px; font-weight: 600; }
.form-msg { margin-top: 10px; font-size: 14px; min-height: 18px; }
.form-msg.err { color: var(--c-danger); }
.form-msg.ok { color: var(--c-success); }
.grid2 { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Landing */
.page-landing .container { padding-top: 96px; padding-bottom: 64px; }
.hero { display:grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.hero h1 { font-size: 48px; line-height: 1.05; margin: 12px 0 16px; letter-spacing: -.025em; font-weight: 800; }
.grad-text { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: var(--c-muted); font-size: 17px; line-height: 1.6; max-width: 520px; }
.chip {
  display:inline-flex; align-items:center; gap:6px;
  font-size: 12px; font-weight: 700; padding: 6px 12px;
  border-radius: 999px; background: var(--c-soft); color: var(--c-orange-1);
  border: 1px solid var(--c-border); letter-spacing: .02em;
}
.hero-actions { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-stats { display:flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats > div { display:flex; flex-direction: column; }
.hero-stats b { font-size: 22px; font-family: var(--font-display); font-weight: 800; }
.hero-stats span { font-size: 12px; color: var(--c-muted); font-weight: 500; }
.hero-card-wrap { display:grid; place-items: center; }

/* =====================================================
   Hero Visual — animated live dashboard mockup
   ===================================================== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hv-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(120,77,246,.38) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: hv-glow-pulse 4s ease-in-out infinite;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}
@keyframes hv-glow-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50% { transform: translate(-50%,-50%) scale(1.18); opacity: 1; }
}

.hv-mockup {
  background: linear-gradient(145deg, #5B35D8 0%, #6B42E0 45%, #784DF6 100%);
  border-radius: 28px;
  padding: 20px;
  width: 278px;
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 64px rgba(91,53,216,.48), 0 4px 18px rgba(91,53,216,.28), inset 0 1px 0 rgba(255,255,255,.18);
  animation: hv-float 5s ease-in-out infinite;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
@keyframes hv-float {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.hv-mock-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 14px;
}
.hv-mock-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13.5px; color: rgba(255,255,255,.9);
  font-family: var(--font-display);
}
.hv-mock-logo {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 14px; border: 1px solid rgba(255,255,255,.28);
}
.hv-live-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 3px 9px;
  font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: .05em; text-transform: uppercase;
}
.hv-live-dot {
  width: 7px; height: 7px; background: #4ade80;
  border-radius: 50%; box-shadow: 0 0 7px #4ade80;
  animation: hv-live-pulse 1.4s ease-in-out infinite;
}
@keyframes hv-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hv-mock-balance {
  background: rgba(0,0,0,.22); border-radius: 16px;
  padding: 12px 14px; margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.hv-mock-bal-label {
  font-size: 10px; color: rgba(255,255,255,.55);
  font-weight: 600; display: block; margin-bottom: 3px;
  text-transform: uppercase; letter-spacing: .04em;
}
.hv-mock-bal-num {
  font-size: 21px; font-weight: 800;
  font-family: var(--font-display); color: #fff;
  letter-spacing: -0.02em; line-height: 1.2;
}
.hv-mock-bar {
  height: 4px; background: rgba(255,255,255,.15);
  border-radius: 99px; margin: 8px 0 4px; overflow: hidden;
}
.hv-mock-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,.85));
  border-radius: 99px; animation: hv-bar-grow 1.8s ease-out 0.4s forwards;
}
@keyframes hv-bar-grow { from { width: 0%; } to { width: 74%; } }
.hv-mock-bal-sub {
  font-size: 9.5px; color: rgba(255,255,255,.45); font-weight: 500;
}

.hv-feed-label {
  font-size: 10px; color: rgba(255,255,255,.45);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 6px; display: flex; align-items: center; gap: 5px;
}
.hv-feed-label i { font-size: 11px; color: #86efac; }
.hv-feed { display: flex; flex-direction: column; gap: 5px; }

.hv-txrow {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border-radius: 11px;
  padding: 7px 10px; border: 1px solid rgba(255,255,255,.08);
  opacity: 0; animation: hv-txrow-in .5s ease both;
  animation-delay: var(--d, 0s);
}
@keyframes hv-txrow-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hv-txrow-ico {
  font-size: 15px; width: 28px; height: 28px;
  background: rgba(255,255,255,.14); border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.hv-txrow-ico.hv-brand { padding: 3px; overflow: hidden; }
.hv-txrow-ico.hv-brand img { width: 100%; height: 100%; object-fit: contain; border-radius: 5px; display: block; }
.hv-txrow-ico.hv-brand-ico {
  background: var(--b) !important; color: var(--c) !important;
  font-size: 12px; font-weight: 900; font-family: var(--font-display);
  letter-spacing: -0.01em; border-radius: 8px;
  display: grid; place-items: center;
}
.hv-txrow-info { flex: 1; min-width: 0; }
.hv-txrow-info span {
  display: block; font-size: 11px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-txrow-info small { font-size: 9.5px; color: rgba(255,255,255,.45); }
.hv-txrow-amt {
  font-size: 10.5px; font-weight: 800; color: #86efac;
  white-space: nowrap; font-family: var(--font-display);
}

/* Floating service pills around mockup */
.hv-pill {
  position: absolute; z-index: 4;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 999px; padding: 7px 13px;
  font-size: 12px; font-weight: 700; color: var(--c-text);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 20px rgba(50,25,150,.18); white-space: nowrap;
}
.hv-pill i { color: var(--c-primary); font-size: 14px; }
.hv-pill--1 { top: 10px; left: -24px; animation: hv-pill-bob 5s ease-in-out infinite 0s; }
.hv-pill--2 { top: 50%; left: -32px; animation: hv-pill-bob-mid 5.5s ease-in-out infinite .9s; }
.hv-pill--3 { top: 6px; right: -12px; animation: hv-pill-bob 4.8s ease-in-out infinite .5s; }
.hv-pill--4 { bottom: 14px; right: -18px; animation: hv-pill-bob 5.2s ease-in-out infinite 1.3s; }
@keyframes hv-pill-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes hv-pill-bob-mid {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 9px)); }
}

/* Success notification pop */
.hv-notif {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 999px; padding: 8px 16px;
  font-size: 12.5px; font-weight: 700; color: #15803d;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  white-space: nowrap; z-index: 5;
  animation: hv-notif-bounce 6s ease-in-out infinite 2s;
  border: 1px solid rgba(21,128,61,.15);
}
.hv-notif i { font-size: 16px; }
@keyframes hv-notif-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  10%  { transform: translateX(-50%) translateY(-6px); }
  20%  { transform: translateX(-50%) translateY(0); }
  45%, 85% { transform: translateX(-50%) translateY(0); opacity: 1; }
  92% { transform: translateX(-50%) translateY(4px); opacity: 0; }
}

.section-title { font-size: 28px; margin: 60px 0 20px; }
.feature-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.feature {
  background: var(--c-surface); border:1px solid var(--c-border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.feature i { font-size: 28px; color: var(--c-orange-1); }
.feature h3 { margin: 8px 0 6px; font-size: 18px; }
.feature p { color: var(--c-muted); font-size: 14px; line-height: 1.5; margin: 0; }
.cta-card {
  background: linear-gradient(145deg, #4A28C8 0%, #5B35D8 40%, #784DF6 100%);
  color: #fff; border-radius: 28px; padding: 32px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; box-shadow: 0 24px 56px rgba(74,40,200,.42);
  position: relative; overflow: hidden; margin-top: 64px;
  border: 1px solid rgba(255,255,255,.12);
}
.cta-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: ''; position: absolute; bottom: -40px; left: 40%;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { display: flex; align-items: center; gap: 18px; }
.cta-icon-ring {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px; display: grid; place-items: center;
  font-size: 24px;
}
.cta-card h2 { margin: 0 0 6px; font-size: 22px; }
.cta-card p { margin: 0; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.btn-cta-white {
  background: rgba(255,255,255,.95); color: var(--c-primary-dark);
  border-radius: 16px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,.18); flex-shrink: 0;
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

/* =====================================================
   New Site Footer
   ===================================================== */
.site-footer {
  background: #0F0D1A;
  color: rgba(255,255,255,.55);
  padding: 0;
  margin-top: 0;
}
.sf-inner {
  max-width: 980px; margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
}
.sf-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 17px; color: #fff;
}
.sf-logo img { border-radius: 10px; }
.sf-tagline {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,.45); margin: 0 0 20px;
  max-width: 260px;
}
.sf-socials { display: flex; gap: 8px; }
.sf-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px; display: grid; place-items: center;
  color: rgba(255,255,255,.55); font-size: 18px;
  transition: all .18s ease; text-decoration: none;
}
.sf-social-btn:hover {
  background: var(--grad-primary); border-color: transparent;
  color: #fff; transform: translateY(-2px);
}
.sf-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sf-col h4 {
  color: rgba(255,255,255,.8); font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  margin: 0 0 14px; font-family: var(--font-body);
}
.sf-col a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: 13.5px; font-weight: 500;
  padding: 5px 0; text-decoration: none; transition: color .15s ease;
}
.sf-col a i { font-size: 15px; color: rgba(255,255,255,.22); transition: color .15s ease; }
.sf-col a:hover { color: rgba(255,255,255,.9); }
.sf-col a:hover i { color: rgba(255,255,255,.55); }
.sf-bottom {
  max-width: 980px; margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-size: 11.5px; color: rgba(255,255,255,.28);
}
.sf-bottom-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sf-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px; padding: 4px 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.38);
}
.sf-badge i { font-size: 12px; }

/* Bottom nav */
.bottomnav {
  position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%);
  display:flex; align-items: center; justify-content: space-between;
  gap: 4px; padding: 8px 14px; max-width: 460px; width: calc(100% - 24px);
  background: var(--c-surface); border-radius: 24px;
  border: 1px solid var(--c-border); box-shadow: var(--shadow-md); z-index: 60;
}
.bottomnav .nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px; color: var(--c-muted); font-size: 11px; font-weight: 600;
  text-decoration: none; transition: color .18s;
}
.bottomnav .nav-item i { font-size: 22px; }
.bottomnav .nav-item.active { color: var(--c-orange-1); }
.bottomnav .nav-center { position: relative; }
.bottomnav .fab {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-primary);
  color: #fff; display:grid; place-items:center; font-size: 26px;
  box-shadow: var(--shadow-md); margin-top: -28px; border: 4px solid var(--c-bg);
  position: relative; overflow:hidden;
}
.bottomnav .fab::after { content:''; position:absolute; inset:0; background: var(--grad-shine); }

/* ==== Mobile Responsive Landing ==== */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 36px; }
  .container { padding-top: 80px; }
  .balance-card--showcase { transform: rotate(0deg); margin: 0 auto; }
  .sf-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 28px; }
  .cta-content { flex-direction: row; }
}
@media (max-width: 520px) {
  .topbar { padding: 10px 14px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand-img { width: 32px; height: 32px; }
  .page-landing .container { padding-top: 80px; padding-bottom: 32px; }
  .hero { gap: 20px; }
  .hero h1 { font-size: 30px; line-height: 1.08; }
  .hero .lead { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; margin-top: 22px; }
  .hero-stats b { font-size: 19px; }
  .balance-card--showcase { padding: 22px; max-width: 100%; }
  .balance-amount h2 { font-size: 26px; }
  .section-title { font-size: 22px; margin: 40px 0 16px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature { padding: 16px; }
  .feature i { font-size: 24px; }
  .feature h3 { font-size: 15px; }
  .feature p { font-size: 13px; }
  .cta-card { padding: 22px 20px; margin-top: 40px; flex-direction: column; }
  .cta-content { gap: 14px; }
  .cta-card h2 { font-size: 19px; }
  .btn-cta-white { width: 100%; justify-content: center; }
  .auth-card { padding: 22px 18px; }
  .auth-card h1 { font-size: 22px; }
  .grid2 { grid-template-columns: 1fr; gap: 0; }
  .hv-pill--1, .hv-pill--2, .hv-pill--3, .hv-pill--4 { display: none; }
  .hv-mockup { width: 252px; padding: 16px; }
  .hv-mock-bal-num { font-size: 18px; }
  .hv-notif { font-size: 11.5px; padding: 7px 13px; }
  .sf-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .sf-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hv-mockup { width: 230px; }
}

/* ==========================================================
   Custom dialogs (replace native confirm/alert/prompt)
   ========================================================== */
.lt-dialog-root { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.lt-overlay {
  position: fixed; inset: 0; background: rgba(15, 12, 8, .55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 18px;
  opacity: 0; transition: opacity .22s ease;
  pointer-events: auto;
}
.lt-overlay.show { opacity: 1; }
.lt-dialog {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); width: 100%; max-width: 380px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(12px) scale(.96); opacity: 0;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}
.lt-overlay.show .lt-dialog { transform: translateY(0) scale(1); opacity: 1; }
.lt-dialog-head { padding: 18px 20px 4px; }
.lt-dialog-head h3 { margin: 0; font-size: 17px; }
.lt-dialog-body { padding: 14px 20px 8px; }
.lt-dialog-body p { margin: 0 0 10px; color: var(--c-text); font-size: 14.5px; line-height: 1.5; }
.lt-dialog-input { width: 100%; margin-top: 6px; }
.lt-dialog-actions {
  display: flex; gap: 10px; padding: 12px 20px 18px; justify-content: flex-end;
}
.lt-dialog-actions .btn { padding: 10px 16px; font-size: 14px; }

/* ==========================================================
   Animations
   ========================================================== */
@keyframes lt-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lt-slide-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lt-pop { 0% { transform: scale(.92); opacity: 0; } 60% { transform: scale(1.02); opacity: 1; } 100% { transform: scale(1); } }
@keyframes lt-pop-centered { 0% { transform: translateX(-50%) scale(.92); opacity: 0; } 60% { transform: translateX(-50%) scale(1.02); opacity: 1; } 100% { transform: translateX(-50%) scale(1); } }
@keyframes lt-slide-up-centered { from { opacity: 0; transform: translateX(-50%) translateY(14px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes lt-toast-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

main.page-enter > * { animation: lt-slide-up .42s ease both; }
main.page-enter > *:nth-child(1) { animation-delay: .02s; }
main.page-enter > *:nth-child(2) { animation-delay: .08s; }
main.page-enter > *:nth-child(3) { animation-delay: .14s; }
main.page-enter > *:nth-child(4) { animation-delay: .20s; }
main.page-enter > *:nth-child(5) { animation-delay: .26s; }
main.page-enter > *:nth-child(n+6) { animation-delay: .30s; }

.toast { opacity: 0; transform: translateY(-6px); transition: opacity .22s ease, transform .22s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

.nominal-tile, .product-tile, .smm-row, .game-chip, .brand-chip, .cat-tile, .hub-tile {
  will-change: transform;
}
.nominal-tile:active, .product-tile:active, .smm-row:active { transform: scale(.97); }
.btn { transition: transform .12s ease, box-shadow .2s ease, opacity .2s, background .2s; }
.btn:active { transform: scale(.97); }
.card, .hub-step, .order-card { animation: lt-slide-up .35s ease both; }
.bottomnav { animation: lt-pop-centered .45s ease .1s both; }
.balance-card { animation: lt-pop .55s ease .05s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== Deposit method picker ===== */
.pay-tabs { display:flex; gap:8px; overflow-x:auto; padding-bottom:6px; margin-bottom:10px; scrollbar-width:none; }
.pay-tabs::-webkit-scrollbar { display:none; }
.pay-tab { flex:0 0 auto; padding:8px 14px; border-radius:999px; background:var(--c-soft); color:var(--c-text); font-size:13px; font-weight:700; border:1px solid transparent; cursor:pointer; transition:all .18s ease; }
.pay-tab.active { background:var(--grad-primary); color:#fff; border-color:transparent; box-shadow:var(--shadow-sm); }
.pay-list { display:flex; flex-direction:column; gap:8px; }
.pay-row { display:flex; align-items:center; gap:12px; width:100%; padding:12px 14px; background:var(--c-surface); border:1.5px solid var(--c-border); border-radius:var(--radius); cursor:pointer; text-align:left; transition:all .18s ease; }
.pay-row:hover:not(:disabled) { border-color:var(--c-primary); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.pay-row.selected { border-color:var(--c-primary); background:linear-gradient(135deg, #F0EBFF 0%, #F5F3FF 100%); box-shadow:var(--shadow-sm); }
.pay-row.is-disabled, .pay-row:disabled { opacity:.45; cursor:not-allowed; }
.pay-row-icn { width:40px; height:40px; flex:0 0 40px; display:grid; place-items:center; border-radius:10px; background:var(--c-soft); color:var(--c-primary); font-size:20px; }
.pay-row-main { flex:1; display:flex; flex-direction:column; min-width:0; }
.pay-row-name { font-weight:700; font-size:14px; color:var(--c-text); }
.pay-row-sub { font-size:12px; color:var(--c-muted); margin-top:2px; }
.pay-row-fee { font-size:12px; font-weight:700; color:var(--c-primary); white-space:nowrap; }

.pay-summary .row { display:flex; justify-content:space-between; align-items:center; padding:6px 0; font-size:14px; }
.pay-summary .row.total { padding-top:10px; margin-top:6px; border-top:1px dashed var(--c-border); font-size:16px; font-weight:800; color:var(--c-primary); }
.pay-summary .btn { margin-top:14px; }

.va-box { display:flex; flex-direction:column; align-items:center; gap:4px; padding:14px; margin:14px 0; border-radius:var(--radius); background:var(--c-soft); }
.va-box strong { font-size:22px; letter-spacing:1px; color:var(--c-text); font-family: var(--font-display); }

/* Deposit detail */
.dep-detail { display:flex; flex-direction:column; align-items:stretch; gap:12px; }
.dep-head { text-align:center; }
.dep-head .muted { margin:0 0 2px; font-size:12px; }
.dep-invoice { margin:0; font-size:18px; font-weight:800; letter-spacing:.3px; font-family: var(--font-display); }
.dep-method { margin:4px 0 0; font-size:13px; color:var(--c-muted); font-weight:600; }
.dep-amount { text-align:center; font-size:28px; font-weight:800; color:var(--c-primary); letter-spacing:.3px; margin:4px 0 6px; font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.qr-box { display:flex; justify-content:center; padding:16px; background:#fff; border:1px solid var(--c-border); border-radius:var(--radius); margin:0 auto; max-width:280px; }
.qr-box img { display:block; width:100%; max-width:240px; height:auto; image-rendering: pixelated; }
.qr-actions { display:flex; justify-content:center; margin-top:-4px; }
.dep-status-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px dashed var(--c-border); margin-top:6px; }
.dep-countdown { text-align:center; font-weight:800; color:var(--c-primary); background:var(--c-soft); padding:8px 12px; border-radius:10px; font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.dep-btn-row { display:flex; flex-direction:column; gap:8px; margin-top:6px; }
.btn-danger-ghost { color:#c0392b; }
.btn-danger-ghost:hover { background:rgba(192,57,43,.08); }

/* ==========================================================
   Profile – better visibility & edit form
   ========================================================== */
.profile-avatar-wrap {
  position: relative; width: 156px; height: 156px;
  margin: 0 auto 14px;
}
.profile-avatar-wrap .avatar {
  width: 156px; height: 156px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display:grid; place-items: center;
  margin: 0; font-size: 64px; box-shadow: var(--shadow-lg);
  overflow: hidden; border: 4px solid var(--c-surface);
  outline: 1px solid var(--c-border);
}
.profile-avatar-wrap .avatar img { width: 100%; height: 100%; object-fit: cover; display:block; }
.profile-avatar-edit {
  position: absolute; bottom: 6px; right: 6px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display:grid; place-items: center; font-size: 18px;
  border: 3px solid var(--c-surface); cursor: pointer;
  box-shadow: var(--shadow-md); transition: transform .15s ease;
  z-index: 2;
}
.profile-avatar-edit:hover { transform: scale(1.06); }
.profile-hero h2 { margin: 8px 0 4px; font-size: 24px; }
.profile-hero { text-align: center; padding: 8px 0 20px; }
.profile-hero .profile-handle {
  display:inline-flex; align-items:center; gap: 8px; flex-wrap: wrap;
  justify-content: center; color: var(--c-muted); font-size: 14px; margin: 4px 0 0;
}
.tier-pill {
  display:inline-flex; align-items:center; gap: 4px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  background: var(--grad-primary); color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}
.tier-pill.t-bronze   { background: linear-gradient(135deg, #8C5A2A, #B97D4A); }
.tier-pill.t-silver   { background: linear-gradient(135deg, #6E7884, #A8B0BC); color:#fff; }
.tier-pill.t-gold     { background: linear-gradient(135deg, #784DF6, #B084F8); }
.tier-pill.t-platinum { background: linear-gradient(135deg, #2A3142, #5A6478); }

.kv {
  display:flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--c-border);
  font-size: 14.5px; gap: 12px;
}
.kv:last-child { border: none; }
.kv span { color: var(--c-muted); font-weight: 500; }
.kv b { color: var(--c-text); font-weight: 700; word-break: break-word; text-align: right; }
.profile-actions { display:grid; gap: 10px; margin-top: 16px; }

/* =====================================================
   Profile Page — full redesign
   ===================================================== */
.pro-hero {
  text-align: center;
  padding: 8px 0 20px;
}
.pro-avatar-wrap {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 14px;
}
.pro-avatar-wrap .avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center;
  font-size: 42px; overflow: hidden;
  border: 3px solid var(--c-surface);
  box-shadow: 0 0 0 2px var(--c-border), var(--shadow-md);
}
.pro-avatar-wrap .avatar img { width: 100%; height: 100%; object-fit: cover; }
.pro-avatar-edit {
  position: absolute; bottom: 2px; right: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 15px;
  border: 2.5px solid var(--c-surface); cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .15s ease;
  z-index: 2;
}
.pro-avatar-edit:hover { transform: scale(1.1); }
.pro-hero h2 { margin: 0 0 6px; font-size: 22px; }
.pro-handle {
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center;
  color: var(--c-muted); font-size: 14px; margin-bottom: 8px;
}
.pro-sub-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--c-muted);
}
.pro-sub-meta i { font-size: 13px; }
.pro-dot { opacity: .4; }
.pro-verify-banner {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px; background: #fff1f1; border: 1px solid #fca5a5;
  border-radius: 10px; padding: 8px 14px;
  font-size: 13px; color: #dc2626;
}
.pro-verify-link { color: #dc2626; font-weight: 700; text-decoration: underline; margin-left: 4px; }

/* Stats card (list style) */
.pro-stats-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 18px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.pro-stat-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
}
.pro-stat-ico {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--si-bg, #f0f9ff); color: var(--si-c, #0369a1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.pro-stat-info { flex: 1; min-width: 0; }
.pro-stat-info span { display: block; font-size: 11px; color: var(--c-muted); font-weight: 600; margin-bottom: 2px; }
.pro-stat-info b { display: block; font-size: 15px; font-weight: 800; color: var(--c-text); }
.pro-stat-primary { color: var(--c-primary) !important; }
.pro-stat-divider { height: 1px; background: var(--c-border); margin: 0 16px; }

/* Quick actions row */
.pro-quick-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 18px;
}
.pro-quick-btn {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none; color: var(--c-text);
  transition: transform .15s ease;
}
.pro-quick-btn:hover { transform: translateY(-2px); color: var(--c-text); }
.pro-quick-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  display: grid; place-items: center; font-size: 22px;
  color: var(--c-primary); box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease;
}
.pro-quick-btn:hover .pro-quick-icon { box-shadow: var(--shadow-md); }
.pro-quick-btn span { font-size: 11.5px; font-weight: 600; color: var(--c-muted); text-align: center; }
.pro-quick-btn--gold .pro-quick-icon {
  background: var(--grad-primary); color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(91,53,216,.28);
}
.pro-quick-btn--gold span { color: var(--c-primary); }

/* Loyalty points card — on-brand gold */
.pro-points-card {
  background: var(--grad-primary); border-radius: 20px;
  padding: 18px 20px; color: #fff; margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(91,53,216,.3);
  border: 1px solid rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.pro-points-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.pro-points-left { margin-bottom: 4px; }
.pro-points-icon {
  position: absolute; top: 16px; right: 20px;
  font-size: 36px; opacity: .3;
}
.pro-points-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .07em;
  opacity: .8; font-weight: 700; margin-bottom: 4px;
  display: flex; align-items: center; gap: 5px;
}
.pro-points-val {
  font-size: 36px; font-weight: 800; line-height: 1;
  font-family: var(--font-display); letter-spacing: -0.02em;
}
.pro-points-rate { font-size: 11px; opacity: .65; margin-top: 3px; }
.pro-points-redeem {
  display: flex; gap: 8px; margin-top: 14px;
}
.pro-points-redeem input {
  flex: 1; padding: 10px 13px; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 13.5px; font-family: inherit; outline: none;
  backdrop-filter: blur(4px);
}
.pro-points-redeem input::placeholder { color: rgba(255,255,255,.55); }
.pro-points-redeem-btn {
  flex-shrink: 0; padding: 10px 14px; border-radius: 11px;
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; gap: 5px;
  transition: background .15s;
}
.pro-points-redeem-btn:hover { background: rgba(255,255,255,.35); }
.pro-points-msg { font-size: 12px; margin: 6px 0 0; opacity: .85; }

/* Referral card */
.pro-referral {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 18px; padding: 18px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.pro-referral-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.pro-referral-icon {
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--c-soft); color: var(--c-primary);
  display: grid; place-items: center; font-size: 20px;
  flex-shrink: 0;
}
.pro-referral-title { font-size: 15px; font-weight: 700; }
.pro-referral-sub { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.pro-ref-code-row {
  display: flex; gap: 8px; align-items: center; margin-bottom: 10px;
}
.pro-ref-code-box {
  flex: 1; font-family: var(--font-display); font-size: 20px; font-weight: 800;
  letter-spacing: .12em; padding: 10px 14px;
  background: var(--c-soft); border: 1.5px solid var(--c-border);
  border-radius: 11px; color: var(--c-primary);
}
.pro-ref-link-row {
  display: flex; gap: 8px; align-items: center;
}
.pro-ref-link-box {
  flex: 1; font-size: 11.5px; padding: 8px 11px;
  background: var(--c-soft); border: 1px solid var(--c-border);
  border-radius: 9px; color: var(--c-muted);
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.pro-referral-info {
  font-size: 11.5px; color: var(--c-muted); margin: 10px 0 0;
  padding-top: 10px; border-top: 1px dashed var(--c-border);
}

/* Settings menu */
.pro-menu { margin-bottom: 14px; }
.pro-menu-section { margin-bottom: 20px; }
.pro-menu-label {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--c-muted);
  padding: 0 4px; margin-bottom: 6px;
}
.pro-menu-group {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.pro-menu-row {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 16px;
  background: transparent; border: none; cursor: pointer;
  text-align: left; color: var(--c-text); font-size: 15px;
  font-weight: 500; font-family: inherit;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none; transition: background .12s ease;
}
.pro-menu-row:last-child { border-bottom: none; }
.pro-menu-row:hover { background: var(--c-soft); }
.pro-menu-row span { flex: 1; }
.pro-menu-ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ico-bg, var(--c-soft));
  color: var(--ico-c, var(--c-primary));
  display: grid; place-items: center; font-size: 17px;
  flex-shrink: 0;
}
.pro-menu-chevron { font-size: 20px; color: var(--c-border); }

/* Logout button */
.pro-logout-btn {
  width: 100%; padding: 14px; border-radius: 14px;
  background: #fff1f1; border: 1.5px solid #fca5a5;
  color: #dc2626; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 24px; transition: all .15s ease;
}
.pro-logout-btn:hover { background: #fee2e2; border-color: #ef4444; }
[data-theme="dark"] .pro-logout-btn { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.3); }
[data-theme="dark"] .pro-logout-btn:hover { background: rgba(220,38,38,.2); }

/* ==========================================================
   App-wide centered modal (used by profile, admin user edit, etc.)
   Uses .lm- prefix to avoid collision with admin.css legacy .lt-modal
   ========================================================== */
.lm-modal-backdrop {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(10,8,25,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display:none; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; transition: opacity .22s ease;
}
.lm-modal-backdrop.show { display:flex; opacity: 1; }
.lm-modal {
  background: var(--c-surface); color: var(--c-text);
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  width: 100%; max-width: 460px; max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(.96); transition: transform .25s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.lm-modal-backdrop.show .lm-modal { transform: translateY(0) scale(1); }
.lm-modal-head { display:flex; align-items: center; justify-content: space-between; padding: 18px 20px 8px; gap: 12px; }
.lm-modal-head h3 { margin: 0; font-size: 18px; }
.lm-modal-body { padding: 8px 20px 18px; }
.lm-modal-foot {
  padding: 12px 20px 18px; display:flex; gap: 8px; justify-content: flex-end;
  position: sticky; bottom: 0; background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}
@media (max-width: 480px) {
  .lm-modal-backdrop { padding: 0; align-items: flex-end; }
  .lm-modal { max-width: 100%; max-height: 92vh; border-radius: 22px 22px 0 0; }
  .lm-modal-foot .btn { flex: 1; }
}

/* ===== Promo banner slider (auto-advance) ===== */
.promo-slider {
  overflow: hidden; margin: 8px 0 18px; padding: 0;
  position: relative; border-radius: 16px;
  box-shadow: 0 4px 18px rgba(100,60,200,.15);
}

.promo-track {
  display:flex; gap: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.promo-dots {
  display:flex; gap: 6px; justify-content: center; margin-top: 10px;
  padding: 0 16px;
}
.promo-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-border);
  border: none; padding: 0; cursor: pointer; transition: all .25s ease;
}
.promo-dot.active { width: 22px; background: var(--c-primary); border-radius: 999px; }

/* === History page: provider ID copy === */
.icon-btn {
  background: transparent; border: 0; color: var(--c-primary, #784DF6);
  cursor: pointer; padding: 2px 4px; border-radius: 4px; font-size: 14px;
}
.icon-btn:hover { background: rgba(120,77,246,.08); }

/* ===================================================
   Help / Bantuan / FAQ pages
   =================================================== */
.help-quicknav {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.help-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: var(--c-soft); color: var(--c-text); border: 1px solid var(--c-border);
  text-decoration: none; transition: background .15s;
}
.help-chip:hover { background: var(--c-border); }
.help-section {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 14px;
}
.help-section-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.help-section-head i { font-size: 20px; color: var(--c-primary); }
.help-section-head h2 { font-size: 16px; font-weight: 700; margin: 0; }
.help-subsection { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--c-border); }
.help-subsection h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.help-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.help-step {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px;
}
.step-num {
  min-width: 24px; height: 24px; border-radius: 50%; background: var(--c-primary);
  color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.help-note {
  display: flex; align-items: flex-start; gap: 7px; padding: 8px 10px;
  background: var(--c-soft); border-radius: 8px; font-size: 13px;
  color: var(--c-muted); margin-top: 8px; line-height: 1.5;
}
.help-note i { color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }
.help-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px;
}
.help-list li {
  padding-left: 18px; position: relative; font-size: 14px; line-height: 1.5; color: var(--c-muted);
}
.help-list li::before {
  content: '·'; position: absolute; left: 4px; color: var(--c-primary); font-weight: 900;
}
.help-game-card {
  background: var(--c-soft); border-radius: 10px; padding: 12px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.5;
}
.help-game-title {
  display: flex; align-items: center; gap: 7px; font-weight: 700; margin-bottom: 5px; font-size: 14px;
}
.help-game-title i { color: var(--c-primary); }
/* FAQ accordion */
.help-faq { display: flex; flex-direction: column; gap: 4px; }
.help-faq-item {
  border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); background: var(--c-bg);
}
.help-faq-item summary {
  padding: 11px 14px; font-size: 14px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.help-faq-item summary::after {
  content: '\ea4e'; font-family: 'remixicon'; font-size: 16px; color: var(--c-muted);
  transition: transform .2s;
}
.help-faq-item[open] summary::after { transform: rotate(180deg); }
.help-faq-item p {
  padding: 0 14px 12px; font-size: 13.5px; line-height: 1.65; color: var(--c-muted); margin: 0;
}
/* Status cards */
.help-status-card {
  border-radius: 10px; padding: 12px 14px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.6;
}
.help-status-card.s-success  { background: #d1fae5; color: #064e3b; }
.help-status-card.s-processing{ background: #dbeafe; color: #1e3a8a; }
.help-status-card.s-pending  { background: #fef9c3; color: #713f12; }
.help-status-card.s-partial  { background: #ede9fe; color: #4c1d95; }
.help-status-card.s-failed   { background: #fee2e2; color: #7f1d1d; }
.help-status-card.s-refunded { background: #f1f5f9; color: #334155; }
[data-theme="dark"] .help-status-card.s-success  { background: #064e3b; color: #d1fae5; }
[data-theme="dark"] .help-status-card.s-processing{ background: #1e3a8a; color: #dbeafe; }
[data-theme="dark"] .help-status-card.s-pending  { background: #713f12; color: #fef9c3; }
[data-theme="dark"] .help-status-card.s-partial  { background: #4c1d95; color: #ede9fe; }
[data-theme="dark"] .help-status-card.s-failed   { background: #7f1d1d; color: #fee2e2; }
[data-theme="dark"] .help-status-card.s-refunded { background: #334155; color: #f1f5f9; }
.help-status-badge {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  margin-bottom: 6px; background: rgba(0,0,0,.12); color: inherit;
}
/* Search on FAQ page */
.help-search-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 10px;
  padding: 10px 14px; margin-bottom: 16px;
}
.help-search-wrap i { color: var(--c-muted); font-size: 18px; flex-shrink: 0; }
.help-search { flex: 1; border: none; background: transparent; font-size: 15px; color: var(--c-text); outline: none; }
/* Hub info button */
.hub-info-btn {
  position: fixed; bottom: 90px; right: 16px; z-index: 50;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  color: var(--c-primary); font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md); text-decoration: none;
  transition: opacity .2s;
}
.hub-info-btn:hover { background: var(--c-soft); }
/* FAQ search highlight */
.help-faq-item.search-hide { display: none; }

/* === SMM order: category groups === */
.cat-group { margin-bottom: 4px; }
.cat-group-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px 4px;
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: .04em; color: var(--c-muted);
  border-bottom: 1px solid var(--c-border); margin-bottom: 2px;
}
.cat-group-header i { font-size: 16px; }
.cat-item-label { display: flex; align-items: center; gap: 6px; }
.cat-item-label i { font-size: 14px; opacity: .75; }
