/* ─────────────────────────────────────────────────────────────────────────────
   SUBWAY SURFERS THEME — CSS Global
   Colors: #FF6B00 (neon orange) · #00E5FF (cyan) · #FFD700 (gold) · #FF0099 (magenta)
   Background: dark subway tunnel with graffiti vibes
───────────────────────────────────────────────────────────────────────────── */

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: #0a0a18;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --sw-orange:    #FF6B00;
  --sw-orange2:   #FF9000;
  --sw-cyan:      #00E5FF;
  --sw-gold:      #FFD700;
  --sw-magenta:   #FF0099;
  --sw-green:     #39FF14;
  --sw-dark:      #0a0a18;
  --sw-dark2:     #12121f;
  --sw-dark3:     #1a1a2e;
  --sw-card:      rgba(255,255,255,0.04);
  --sw-card-border: rgba(255,107,0,0.2);
  --sw-radius:    14px;
  --sw-shadow:    0 8px 32px rgba(255,107,0,0.15);

  /* compat aliases */
  --pink:         #FF6B00;
  --pink-light:   #FF9000;
  --green:        #39FF14;
  --blue:         #00E5FF;
  --dark:         #0a0a18;
  --red:          #FF0066;
}

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeIn    { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp   { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:translateY(0) } }
@keyframes pulse     { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes spin      { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes popIn     { 0%{transform:scale(0.7);opacity:0} 80%{transform:scale(1.05)} 100%{transform:scale(1);opacity:1} }
@keyframes neonFlicker { 0%,100%{opacity:1} 92%{opacity:1} 93%{opacity:.6} 94%{opacity:1} 96%{opacity:.7} 97%{opacity:1} }
@keyframes lnd-orb-drift { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.04)} }
@keyframes graffiti-shine { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #12121f; }
::-webkit-scrollbar-thumb { background: var(--sw-orange); border-radius: 50px; }

/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGE — lnd-* components
   ═══════════════════════════════════════════════════════════════════ */

/* Root */
.lnd-root {
  min-height: 100vh;
  background: #0a0a18 !important;
  font-family: 'Poppins', system-ui, sans-serif;
  color: #fff !important;
  overflow-x: hidden;
  position: relative;
}
.lnd-root::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: url('/assets/subway-bg.png') center/cover no-repeat;
  opacity: .45;
}
.lnd-root::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(10,10,24,.55) 0%,
    rgba(10,10,24,.30) 40%,
    rgba(10,10,24,.70) 100%);
}
.lnd-root > * { position: relative; z-index: 1; }

/* Navbar */
.lnd-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,24,.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sw-orange);
  padding: 0 20px; min-height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: nowrap;
  box-shadow: 0 2px 30px rgba(255,107,0,.25);
}
.lnd-nav-links { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lnd-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 900; color: #fff; text-decoration: none;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(255,107,0,.6);
}
.lnd-nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.lnd-nav-links { display: flex; align-items: center; gap: 8px; }
.lnd-nav-link {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 6px 12px; border-radius: 8px;
  transition: color .2s;
}
.lnd-nav-link:hover { color: var(--sw-orange); }
.lnd-nav-cta {
  background: linear-gradient(135deg, #00C97A 0%, #00a864 100%);
  color: #fff; font-size: 14px; font-weight: 800;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,201,122,.45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .3px;
}
.lnd-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,201,122,.6); }
.lnd-nav-cta-alt {
  background: rgba(255,107,0,.12); border: 1.5px solid rgba(255,107,0,.4);
  color: var(--sw-orange); font-size: 14px; font-weight: 700;
  padding: 8px 16px; border-radius: 50px; text-decoration: none;
  transition: background .2s;
}
.lnd-nav-cta-alt:hover { background: rgba(255,107,0,.22); }

/* Hero */
.lnd-hero {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 72px 20px 52px;
  max-width: 660px; margin: 0 auto;
}
.lnd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,.1); border: 1.5px solid rgba(255,215,0,.35);
  color: var(--sw-gold); font-size: 12px; font-weight: 700; letter-spacing: .5px;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 26px;
  animation: neonFlicker 4s infinite;
}
.lnd-hero-title {
  font-size: clamp(30px, 8vw, 52px); font-weight: 900; line-height: 1.08;
  margin: 0 0 20px; color: #fff; width: 100%;
  text-shadow: 0 0 40px rgba(255,107,0,.3);
}
.lnd-hero-title span {
  background: linear-gradient(135deg, var(--sw-orange) 0%, var(--sw-gold) 60%, var(--sw-orange2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255,150,0,.5));
}
.lnd-hero-sub {
  font-size: 15px; color: rgba(255,255,255,.65); max-width: 460px;
  margin: 0 auto 30px; line-height: 1.7; width: 100%;
}
.lnd-hero-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 36px; width: 100%;
}
.lnd-btn-primary {
  background: linear-gradient(135deg, #00C97A 0%, #00a864 100%);
  color: #fff; font-weight: 800; font-size: 15px; padding: 14px 30px;
  border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 28px rgba(0,201,122,.5); transition: transform .2s, box-shadow .2s;
  letter-spacing: .3px;
}
.lnd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,201,122,.65); }
.lnd-btn-secondary {
  background: rgba(0,229,255,.08); border: 1.5px solid rgba(0,229,255,.3);
  color: var(--sw-cyan); font-weight: 700; font-size: 15px; padding: 13px 24px;
  border-radius: 50px; text-decoration: none; transition: background .2s;
}
.lnd-btn-secondary:hover { background: rgba(0,229,255,.15); }
.lnd-hero-img {
  width: min(200px, 60vw); border-radius: 16px; opacity: .95;
  margin: 0 auto; display: block;
  filter: drop-shadow(0 8px 32px rgba(255,107,0,.4));
}

/* Stats */
.lnd-stats {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center;
  background: rgba(255,107,0,.06);
  border-top: 1px solid rgba(255,107,0,.2);
  border-bottom: 1px solid rgba(255,107,0,.2);
  padding: 20px 0; color: #fff;
}
.lnd-stat { text-align: center; padding: 12px 28px; }
.lnd-stat-val { font-size: 26px; font-weight: 900; color: var(--sw-orange); text-shadow: 0 0 16px rgba(255,107,0,.5); }
.lnd-stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; margin-top: 3px; }

/* Sections */
.lnd-section { position: relative; z-index: 1; padding: 52px 20px; max-width: 700px; margin: 0 auto; }
.lnd-section-ttl {
  font-size: 26px; font-weight: 900; text-align: center; margin-bottom: 8px;
  color: #fff; text-shadow: 0 0 20px rgba(255,107,0,.3);
}
.lnd-section-ttl::after {
  content: '';
  display: block; width: 48px; height: 3px; margin: 10px auto 0;
  background: linear-gradient(90deg, var(--sw-orange), var(--sw-gold));
  border-radius: 2px;
}
.lnd-section-sub { font-size: 14px; color: rgba(255,255,255,.45); text-align: center; margin: 12px 0 28px; }

/* Feature cards */
.lnd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.lnd-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,107,0,.15);
  border-radius: 16px; padding: 24px 18px; text-align: center;
  transition: border-color .25s, background .25s, transform .25s;
  position: relative; overflow: hidden;
}
.lnd-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sw-orange), var(--sw-gold), var(--sw-cyan));
  opacity: 0; transition: opacity .25s;
}
.lnd-card:hover { background: rgba(255,107,0,.07); border-color: rgba(255,107,0,.35); transform: translateY(-3px); }
.lnd-card:hover::before { opacity: 1; }
.lnd-card-icon { font-size: 38px; margin-bottom: 14px; }
.lnd-card-ttl { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.lnd-card-txt { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Steps */
.lnd-steps { display: flex; flex-direction: column; gap: 14px; }
.lnd-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,107,0,.12);
  border-radius: 14px; padding: 18px 16px;
  transition: border-color .2s, background .2s;
}
.lnd-step:hover { border-color: rgba(255,107,0,.3); background: rgba(255,107,0,.05); }
.lnd-step-num {
  width: 38px; height: 38px; min-width: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sw-orange), var(--sw-orange2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,0,.4);
}
.lnd-step-ttl { font-size: 15px; font-weight: 800; margin-bottom: 5px; color: #fff; }
.lnd-step-txt { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* FAQ */
.lnd-faq { display: flex; flex-direction: column; gap: 8px; }
.lnd-faq-item {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,107,0,.12);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: border-color .2s;
}
.lnd-faq-item:hover { border-color: rgba(255,107,0,.3); }
.lnd-faq-item.open { border-color: rgba(255,107,0,.35); background: rgba(255,107,0,.05); }
.lnd-faq-q {
  padding: 16px 18px; font-size: 14px; font-weight: 700; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.lnd-faq-arrow { font-size: 20px; color: var(--sw-orange); transition: transform .25s; }
.lnd-faq-item.open .lnd-faq-arrow { transform: rotate(90deg); }
.lnd-faq-a {
  max-height: 0; overflow: hidden;
  font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6;
  padding: 0 18px; transition: max-height .3s ease, padding .3s;
}
.lnd-faq-item.open .lnd-faq-a { max-height: 220px; padding: 0 18px 16px; }

/* Footer */
.lnd-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 36px 20px 24px;
  border-top: 1px solid rgba(255,107,0,.15);
}
.lnd-footer-logo { font-size: 20px; font-weight: 900; margin-bottom: 16px; color: var(--sw-orange); }
.lnd-footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 16px; }
.lnd-footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; }
.lnd-footer-links a:hover { color: var(--sw-orange); }
.lnd-footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════════════════════════════
   PLAYER PANEL — pnl-* components
   ═══════════════════════════════════════════════════════════════════ */

.pnl-root {
  display: flex; flex-direction: column;
  min-height: 100vh;
  font-family: 'Poppins', system-ui, sans-serif;
  overflow-x: hidden;
  position: relative;
  background-color: #0a0a18;
}
.pnl-root::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: url('/assets/subway-bg.png') center center / cover no-repeat;
  opacity: 0.35; pointer-events: none;
}
.pnl-root::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(10,10,24,.70) 0%,
    rgba(10,10,24,.50) 50%,
    rgba(10,10,24,.80) 100%);
  pointer-events: none;
}
.pnl-header, .pnl-scroll, .pnl-bottom-nav { position: relative; z-index: 1; }

/* Header */
.pnl-header {
  background: rgba(10,10,24,.92);
  border-bottom: 2px solid var(--sw-orange);
  padding: 0 16px; flex-shrink: 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 24px rgba(255,107,0,.3);
  backdrop-filter: blur(16px);
}
.pnl-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; color: #fff;
}
.pnl-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.pnl-logo-icon { font-size: 22px; }
.pnl-logo span { font-size: 18px; font-weight: 900; color: var(--sw-orange); text-shadow: 0 0 16px rgba(255,107,0,.5); }
.pnl-header-right { display: flex; align-items: center; gap: 10px; }
.pnl-saldo-chip {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #00C97A, #00a864);
  border-radius: 20px; padding: 5px 14px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,201,122,.35);
  transition: filter .15s, transform .15s;
}
.pnl-saldo-chip:hover { filter: brightness(1.1); transform: translateY(-1px); }
.pnl-saldo-chip-inner { display: flex; flex-direction: column; align-items: flex-end; }
.pnl-saldo-chip-lbl { font-size: 9px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .5px; line-height: 1; }
.pnl-saldo-chip-val { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.3; }
.pnl-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sw-orange), var(--sw-gold));
  color: #fff; font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  border: 2px solid rgba(255,107,0,.4);
}

/* Scroll area */
.pnl-scroll { flex: 1; overflow-y: auto; padding-bottom: 80px; }

/* Hero saldo */
.pnl-hero {
  background: rgba(20,18,10,.45);
  border-bottom: 1px solid rgba(255,107,0,.25);
  padding: 24px 20px 20px; text-align: center;
  backdrop-filter: blur(6px);
}
.pnl-hero-label { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.pnl-hero-value { font-size: 38px; font-weight: 900; color: #fff; line-height: 1.1; text-shadow: 0 0 24px rgba(255,107,0,.4); }
.pnl-hero-actions { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.pnl-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.pnl-action-green {
  background: linear-gradient(135deg, #00C97A, #00a864);
  color: #fff; box-shadow: 0 4px 16px rgba(0,201,122,.4);
}
.pnl-action-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,122,.55); }
.pnl-action-outline {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}
.pnl-action-outline:hover { background: rgba(255,107,0,.1); border-color: rgba(255,107,0,.35); color: var(--sw-orange); }

/* Game card */
.pnl-game-card {
  margin: 16px; border-radius: 18px;
  background: rgba(20,18,10,.45);
  border: 1px solid rgba(255,107,0,.35);
  padding: 20px 16px;
  box-shadow: 0 4px 32px rgba(255,107,0,.18);
  position: relative; overflow: hidden;
  backdrop-filter: blur(6px);
}
.pnl-game-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sw-orange), var(--sw-gold), var(--sw-cyan));
}
.pnl-game-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.pnl-game-title { font-size: 16px; font-weight: 900; color: #fff; letter-spacing: .3px; }
.pnl-game-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.5; }
.pnl-game-badge {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  background: rgba(57,255,20,.1); border: 1px solid rgba(57,255,20,.25);
  border-radius: 50px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: var(--sw-green);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sw-green);
  box-shadow: 0 0 6px var(--sw-green);
  animation: pulse 1.5s infinite;
}

/* Chips */
.pnl-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pnl-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.pnl-chip-gold { background: rgba(255,215,0,.12); border: 1px solid rgba(255,215,0,.3); color: var(--sw-gold); }
.pnl-chip-blue { background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.25); color: var(--sw-cyan); }
.chip-icon { font-size: 14px; }

/* Bet / input */
.pnl-bet-center { margin-bottom: 16px; }
.pnl-quick-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.pnl-quick-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pnl-quick {
  background: rgba(255,107,0,.1); border: 1.5px solid rgba(255,107,0,.25);
  color: var(--sw-orange); font-weight: 700; font-size: 13px;
  padding: 7px 14px; border-radius: 50px; cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.pnl-quick:hover, .pnl-quick.active { background: rgba(255,107,0,.2); border-color: var(--sw-orange); transform: translateY(-1px); }
.pnl-input-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,107,0,.25);
  border-radius: 12px; padding: 0 14px;
  transition: border-color .2s;
}
.pnl-input-wrap:focus-within { border-color: var(--sw-orange); box-shadow: 0 0 0 3px rgba(255,107,0,.12); }
.pnl-input-prefix { font-size: 16px; font-weight: 800; color: #00C97A; margin-right: 6px; }
.pnl-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 18px; font-weight: 700; color: #fff; padding: 13px 0;
  font-family: inherit;
}
.pnl-input::placeholder { color: rgba(255,255,255,.2); font-weight: 400; }

/* Meta row */
.pnl-meta-row { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pnl-meta-item { flex: 1; min-width: 80px; }
.pnl-meta-lbl { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.pnl-meta-val { font-size: 14px; font-weight: 800; color: #fff; }
.pnl-meta-gold { color: var(--sw-gold); text-shadow: 0 0 10px rgba(255,215,0,.4); }

/* Warn box */
.pnl-warn {
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.35);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: #f87171;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.pnl-warn-btn {
  margin-left: auto; background: #00C97A; color: #fff;
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
  white-space: nowrap; text-decoration: none;
}

/* Play button */
.pnl-play-btn {
  width: 100%; padding: 16px; border-radius: 50px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #00C97A 0%, #00a864 100%);
  color: #fff; font-weight: 900; font-size: 16px; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 28px rgba(0,201,122,.45);
  transition: transform .2s, box-shadow .2s; font-family: inherit;
  text-decoration: none; margin-bottom: 8px;
}
.pnl-play-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,201,122,.6); }
.pnl-play-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* Outline button */
.pnl-btn-outline {
  width: 100%; padding: 13px; border-radius: 50px;
  border: 1.5px solid rgba(255,107,0,.35); background: transparent;
  color: var(--sw-orange); font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; text-align: center;
  transition: background .2s, border-color .2s;
  text-decoration: none; display: block;
}
.pnl-btn-outline:hover { background: rgba(255,107,0,.1); border-color: var(--sw-orange); }

/* Bottom navigation */
.pnl-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,24,.96);
  border-top: 2px solid var(--sw-orange);
  display: flex; box-shadow: 0 -4px 24px rgba(255,107,0,.2);
  backdrop-filter: blur(16px);
}
.pnl-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; padding: 10px 4px;
  color: rgba(255,255,255,.4); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px; text-decoration: none;
  transition: color .2s;
}
.pnl-nav-item svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.pnl-nav-item:hover { color: var(--sw-orange); }
.pnl-nav-active { color: var(--sw-orange) !important; }
.pnl-nav-danger { color: rgba(255,100,100,.5) !important; }
.pnl-nav-danger:hover { color: #ff4444 !important; }

/* Stats grid (saque/afiliate) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin: 0 16px 12px; }
.stat-card {
  background: rgba(20,18,10,.45); border: 1px solid rgba(255,107,0,.3);
  border-radius: 14px; padding: 16px 12px; text-align: center;
  position: relative; overflow: hidden;
  backdrop-filter: blur(6px);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sw-orange), var(--sw-gold));
}
.stat-card .stat-icon { font-size: 26px; margin-bottom: 6px; }
.stat-card .stat-value { font-size: 18px; font-weight: 900; color: #fff; line-height: 1.1; }
.stat-card .stat-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; margin-top: 3px; }

/* Info boxes */
.pnl-info-box { border-radius: 10px; padding: 12px 14px; font-size: 13px; line-height: 1.5; }
.pnl-info-green  { background: rgba(57,255,20,.08); color: var(--sw-green); border: 1px solid rgba(57,255,20,.2); }
.pnl-info-pink   { background: rgba(220,38,38,.1); color: #f87171; border: 1px solid rgba(220,38,38,.35); }
/* Legacy (kept for safety) */
.pnl-link-box { display: none; }
.pnl-link-input { display: none; }
.pnl-link-copy-btn { display: none; }

/* Affiliate link card */
.aff-link-card {
  background: rgba(10,10,24,.7);
  border: 1.5px solid rgba(0,201,122,.3);
  border-radius: 16px;
  padding: 18px 16px 14px;
  margin: 0 0 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,201,122,.1);
}
.aff-link-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.aff-link-header-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #00C97A, #00a864);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,201,122,.35);
}
.aff-link-header-icon [data-lucide] { width: 20px; height: 20px; color: #fff; stroke-width: 2.5; }
.aff-link-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.2; }
.aff-link-subtitle { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

.aff-link-url-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 10px 14px;
  margin-bottom: 12px;
}
.aff-link-url-icon [data-lucide] { width: 15px; height: 15px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.aff-link-url {
  flex: 1; font-size: 12px; color: rgba(255,255,255,.7);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: 'Courier New', monospace; letter-spacing: .3px;
}

.aff-link-actions { display: flex; gap: 8px; }
.aff-btn-copy {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, #00C97A, #00a864);
  color: #fff; font-weight: 800; font-size: 13px;
  border: none; border-radius: 10px; padding: 11px 16px;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 16px rgba(0,201,122,.35);
  transition: transform .15s, box-shadow .15s;
}
.aff-btn-copy:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,201,122,.5); }
.aff-btn-copy [data-lucide] { width: 16px; height: 16px; }

.aff-btn-share {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(0,229,255,.1);
  border: 1.5px solid rgba(0,229,255,.3);
  color: var(--sw-cyan); font-weight: 800; font-size: 13px;
  border-radius: 10px; padding: 11px 16px;
  cursor: pointer; font-family: inherit;
  transition: background .15s, transform .15s;
}
.aff-btn-share:hover { background: rgba(0,229,255,.18); transform: translateY(-1px); }
.aff-btn-share [data-lucide] { width: 16px; height: 16px; }

.aff-copy-ok {
  display: flex; align-items: center; gap: 6px;
  color: #00C97A; font-size: 12px; font-weight: 700;
  margin-top: 10px; padding: 8px 12px;
  background: rgba(0,201,122,.1); border-radius: 8px;
  border: 1px solid rgba(0,201,122,.25);
}
.aff-copy-ok [data-lucide] { width: 14px; height: 14px; }

/* Transaction list */
.pnl-tx-list { display: flex; flex-direction: column; gap: 8px; }
.pnl-tx-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,107,0,.1);
  border-radius: 12px; padding: 12px 14px;
}
.pnl-tx-icon { font-size: 22px; flex-shrink: 0; }
.pnl-tx-body { flex: 1; min-width: 0; }
.pnl-tx-label { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pnl-tx-date  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.pnl-tx-val   { font-size: 15px; font-weight: 900; flex-shrink: 0; }
.pnl-tx-positive { color: var(--sw-green); }
.pnl-tx-negative { color: #ff6699; }

/* Modal close */
.pnl-modal-close {
  background: rgba(255,255,255,.1); border: none; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 18px; color: #fff; display: flex; align-items: center; justify-content: center;
}

/* Page content */
.pnl-page-content { max-width: 600px; margin: 0 auto; padding: 16px 16px 20px; }

/* ═══════════════════════════════════════════════════════════════════
   AUTH PAGES — lgn-* components (login / cadastro)
   ═══════════════════════════════════════════════════════════════════ */

.hx-game-bg-page {
  min-height: 100vh;
  background: #0a0a18;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
.hx-game-bg-page::before {
  content: '';
  position: fixed; inset: 0;
  background: url('/assets/subway-bg.png') center/cover no-repeat;
  opacity: .4; z-index: 0;
}
.hx-game-bg-page::after {
  content: '';
  position: fixed; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,24,.65) 0%, rgba(10,10,24,.45) 100%);
  z-index: 0;
}
.lgn-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,107,0,.25);
  border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 24px 64px rgba(255,107,0,.15), 0 0 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
}
.lgn-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(255,107,0,.5);
}
.lgn-logo img { width: 42px; height: 42px; border-radius: 10px; }
.lgn-title { font-size: 22px; font-weight: 900; color: #fff; text-align: center; margin-bottom: 6px; }
.lgn-sub { font-size: 14px; color: rgba(255,255,255,.45); text-align: center; margin-bottom: 28px; }
.lgn-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lgn-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .2px; }
.lgn-input {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,107,0,.2);
  border-radius: 10px; padding: 13px 16px; font-size: 15px;
  color: #fff; outline: none; width: 100%; font-family: inherit;
  transition: border-color .2s, background .2s;
}
.lgn-input::placeholder { color: rgba(255,255,255,.25); }
.lgn-input:focus { border-color: var(--sw-orange); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(255,107,0,.12); }
.lgn-btn {
  width: 100%; padding: 16px; border-radius: 50px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #00C97A 0%, #00a864 100%);
  color: #fff; font-weight: 900; font-size: 16px; letter-spacing: .4px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 28px rgba(0,201,122,.45);
  transition: transform .2s, box-shadow .2s; font-family: inherit;
}
.lgn-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,201,122,.6); }
.lgn-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.lgn-footer {
  text-align: center; margin-top: 22px;
  font-size: 14px; color: rgba(255,255,255,.4);
}
.lgn-footer a { color: var(--sw-orange); font-weight: 700; cursor: pointer; }

/* ─── Content padding ───────────────────────────────────────────── */
.pnl-page-content { max-width: 600px; margin: 0 auto; padding: 20px 16px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVIDADE MOBILE
   ═══════════════════════════════════════════════════════════════════ */

/* Navbar mobile */
@media (max-width: 480px) {
  .lnd-nav { padding: 0 14px; }
  .lnd-nav-logo span { font-size: 17px; }
  .lnd-nav-login-desktop { display: none; }
  .lnd-nav-teste-desktop { display: none; }
  .lnd-nav-cta { padding: 8px 16px; font-size: 13px; }

  /* Hero mobile */
  .lnd-hero { padding: 44px 16px 36px; }
  .lnd-hero-title { font-size: clamp(26px, 9vw, 38px); }
  .lnd-hero-sub { font-size: 14px; }
  .lnd-hero-btns { gap: 10px; }
  .lnd-btn-primary { padding: 12px 22px; font-size: 14px; }
  .lnd-btn-secondary { padding: 11px 20px; font-size: 14px; }

  /* Stats mobile */
  .lnd-stat { padding: 10px 16px; }
  .lnd-stat-val { font-size: 20px; }

  /* Sections mobile */
  .lnd-section { padding: 36px 16px; }
  .lnd-grid { grid-template-columns: 1fr; }

  /* Panel mobile */
  .pnl-hero-value { font-size: 30px; }
  .pnl-hero-actions { gap: 8px; }
  .pnl-action-btn { padding: 8px 14px; font-size: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin: 0 12px 12px; }
  .pnl-game-card { margin: 12px; padding: 16px 14px; }
  .pnl-quick-row { gap: 6px; }
  .pnl-quick { padding: 6px 12px; font-size: 12px; }
}

/* Hero character — multiply blend removes white GIF background */
.lnd-char-wrap {
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  width: min(210px, 62vw);
  height: min(210px, 62vw);
  box-shadow:
    0 0 0 3px rgba(255,107,0,.6),
    0 0 0 6px rgba(255,107,0,.15),
    0 12px 48px rgba(255,107,0,.4);
}
.lnd-char-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
/* Fallback for .lnd-hero-img */
.lnd-hero-img {
  display: block;
  width: min(200px, 60vw);
  height: auto;
}

/* Nav logo img responsive */
@media (max-width: 360px) {
  .lnd-nav-logo img { width: 28px; height: 28px; }
  .lnd-nav-logo span { font-size: 15px; }
}

/* ─── Lucide Icons ────────────────────────────────────────────────────────── */
[data-lucide] { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }
[data-lucide] svg, i[data-lucide] { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Icon sizes in specific contexts */
.pnl-play-btn [data-lucide]   { width: 20px; height: 20px; }
.pnl-action-btn [data-lucide] { width: 15px; height: 15px; }
.pnl-nav-item [data-lucide]   { width: 22px; height: 22px; }
.chip-icon [data-lucide]      { width: 14px; height: 14px; }
.stat-icon [data-lucide]      { width: 28px; height: 28px; }
.stat-icon                    { font-size: 28px; display: flex; align-items: center; justify-content: center; }
.lnd-hero-badge [data-lucide] { width: 14px; height: 14px; }
.lnd-card-icon [data-lucide]  { width: 36px; height: 36px; }
.lnd-step-num [data-lucide]   { width: 18px; height: 18px; }
.lnd-btn-primary [data-lucide]{ width: 17px; height: 17px; }
.lgn-btn [data-lucide]        { width: 18px; height: 18px; }
.pnl-logo-icon [data-lucide]  { width: 24px; height: 24px; color: var(--sw-orange); }

/* Alerts with icons */
.pnl-warn [data-lucide]     { width: 16px; height: 16px; flex-shrink: 0; }
.pnl-info-box [data-lucide] { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Deposit pulse animations ─────────────────────────────────── */
@keyframes sw-deposit-pulse {
  0%   { box-shadow: 0 6px 20px rgba(0,201,122,.45), 0 0 0 0 rgba(0,201,122,.5); }
  60%  { box-shadow: 0 6px 20px rgba(0,201,122,.45), 0 0 0 10px rgba(0,201,122,0); }
  100% { box-shadow: 0 6px 20px rgba(0,201,122,.45), 0 0 0 0 rgba(0,201,122,0); }
}
@keyframes sw-nav-deposit-glow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(0,201,122,.3)); }
  50%       { filter: drop-shadow(0 0 8px rgba(0,201,122,.85)); }
}

/* Big deposit buttons */
a[href="/deposito"].pnl-play-btn,
a[href="../deposito/"].pnl-play-btn,
#btnGerarQr {
  animation: sw-deposit-pulse 2s ease-in-out infinite;
}

/* Depositar item in bottom nav — só pulsa quando saldo insuficiente */
.pnl-nav-deposit-alert svg {
  animation: sw-nav-deposit-glow 2s ease-in-out infinite;
}
.pnl-nav-deposit-alert {
  color: #00C97A !important;
}
.hidden { display: none !important; }
