/* ═══════════════════════════════════════════════
   AvenZo — style.css
   Production-ready · GitHub Pages · InfinityFree
═══════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #09041e;
  --card: rgba(14,7,38,.85);
  --p1: #7c3aed;
  --p2: #a855f7;
  --p3: #c084fc;
  --grad: linear-gradient(135deg,#7c3aed,#a855f7);
  --glow: 0 0 28px rgba(168,85,247,.7), 0 0 56px rgba(168,85,247,.35);
  --glow-sm: 0 0 12px rgba(168,85,247,.5);
  --wh: #ffffff;
  --txt: #ede8ff;
  --sub: #6b5c8e;
  --red: #ef4444;
  --green: #10b981;
  --gold: #fbbf24;
  --accent: #00e5c0;
  --font: 'Nunito', sans-serif;
  --font-head: 'Exo 2', sans-serif;
}

html { height: 100%; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(120,40,220,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(60,0,160,.15) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--txt);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Cursor ── */
#p-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .6; }
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(168,85,247,.9); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width .1s, height .1s;
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,.5); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: all .12s;
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── App Shell ── */
.app { max-width: 420px; margin: 0 auto; min-height: 100vh; position: relative; z-index: 1; }
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }
.sec { display: none; padding-bottom: 90px; min-height: calc(100vh - 74px); }
.sec.active { display: block; }
.si { padding: 12px 14px; }

/* ── AUTH SCREEN ── */
.auth-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #09041e 0%, #1a0840 50%, #09041e 100%);
}
.auth-shape {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
  animation: shapeFloat 10s ease-in-out infinite;
}
.s1 { width: 400px; height: 400px; background: rgba(120,40,220,.2); top: -150px; right: -150px; animation-delay: 0s; }
.s2 { width: 320px; height: 320px; background: rgba(60,0,160,.25); bottom: -120px; left: -100px; animation-delay: -4s; }
.s3 { width: 250px; height: 250px; background: rgba(168,85,247,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -7s; }
@keyframes shapeFloat {
  0%, 100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.08) translate(-15px,-10px); }
}
.s3 { animation: shapeFloat3 12s ease-in-out infinite; }
@keyframes shapeFloat3 {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-54%) scale(1.1); }
}

/* Logo */
.auth-logo {
  text-align: center; margin-bottom: 24px; position: relative; z-index: 2;
  animation: logoIn .8s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes logoIn {
  from { transform: translateY(-40px) scale(.7); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.logo-ring { width: 80px; height: 80px; position: relative; margin: 0 auto 12px; }
.logo-inner {
  position: absolute; inset: 8px;
  background: linear-gradient(135deg, rgba(100,30,220,.3), rgba(168,85,247,.15));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(168,85,247,.45); box-shadow: var(--glow);
  animation: ringPulse 3s ease-in-out infinite;
}
.logo-inner span { font-size: 36px; filter: drop-shadow(0 0 12px rgba(196,132,252,.9)); }
@keyframes ringPulse {
  0%, 100% { box-shadow: var(--glow); }
  50% { box-shadow: 0 0 50px rgba(168,85,247,1), 0 0 100px rgba(168,85,247,.5); }
}
.ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: rotateSVG 6s linear infinite; }
@keyframes rotateSVG { to { transform: rotate(360deg); } }
.rt { fill: none; stroke: rgba(168,85,247,.18); stroke-width: 2; }
.rp {
  fill: none; stroke: url(#lg1); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 180 160; animation: dashS 3s ease-in-out infinite alternate;
}
@keyframes dashS {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -200; }
}
.brand {
  font-family: var(--font-head); font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, #fff, #d8b4fe, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(168,85,247,.6));
}
.brand-s {
  font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}

/* Auth Card */
.auth-card {
  background: rgba(10,5,30,.82); backdrop-filter: blur(28px) saturate(1.4);
  border: 1.5px solid rgba(168,85,247,.22); border-radius: 24px;
  padding: 24px 22px 28px; width: 100%; max-width: 380px;
  position: relative; z-index: 2;
  box-shadow: 0 8px 48px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  animation: cardIn .7s cubic-bezier(.34,1.56,.64,1) both .2s;
}
@keyframes cardIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 50%);
  border-radius: inherit; pointer-events: none;
}
.auth-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(168,85,247,.15); }
.auth-title-ico { width: 44px; height: 44px; background: var(--grad); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; box-shadow: 0 0 16px rgba(168,85,247,.4); }
.auth-title-main { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: var(--wh); }
.auth-title-sub { font-size: 11px; color: var(--sub); margin-top: 2px; }
.auth-switch-row { text-align: center; margin-top: 12px; font-size: 13px; color: var(--sub); }
.auth-switch-row a { color: var(--p3); font-weight: 700; cursor: pointer; }

/* Method Buttons */
.method-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.method-btn {
  width: 100%; padding: 13px 16px; border-radius: 13px;
  font-family: var(--font); font-size: 14px; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: all .2s; position: relative; overflow: hidden; border: none;
}
.method-btn-google { background: linear-gradient(135deg,#4285f4,#34a853); color: #fff; box-shadow: 0 0 20px rgba(66,133,244,.4); }
.method-btn-email  { background: rgba(168,85,247,.12); border: 1.5px solid rgba(168,85,247,.3) !important; color: var(--wh); }
.method-btn-captcha { background: rgba(0,229,192,.08); border: 1.5px solid rgba(0,229,192,.25) !important; color: var(--wh); }
.method-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.method-btn:active { transform: scale(.97); }
.method-btn-ico { font-size: 20px; }
.method-btn-txt { flex: 1; text-align: left; }
.method-btn-arr { opacity: .4; }

/* Input Groups */
.ig { margin-bottom: 13px; }
.ig label { display: block; font-size: 11px; font-weight: 700; color: rgba(196,132,252,.8); margin-bottom: 5px; letter-spacing: .5px; }
.iw { position: relative; }
.iw input, .iw textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(76,29,149,.12);
  border: 1.5px solid rgba(168,85,247,.2);
  border-radius: 12px; color: var(--wh);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  outline: none; transition: all .22s;
}
.iw input::placeholder, .iw textarea::placeholder { color: rgba(255,255,255,.22); }
.iw input:focus, .iw textarea:focus {
  border-color: var(--p2);
  background: rgba(168,85,247,.16);
  box-shadow: 0 0 0 3px rgba(168,85,247,.14);
}
.il {
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.iw input:focus ~ .il { transform: scaleX(1); }
.ig-ta {
  width: 100%; padding: 11px 14px;
  background: rgba(76,29,149,.12);
  border: 1.5px solid rgba(168,85,247,.2);
  border-radius: 12px; color: var(--wh);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  outline: none; transition: all .22s; resize: vertical; min-height: 80px;
}
.ig-ta:focus { border-color: var(--p2); background: rgba(168,85,247,.16); }
.pw-wrap { display: flex; align-items: center; }
.pw-wrap input { padding-right: 42px; }
.eye-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 16px;
  color: var(--sub); transition: color .2s; z-index: 3;
}
.eye-btn:hover { color: var(--p3); }

/* Glow Button */
.glow-btn {
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--grad); border: none; border-radius: 13px;
  color: #fff; font-family: var(--font); font-size: 14px; font-weight: 900;
  cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 0 22px rgba(168,85,247,.55), 0 4px 14px rgba(0,0,0,.4);
  transition: all .2s;
}
.glow-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 0 32px rgba(168,85,247,.9); }
.glow-btn:active:not(:disabled) { transform: scale(.97); }
.glow-btn:disabled { opacity: .55; cursor: not-allowed; }
.bt { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; }
.br {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, transparent 70%);
  transform: scale(0); opacity: 0; transition: transform .5s, opacity .5s;
}
.glow-btn:active .br { transform: scale(2); opacity: 1; transition: 0s; }
.btn-spin {
  width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: bSpin .7s linear infinite; flex-shrink: 0; display: inline-block;
}
@keyframes bSpin { to { transform: rotate(360deg); } }

/* OTP Error / Success Boxes */
.otp-error-box {
  background: rgba(239,68,68,.1); border: 1.5px solid rgba(239,68,68,.3);
  border-radius: 12px; padding: 10px 14px; font-size: 12px; font-weight: 700;
  color: #ff6b6b; margin-top: 10px; display: none; line-height: 1.5;
}
.otp-error-box.show { display: block; animation: errSlide .3s ease; }
.otp-error-box.success-msg { background: rgba(0,200,120,.1); border-color: rgba(0,200,120,.3); color: #00e89e; }
@keyframes errSlide {
  from { transform: translateY(-6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.otp-back-btn {
  width: 100%; background: none; border: none; color: var(--sub);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  cursor: pointer; margin-top: 10px; padding: 6px;
  transition: color .2s; display: block; text-align: center;
}
.otp-back-btn:hover { color: var(--p3); }

/* OTP Boxes */
.entry-hint { text-align: center; font-size: 12px; color: var(--sub); font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.otp-boxes { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; }
.otp-box {
  width: 44px; height: 52px; text-align: center; font-size: 22px;
  font-weight: 900; font-family: var(--font-head); color: var(--wh);
  background: rgba(76,29,149,.2); border: 2px solid rgba(168,85,247,.25);
  border-radius: 12px; outline: none; caret-color: var(--p3); transition: all .2s;
}
.otp-box:focus { border-color: var(--p2); background: rgba(168,85,247,.2); box-shadow: 0 0 0 3px rgba(168,85,247,.18); transform: scale(1.06); }
.otp-box.filled { border-color: rgba(0,200,120,.5); background: rgba(0,200,120,.1); color: #00e89e; }
.otp-box.shake { animation: otpShake .4s ease; }
@keyframes otpShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.resend-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.resend-timer { font-size: 12px; color: var(--sub); font-weight: 600; }
.resend-timer b { color: var(--p3); font-weight: 900; }
.otp-resend-btn {
  background: none; border: 1.5px solid rgba(168,85,247,.3); border-radius: 8px;
  padding: 5px 12px; color: var(--p3); font-family: var(--font); font-size: 12px;
  font-weight: 800; cursor: pointer; transition: all .2s;
}
.otp-resend-btn:not(:disabled):hover { background: rgba(168,85,247,.15); border-color: var(--p2); }
.otp-resend-btn:disabled { opacity: .35; cursor: not-allowed; }

/* CAPTCHA Reveal */
.reveal-stage {
  background: linear-gradient(135deg, rgba(0,229,192,.08), rgba(79,110,247,.06));
  border: 1.5px solid rgba(0,229,192,.2); border-radius: 20px;
  padding: 18px 16px 14px; margin-bottom: 18px;
  animation: revealIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes revealIn {
  from { transform: scale(.9) translateY(-10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.reveal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,229,192,.15); }
.reveal-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(0,229,192,.2), rgba(79,110,247,.15));
  border: 1px solid rgba(0,229,192,.3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(0,229,192,.2); }
  50% { box-shadow: 0 0 26px rgba(0,229,192,.5); }
}
.reveal-title { font-family: var(--font-head); font-size: 15px; font-weight: 900; color: var(--wh); }
.reveal-sub { font-size: 11px; color: var(--sub); margin-top: 2px; }
.digit-theater { height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.digit-display {
  font-family: var(--font-head); font-size: 68px; font-weight: 900;
  line-height: 1; min-width: 80px; text-align: center;
  background: linear-gradient(135deg, #ffffff, var(--p3), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0,229,192,.55));
}
.digit-display.pop { animation: digitPop .45s cubic-bezier(.34,1.56,.64,1) both; }
.digit-display.out { animation: digitOut .22s ease forwards; }
@keyframes digitPop {
  from { transform: scale(.2) rotateY(90deg); opacity: 0; }
  to { transform: scale(1) rotateY(0deg); opacity: 1; }
}
@keyframes digitOut {
  from { transform: scale(1) translateY(0); opacity: 1; }
  to { transform: scale(.4) translateY(-22px); opacity: 0; }
}
.digit-pos { font-size: 11px; color: var(--sub); font-weight: 700; letter-spacing: .5px; height: 16px; text-transform: uppercase; }
.reveal-progress-bar { margin-top: 12px; height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.rpb-fill {
  height: 100%; background: linear-gradient(90deg, var(--p1), var(--accent));
  border-radius: 2px; width: 0%; transition: width 1.1s linear;
  box-shadow: 0 0 8px rgba(0,229,192,.5);
}

/* Success Overlay */
.verify-success-overlay {
  position: fixed; inset: 0; background: rgba(9,4,30,.88);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9995; animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vso-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg,#00c48c,#00e89e);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; box-shadow: 0 0 40px rgba(0,200,140,.6);
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1); margin-bottom: 20px;
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.vso-text { font-size: 20px; font-weight: 900; color: white; font-family: var(--font-head); text-align: center; }
.vso-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; text-align: center; }

/* ── SECTION HEADERS ── */
.sh { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 10px; }
.sh h3 { font-size: 15px; font-weight: 800; color: var(--wh); }
.sa { font-size: 12px; color: var(--p3); font-weight: 700; cursor: pointer; }
.sec-sub-text { font-size: 12px; color: var(--sub); margin-bottom: 16px; }

/* ── SLIDER ── */
.slider-wrap { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 14px; height: 180px; background: var(--card); }
.slider-track { display: flex; height: 100%; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.slider-track.dragging { transition: none; }
.slide { flex-shrink: 0; width: 100%; height: 100%; position: relative; cursor: pointer; border-radius: 20px; overflow: hidden; }
.slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 60%); }
.slide-label { position: absolute; bottom: 12px; left: 16px; right: 16px; font-size: 14px; font-weight: 800; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.slide-fallback {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; border-radius: 20px;
}
.sf-ico { font-size: 40px; }
.sf-text { font-size: 16px; font-weight: 800; color: #fff; text-align: center; padding: 0 20px; }
.sf-sub { font-size: 12px; color: rgba(255,255,255,.7); text-align: center; }
.sl-prev, .sl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); border: none; color: #fff; font-size: 22px;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  z-index: 5; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.sl-prev { left: 8px; }
.sl-next { right: 8px; }
.sl-dots { position: absolute; bottom: 10px; right: 12px; display: flex; gap: 4px; }
.sl-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all .25s; cursor: pointer; }
.sl-dot.active { background: #fff; width: 18px; border-radius: 3px; }

/* ── SEARCH ── */
.srch-bar {
  background: rgba(30,15,70,.6); border: 1.5px solid rgba(168,85,247,.18);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.srch-bar input { background: none; border: none; outline: none; color: var(--wh); font-family: var(--font); font-size: 13px; font-weight: 600; flex: 1; }
.srch-bar input::placeholder { color: var(--sub); }

/* ── LOOT BANNER ── */
.loot-banner {
  background: linear-gradient(135deg,#4c1d95,#7c3aed,#db2777);
  border-radius: 20px; padding: 18px 16px; margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.lb-badge {
  background: rgba(255,255,255,.2); border-radius: 20px; padding: 3px 10px;
  font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 1px;
  text-transform: uppercase; display: inline-block; margin-bottom: 8px;
}
.loot-banner h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; font-family: var(--font-head); }
.loot-banner p { font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.lb-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-grab {
  padding: 10px 18px; background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 12px;
  color: #fff; font-family: var(--font); font-size: 13px; font-weight: 800;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(10px);
}
.btn-grab:hover { background: rgba(255,255,255,.35); }
.cd { display: flex; align-items: center; gap: 4px; }
.cd-box { background: rgba(0,0,0,.25); border-radius: 8px; padding: 5px 8px; text-align: center; min-width: 40px; }
.cdn { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: #fff; display: block; }
.cdl { font-size: 9px; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .5px; }
.cd-sep { color: rgba(255,255,255,.6); font-weight: 900; font-size: 16px; }

/* ── QUICK STATS ── */
.qs-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.qs-card {
  background: var(--card); border: 1px solid rgba(168,85,247,.15);
  border-radius: 16px; padding: 12px 10px; text-align: center;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(10px);
}
.qs-card:hover { transform: translateY(-2px); box-shadow: var(--glow-sm); }
.qi { font-size: 22px; margin-bottom: 4px; }
.qv { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--wh); margin-bottom: 2px; }
.ql { font-size: 10px; color: var(--sub); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ── PRODUCT CARDS ── */
.pg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.p-card {
  background: var(--card); border: 1px solid rgba(168,85,247,.12);
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: all .22s; backdrop-filter: blur(8px);
  animation: cardPop .4s cubic-bezier(.34,1.56,.64,1) both;
}
.p-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.4), var(--glow-sm); }
@keyframes cardPop {
  from { transform: scale(.85) translateY(15px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.p-img {
  height: 110px; display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, rgba(120,40,220,.15), rgba(168,85,247,.08));
  position: relative;
}
.disc-badge {
  position: absolute; top: 8px; right: 8px; background: var(--red);
  color: #fff; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 8px;
}
.p-info { padding: 10px; }
.p-name { font-size: 12px; font-weight: 800; color: var(--wh); margin-bottom: 4px; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.p-rat { font-size: 10px; color: var(--sub); margin-bottom: 6px; }
.p-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.p-price { font-size: 14px; font-weight: 900; color: var(--p3); font-family: var(--font-head); }
.buy-btn {
  background: var(--grad); border: none; border-radius: 8px; color: #fff;
  font-size: 10px; font-weight: 800; padding: 5px 10px; cursor: pointer;
  font-family: var(--font); white-space: nowrap; transition: all .15s;
}
.buy-btn:active { transform: scale(.95); }

/* ── FILTER TABS ── */
.ftabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; margin-bottom: 14px; }
.ftabs::-webkit-scrollbar { display: none; }
.ft {
  padding: 7px 14px; border-radius: 20px; font-size: 12px; font-weight: 800;
  cursor: pointer; white-space: nowrap; border: 1.5px solid rgba(168,85,247,.2);
  color: var(--sub); background: rgba(76,29,149,.18); font-family: var(--font); transition: all .25s;
}
.ft.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 16px rgba(168,85,247,.55); }

/* ── PARTNERS ── */
.partners-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: none; margin-bottom: 4px; }
.partners-strip::-webkit-scrollbar { display: none; }
.ps-item { flex-shrink: 0; width: 80px; text-align: center; cursor: pointer; transition: all .2s; }
.ps-item:hover { transform: translateY(-2px); }
.ps-img {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(168,85,247,.12); border: 1.5px solid rgba(168,85,247,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 6px; transition: all .2s;
}
.ps-item:hover .ps-img { box-shadow: var(--glow-sm); }
.ps-name { font-size: 11px; font-weight: 800; color: var(--wh); }
.ps-link { font-size: 10px; color: var(--p3); font-weight: 700; }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pg-item {
  background: var(--card); border: 1px solid rgba(168,85,247,.15);
  border-radius: 18px; overflow: hidden; backdrop-filter: blur(8px);
}
.pgi-top { height: 80px; display: flex; align-items: center; justify-content: center; font-size: 42px; background: linear-gradient(135deg, rgba(120,40,220,.15), rgba(168,85,247,.08)); }
.pgi-info { padding: 12px; }
.pgi-name { font-size: 13px; font-weight: 800; color: var(--wh); margin-bottom: 4px; }
.pgi-desc { font-size: 11px; color: var(--sub); margin-bottom: 10px; line-height: 1.4; }
.pgi-btn { width: 100%; padding: 8px; background: var(--grad); border: none; border-radius: 10px; color: #fff; font-size: 12px; font-weight: 800; cursor: pointer; font-family: var(--font); transition: all .2s; }
.pgi-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ── EARN ROW ── */
.earn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.earn-card {
  background: var(--card); border: 1.5px solid rgba(168,85,247,.15);
  border-radius: 18px; padding: 16px 14px; text-align: center;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(8px);
}
.earn-card:hover { transform: translateY(-2px); box-shadow: var(--glow-sm); }
.ei { font-size: 28px; margin-bottom: 8px; }
.earn-card h4 { font-size: 13px; font-weight: 800; color: var(--wh); margin-bottom: 4px; }
.earn-card p { font-size: 11px; color: var(--sub); margin-bottom: 10px; }
.eb {
  padding: 8px 16px; background: var(--grad); border: none;
  border-radius: 10px; color: #fff; font-size: 12px; font-weight: 800;
  cursor: pointer; font-family: var(--font); transition: all .2s;
}
.eb:hover { transform: translateY(-1px); }

/* ── REWARDS / COINS ── */
.coins-hero {
  text-align: center; padding: 28px 20px;
  background: linear-gradient(135deg, rgba(120,40,220,.2), rgba(168,85,247,.08));
  border: 1.5px solid rgba(168,85,247,.2); border-radius: 24px;
  margin-bottom: 14px; position: relative; overflow: hidden;
}
.ch-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(168,85,247,.15), transparent 70%); pointer-events: none; }
.ch-ico { font-size: 52px; margin-bottom: 8px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.ch-amt { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--wh); margin-bottom: 4px; filter: drop-shadow(0 0 12px rgba(168,85,247,.6)); }
.ch-lbl { font-size: 12px; font-weight: 700; color: var(--sub); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.ch-sub { font-size: 12px; color: rgba(255,255,255,.4); }
.ch-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(168,85,247,.08); }
.ch-item:last-child { border-bottom: none; }
.chi-ico { width: 38px; height: 38px; background: rgba(168,85,247,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.chi-info { flex: 1; }
.chi-info h4 { font-size: 13px; font-weight: 700; color: var(--wh); }
.chi-info p { font-size: 11px; color: var(--sub); margin-top: 2px; }
.chi-amt { font-family: var(--font-head); font-size: 14px; font-weight: 900; color: var(--green); }

/* ── LEADERBOARD ── */
.lb-card { background: var(--card); border: 1.5px solid rgba(168,85,247,.15); border-radius: 20px; overflow: hidden; margin-bottom: 14px; backdrop-filter: blur(8px); }
.lb-header { padding: 14px 16px; background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(120,40,220,.1)); border-bottom: 1px solid rgba(168,85,247,.12); }
.lb-header h3 { font-size: 15px; font-weight: 800; color: var(--wh); }
.lb-row { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid rgba(168,85,247,.06); transition: background .15s; }
.lb-row:last-child { border-bottom: none; }
.lb-row.me { background: rgba(168,85,247,.1); }
.lb-rank { font-family: var(--font-head); font-size: 14px; font-weight: 900; color: var(--sub); width: 28px; text-align: center; flex-shrink: 0; }
.lb-rank.gold { color: #fbbf24; }
.lb-rank.silver { color: #9ca3af; }
.lb-rank.bronze { color: #b45309; }
.lb-avatar { font-size: 22px; flex-shrink: 0; }
.lb-name { flex: 1; font-size: 13px; font-weight: 700; color: var(--wh); }
.lb-coins { font-family: var(--font-head); font-size: 13px; font-weight: 900; color: var(--p3); }

/* ── REFERRAL ── */
.gc-v { background: linear-gradient(135deg, rgba(120,40,220,.22), rgba(168,85,247,.08)); border: 1.5px solid rgba(168,85,247,.25); border-radius: 24px; padding: 20px 16px; margin-bottom: 14px; position: relative; overflow: hidden; backdrop-filter: blur(8px); }
.gc-g { background: linear-gradient(135deg, rgba(0,229,192,.1), rgba(79,110,247,.06)); border: 1.5px solid rgba(0,229,192,.2); border-radius: 20px; padding: 16px; margin-bottom: 14px; position: relative; overflow: hidden; }
.gc-b { background: rgba(14,7,38,.7); border: 1.5px solid rgba(168,85,247,.15); border-radius: 20px; padding: 16px; margin-bottom: 14px; backdrop-filter: blur(8px); }
.refer-card h3 { font-size: 18px; font-weight: 900; color: var(--wh); margin-bottom: 4px; font-family: var(--font-head); }
.refer-card p { font-size: 12px; color: var(--sub); margin-bottom: 14px; }
.ref-box { display: flex; align-items: center; gap: 10px; background: rgba(168,85,247,.1); border: 1.5px solid rgba(168,85,247,.25); border-radius: 14px; padding: 12px 14px; margin-bottom: 14px; }
.ref-code { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--wh); flex: 1; letter-spacing: 2px; }
.copy-btn { background: var(--grad); border: none; border-radius: 10px; color: #fff; font-size: 12px; font-weight: 800; padding: 7px 14px; cursor: pointer; font-family: var(--font); flex-shrink: 0; transition: all .2s; }
.copy-btn:hover { transform: translateY(-1px); }
.rwd-chips { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.rc { background: rgba(168,85,247,.1); border-radius: 12px; padding: 10px; text-align: center; }
.rcc { font-size: 13px; font-weight: 900; color: var(--wh); margin-bottom: 4px; }
.rc p { font-size: 10px; color: var(--sub); }
.how-card h4 { font-size: 14px; font-weight: 800; color: var(--wh); margin-bottom: 12px; }
.step { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.step:last-child { margin-bottom: 0; }
.sn { width: 28px; height: 28px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; }
.si2 b { font-size: 13px; color: var(--wh); display: block; margin-bottom: 2px; }
.si2 p { font-size: 11px; color: var(--sub); }

/* ── WALLET ── */
.wallet-card { padding: 20px 16px; margin-bottom: 14px; }
.wc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.wc-l { font-size: 15px; font-weight: 800; color: var(--wh); }
.wc-sub-lbl { font-size: 10px; color: var(--sub); text-align: right; margin-bottom: 2px; }
.wc-b { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--gold); }
.wc-money { font-size: 12px; color: var(--green); font-weight: 700; margin-top: 2px; }
.wc-rates { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.ri { background: rgba(168,85,247,.08); border: 1px solid rgba(168,85,247,.15); border-radius: 12px; padding: 8px; text-align: center; }
.ri span { font-size: 10px; color: var(--sub); display: block; margin-bottom: 2px; }
.ri b { font-size: 12px; font-weight: 900; color: var(--green); }
.wd-form { background: rgba(168,85,247,.06); border: 1.5px solid rgba(168,85,247,.15); border-radius: 16px; padding: 16px; margin-bottom: 14px; }
.wd-form h4 { font-size: 14px; font-weight: 800; color: var(--wh); margin-bottom: 8px; }
.wd-sub { font-size: 12px; color: var(--sub); margin-bottom: 14px; }
.wd-hist-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(168,85,247,.08); }
.whi-ico { width: 36px; height: 36px; background: rgba(168,85,247,.15); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.whi-info { flex: 1; }
.whi-info h5 { font-size: 13px; font-weight: 700; color: var(--wh); }
.whi-info p { font-size: 11px; color: var(--sub); margin-top: 2px; }
.whi-status { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 8px; }
.whi-status.pending { background: rgba(251,191,36,.15); color: #fbbf24; }
.whi-status.approved { background: rgba(16,185,129,.15); color: var(--green); }

/* ── PROFILE ── */
.prof-hero { background: linear-gradient(135deg, rgba(120,40,220,.2), rgba(168,85,247,.08)); border: 1.5px solid rgba(168,85,247,.2); border-radius: 24px; padding: 24px 16px; text-align: center; margin-bottom: 14px; backdrop-filter: blur(8px); }
.pav { font-size: 48px; margin-bottom: 8px; filter: drop-shadow(0 0 12px rgba(168,85,247,.5)); }
.pname { font-size: 18px; font-weight: 900; color: var(--wh); font-family: var(--font-head); margin-bottom: 4px; }
.pph, .pem { font-size: 12px; color: var(--sub); margin-bottom: 2px; }
.puname { font-size: 13px; color: var(--p3); font-weight: 700; margin-top: 4px; }
.pcbar { display: flex; align-items: center; justify-content: space-between; }
.pclbl { font-size: 12px; color: var(--sub); margin-bottom: 3px; }
.pcval { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--gold); }
.mini-btn { background: var(--grad); border: none; border-radius: 10px; color: #fff; font-size: 12px; font-weight: 800; padding: 8px 14px; cursor: pointer; font-family: var(--font); transition: all .2s; }
.mini-btn:hover { transform: translateY(-1px); }
.refinl { margin-bottom: 14px; }
.rilbl { font-size: 12px; color: var(--sub); margin-bottom: 8px; }
.menu-bl { background: rgba(50,20,100,.4); border: 1.5px solid rgba(168,85,247,.12); border-radius: 20px; overflow: hidden; margin-bottom: 13px; backdrop-filter: blur(10px); }
.mrow { display: flex; align-items: center; gap: 13px; padding: 15px 16px; cursor: pointer; border-bottom: 1px solid rgba(168,85,247,.07); transition: all .18s; }
.mrow:last-child { border-bottom: none; }
.mrow:hover { background: rgba(168,85,247,.12); padding-left: 20px; }
.mri { width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.mrow > span:not(.mri):not(.marr):not(.mb2) { flex: 1; font-size: 13px; font-weight: 700; color: var(--wh); }
.marr { color: rgba(255,255,255,.18); font-size: 18px; }
.mb2 { background: #ff3333; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 10px; }
.logout-btn { width: 100%; padding: 14px; margin-top: 4px; background: rgba(255,40,40,.1); border: 1.5px solid rgba(255,40,40,.3); border-radius: 16px; color: #ff6b6b; font-family: var(--font); font-size: 14px; font-weight: 800; cursor: pointer; transition: all .2s; }
.logout-btn:hover { background: rgba(255,40,40,.22); }

/* ── ORDERS ── */
.order-card { background: var(--card); border: 1.5px solid rgba(168,85,247,.15); border-radius: 18px; padding: 14px 16px; margin-bottom: 10px; backdrop-filter: blur(8px); }
.oc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.oc-name { font-size: 14px; font-weight: 800; color: var(--wh); }
.oc-status { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 8px; }
.oc-status.proof_submitted { background: rgba(251,191,36,.15); color: #fbbf24; }
.oc-status.approved { background: rgba(16,185,129,.15); color: var(--green); }
.oc-status.rejected { background: rgba(239,68,68,.15); color: var(--red); }
.oc-date { font-size: 11px; color: var(--sub); }
.oc-upi { font-size: 12px; color: var(--sub); margin-top: 4px; }
.oc-amt { font-size: 13px; font-weight: 800; color: var(--gold); margin-top: 4px; }

/* ── NOTIFICATIONS ── */
.ni { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(168,85,247,.08); }
.ni:last-child { border-bottom: none; }
.ni-i { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ni-t h4 { font-size: 13px; font-weight: 700; color: var(--wh); margin-bottom: 3px; }
.ni-t p { font-size: 12px; color: var(--sub); line-height: 1.4; }
.nt { font-size: 10px; color: rgba(168,85,247,.6); font-weight: 700; margin-top: 4px; display: block; }

/* ── CHAT ── */
.chat-header-pad { padding: 14px 14px 6px; }
.chat-wrap { display: flex; flex-direction: column; height: calc(100vh - 220px); }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { max-width: 80%; border-radius: 18px; padding: 10px 14px; font-size: 13px; font-weight: 600; line-height: 1.5; position: relative; animation: bubblePop .3s cubic-bezier(.34,1.56,.64,1); }
@keyframes bubblePop {
  from { transform: scale(.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cb-user { background: var(--grad); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.cb-admin { background: rgba(50,20,100,.7); border: 1px solid rgba(168,85,247,.2); color: var(--wh); align-self: flex-start; border-bottom-left-radius: 4px; }
.cb-time { font-size: 10px; opacity: .6; margin-top: 4px; display: block; }
.chat-input-bar {
  position: fixed; bottom: 74px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 420px;
  background: rgba(9,4,30,.97); backdrop-filter: blur(20px);
  padding: 10px 14px; border-top: 1px solid rgba(168,85,247,.12);
  display: flex; gap: 10px; align-items: center; z-index: 90;
}
.chat-input { flex: 1; background: rgba(76,29,149,.15); border: 1.5px solid rgba(168,85,247,.2); border-radius: 12px; padding: 10px 14px; color: var(--wh); font-family: var(--font); font-size: 13px; font-weight: 600; outline: none; resize: none; }
.chat-input::placeholder { color: var(--sub); }
.chat-send-btn { width: 40px; height: 40px; background: var(--grad); border: none; border-radius: 12px; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.chat-send-btn:hover { transform: scale(1.08); }

/* ── BOTTOM NAV ── */
.bnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 420px;
  background: rgba(9,4,30,.97); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(168,85,247,.15);
  padding: 6px 2px 20px;
  display: flex; justify-content: space-around;
  z-index: 100; box-shadow: 0 -8px 40px rgba(0,0,0,.55);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .bnav { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
}
.bni { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; padding: 5px 4px; border-radius: 12px; transition: all .22s; flex: 1; min-width: 0; }
.bni:hover, .bni.active { background: rgba(168,85,247,.15); }
.bni-i { font-size: 20px; transition: all .22s; }
.bni:hover .bni-i, .bni.active .bni-i { filter: drop-shadow(0 0 8px rgba(196,132,252,.9)); transform: translateY(-2px); }
.bni-l { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.28); transition: color .22s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; text-align: center; }
.bni.active .bni-l { color: var(--p3); }

/* ── MODALS ── */
.modal-ov { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(10px); z-index: 900; align-items: flex-end; justify-content: center; }
.modal-ov.open { display: flex; }
.modal-box {
  background: rgba(9,4,30,.97); border: 1.5px solid rgba(168,85,247,.3);
  border-radius: 28px 28px 0 0; padding: 24px 22px 36px;
  width: 100%; max-width: 420px;
  box-shadow: 0 0 60px rgba(168,85,247,.3);
  animation: mSlide .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mSlide {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.modal-handle { width: 36px; height: 4px; background: rgba(255,255,255,.2); border-radius: 2px; margin: 0 auto 18px; }
.modal-box h3 { font-size: 18px; font-weight: 900; color: var(--wh); margin-bottom: 6px; font-family: var(--font-head); }
.modal-sub { color: var(--sub); font-size: 12px; margin-bottom: 16px; }
.modal-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.modal-btn-pri { padding: 13px; background: var(--grad); border: none; border-radius: 13px; color: #fff; font-family: var(--font); font-size: 13px; font-weight: 800; cursor: pointer; transition: all .2s; }
.modal-btn-pri:hover { filter: brightness(1.1); }
.modal-btn-sec { padding: 13px; background: rgba(168,85,247,.15); border: 1.5px solid rgba(168,85,247,.3); border-radius: 13px; color: var(--p3); font-family: var(--font); font-size: 13px; font-weight: 800; cursor: pointer; transition: all .2s; }
.modal-btn-sec:hover { background: rgba(168,85,247,.25); }
.mclose { background: none; border: none; color: var(--sub); font-size: 13px; margin-top: 12px; cursor: pointer; font-family: var(--font); display: block; width: 100%; text-align: center; transition: color .2s; padding: 6px; }
.mclose:hover { color: var(--p3); }

/* Buy Steps */
.buy-step { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(168,85,247,.1); }
.buy-step:last-of-type { border-bottom: none; }
.bs-num { width: 26px; height: 26px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; }
.bs-txt { font-size: 12px; color: var(--txt); line-height: 1.5; }

/* Proof Upload */
.proof-upload-area { border: 2px dashed rgba(168,85,247,.3); border-radius: 14px; padding: 20px; text-align: center; cursor: pointer; transition: all .2s; margin-bottom: 12px; }
.proof-upload-area:hover { border-color: var(--p2); background: rgba(168,85,247,.05); }
.proof-upload-area.has-file { border-color: var(--green); background: rgba(0,200,120,.05); }
.proof-ico { font-size: 36px; margin-bottom: 8px; }
.proof-lbl { font-size: 13px; font-weight: 700; color: var(--wh); margin-bottom: 4px; }
.proof-sub-lbl { font-size: 11px; color: var(--sub); }
.file-input-hidden { display: none; }

/* ── MISC ── */
.info-badge { background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.2); border-radius: 12px; padding: 8px 12px; font-size: 12px; color: var(--sub); margin-bottom: 14px; line-height: 1.5; }
.empty-b { text-align: center; padding: 30px 0; color: var(--sub); }
.empty-b div { font-size: 36px; margin-bottom: 8px; }
.empty-b p { font-size: 13px; }
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-10px);
  background: rgba(9,4,30,.96); border: 1px solid rgba(168,85,247,.4);
  color: var(--wh); padding: 11px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 700; z-index: 9999;
  opacity: 0; transition: all .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 0 20px rgba(168,85,247,.3);
  max-width: 90vw; overflow: hidden; text-overflow: ellipsis;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,.35); border-radius: 4px; }
