/* ─────────────────────────────────────────────────────────────────────────────
   SUBWAY SURFERS THEME — CSS Global
   Colors: #FF9A00 (laranja) · #00D4FF (ciano) · #FFD700 (moedas) · #1a1a2e (fundo)
   Background: trilhos / túnel escuro estilo Subway Surfers
───────────────────────────────────────────────────────────────────────────── */

/* ─── 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: #1a1a2e;
  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 {
  --cp-green:     #FF9A00;
  --cp-green2:    #E67E00;
  --cp-dark-green:#CC6A00;
  --cp-gold:      #FFD700;
  --cp-gold2:     #FFC107;
  --cp-blue:      #00D4FF;
  --cp-red:       #FF4757;
  --cp-white:     #FFFFFF;
  --cp-dark:      #1a1a2e;
  --cp-dark2:     #16213e;
  --cp-dark3:     #0f3460;
  --cp-card:      rgba(255,255,255,0.04);
  --cp-card-border: rgba(255,154,0,0.25);
  --cp-radius:    14px;
  --cp-shadow:    0 8px 32px rgba(255,154,0,0.18);

  /* compat aliases */
  --sw-orange:    #FF9A00;
  --sw-orange2:   #E67E00;
  --sw-cyan:      #00D4FF;
  --sw-gold:      #FFD700;
  --sw-magenta:   #FF006E;
  --sw-green:     #39FF14;
  --sw-dark:      #1a1a2e;
  --sw-dark2:     #16213e;
  --sw-dark3:     #0f3460;
  --sw-card:      rgba(255,255,255,0.04);
  --sw-card-border: rgba(255,154,0,0.25);
  --sw-radius:    14px;
  --sw-shadow:    0 8px 32px rgba(255,154,0,0.18);
  --pink:         #FF9A00;
  --pink-light:   #E67E00;
  --green:        #39FF14;
  --blue:         #00D4FF;
  --dark:         #1a1a2e;
  --red:          #FF4757;
}

/* ─── 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 ballRoll  { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
@keyframes trophyGlow { 0%,100%{opacity:1;filter:drop-shadow(0 0 6px rgba(255,215,0,.5))} 50%{opacity:.85;filter:drop-shadow(0 0 18px rgba(255,215,0,.9))} }
@keyframes grassWave { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(1.03)} }
@keyframes lnd-orb-drift { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.04)} }
@keyframes confetti-fall {
  0%   { transform:translateY(-20px) rotate(0deg); opacity:1; }
  100% { transform:translateY(120vh) rotate(720deg); opacity:0; }
}
@keyframes neonFlicker { 0%,100%{opacity:1} 92%{opacity:1} 93%{opacity:.6} 94%{opacity:1} 96%{opacity:.7} 97%{opacity:1} }

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #16213e; }
::-webkit-scrollbar-thumb { background: var(--cp-green); border-radius: 50px; }

/* ─── Trilhos / túnel Subway (CSS background) ─────────────────────────────── */
.copa-field-bg,
.subway-track-bg {
  background-color: #1a1a2e;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,154,0,.10) 0%, transparent 55%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 46px,
      rgba(255,255,255,.025) 46px,
      rgba(255,255,255,.025) 47px
    );
}

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

/* Root */
.lnd-root {
  min-height: 100vh;
  background: #1a1a2e !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/game-copa-bg.png') center/cover no-repeat;
  opacity: .55;
}
@media (max-width: 768px) {
  .lnd-root::before {
    background: url('/assets/game-copa-bg-mobile.png') center/cover no-repeat;
    opacity: .55;
  }
}
.lnd-root::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(26,26,46,.6) 0%,
    rgba(26,26,46,.20) 40%,
    rgba(26,26,46,.75) 100%);
}
.lnd-root > * { position: relative; z-index: 1; }

/* Navbar */
.lnd-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(26,26,46,.96);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--cp-green);
  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,154,0,.3);
}
.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,154,0,.7);
}
.lnd-nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.lnd-nav-logo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,215,0,.45));
}
.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(--cp-gold); }
.lnd-nav-cta {
  background: linear-gradient(135deg, var(--cp-green) 0%, var(--cp-green2) 100%);
  color: #fff; font-size: 14px; font-weight: 800;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,154,0,.5);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .3px;
}
.lnd-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,154,0,.7); }
.lnd-nav-cta-alt {
  background: rgba(255,215,0,.1); border: 1.5px solid rgba(255,215,0,.4);
  color: var(--cp-gold); 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,215,0,.2); }

/* 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,.12); border: 1.5px solid rgba(255,215,0,.4);
  color: var(--cp-gold); font-size: 12px; font-weight: 700; letter-spacing: .5px;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 26px;
  animation: trophyGlow 2.5s ease-in-out 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,154,0,.35);
}
.lnd-hero-title span {
  background: linear-gradient(135deg, var(--cp-green) 0%, var(--cp-gold) 50%, var(--cp-green2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255,154,0,.55));
}
.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, var(--cp-green) 0%, var(--cp-green2) 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(255,154,0,.55); transition: transform .2s, box-shadow .2s;
  letter-spacing: .3px;
}
.lnd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,154,0,.72); }
.lnd-btn-secondary {
  background: rgba(255,215,0,.08); border: 1.5px solid rgba(255,215,0,.35);
  color: var(--cp-gold); font-weight: 700; font-size: 15px; padding: 13px 24px;
  border-radius: 50px; text-decoration: none; transition: background .2s;
}
.lnd-btn-secondary:hover { background: rgba(255,215,0,.18); }
.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,154,0,.45));
}

/* Stats */
.lnd-stats {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center;
  background: rgba(255,154,0,.07);
  border-top: 1px solid rgba(255,154,0,.25);
  border-bottom: 1px solid rgba(255,154,0,.25);
  padding: 20px 0; color: #fff;
}
.lnd-stat { text-align: center; padding: 12px 28px; }
.lnd-stat-val { font-size: 26px; font-weight: 900; color: var(--cp-gold); text-shadow: 0 0 16px rgba(255,215,0,.55); }
.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,154,0,.35);
}
.lnd-section-ttl::after {
  content: '';
  display: block; width: 48px; height: 3px; margin: 10px auto 0;
  background: linear-gradient(90deg, var(--cp-green), var(--cp-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,154,0,.18);
  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(--cp-green), var(--cp-gold), var(--cp-green2));
  opacity: 0; transition: opacity .25s;
}
.lnd-card:hover { background: rgba(255,154,0,.08); border-color: rgba(255,154,0,.4); 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,154,0,.14);
  border-radius: 14px; padding: 18px 16px;
  transition: border-color .2s, background .2s;
}
.lnd-step:hover { border-color: rgba(255,154,0,.35); background: rgba(255,154,0,.06); }
.lnd-step-num {
  width: 38px; height: 38px; min-width: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cp-green), var(--cp-green2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: #fff;
  box-shadow: 0 4px 14px rgba(255,154,0,.45);
}
.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,154,0,.14);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: border-color .2s;
}
.lnd-faq-item:hover { border-color: rgba(255,154,0,.35); }
.lnd-faq-item.open { border-color: rgba(255,154,0,.4); background: rgba(255,154,0,.06); }
.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(--cp-gold); 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,154,0,.18);
}
.lnd-footer-logo { font-size: 20px; font-weight: 900; margin-bottom: 16px; color: var(--cp-green); }
.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(--cp-gold); }
.lnd-footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }

/* Hero character bubble */
.lnd-char-wrap {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  width: min(210px, 62vw);
  height: min(210px, 62vw);
  box-shadow:
    0 0 0 3px rgba(255,154,0,.7),
    0 0 0 6px rgba(255,215,0,.2),
    0 12px 48px rgba(255,154,0,.45);
}
.lnd-char-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.lnd-hero-img {
  display: block;
  width: min(200px, 60vw);
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   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: #1a1a2e;
}
.pnl-root::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: url('/assets/game-copa-bg.png') center center / cover no-repeat;
  opacity: 0.40; pointer-events: none;
}
.pnl-root::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(26,26,46,.75) 0%,
    rgba(26,26,46,.45) 50%,
    rgba(26,26,46,.82) 100%);
  pointer-events: none;
}
.pnl-header, .pnl-scroll, .pnl-bottom-nav { position: relative; z-index: 1; }

/* Header */
.pnl-header {
  background: rgba(26,26,46,.94);
  border-bottom: 2px solid var(--cp-green);
  padding: 0 16px; flex-shrink: 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 24px rgba(255,154,0,.35);
  backdrop-filter: blur(16px);
  overflow: visible;
}
.pnl-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; color: #fff;
  overflow: visible;
}
.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(--cp-green); text-shadow: 0 0 16px rgba(255,154,0,.55); }
.pnl-header-right { display: flex; align-items: center; gap: 10px; overflow: visible; }
.pnl-saldo-chip {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--cp-green), var(--cp-green2));
  border-radius: 20px; padding: 5px 14px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,154,0,.4);
  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(--cp-green), var(--cp-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,154,0,.5);
  padding: 0; font-family: inherit;
  transition: transform .15s, box-shadow .15s;
}
.pnl-avatar:hover { transform: scale(1.06); box-shadow: 0 0 0 3px rgba(255,154,0,.28); }
.pnl-avatar-wrap { position: relative; z-index: 200; }

.pnl-profile-drop {
  position: absolute; top: calc(100% + 14px); right: 0;
  min-width: 240px; max-width: min(280px, calc(100vw - 24px));
  background: rgba(26,26,46,.98);
  border: 1px solid rgba(255,154,0,.35);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  overflow: visible;
  animation: ppdDropIn .18s ease;
  z-index: 201;
}
.pnl-profile-drop::before {
  content: '';
  position: absolute; top: -7px; right: 14px;
  width: 12px; height: 12px;
  background: rgba(26,26,46,.98);
  border-left: 1px solid rgba(255,154,0,.35);
  border-top: 1px solid rgba(255,154,0,.35);
  transform: rotate(45deg);
  pointer-events: none;
}
@keyframes ppdDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ppd-header {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 14px 12px;
  border-radius: 14px 14px 0 0;
  background: rgba(26,26,46,.98);
}
.ppd-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cp-green), var(--cp-gold));
  color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ppd-user { min-width: 0; flex: 1; }
.ppd-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.25; }
.ppd-email {
  font-size: 10px; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.35;
  word-break: break-all;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.ppd-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0; flex-shrink: 0; }
.ppd-menu { border-radius: 0 0 14px 14px; overflow: hidden; background: rgba(26,26,46,.98); }
.ppd-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 14px;
  background: transparent; border: none;
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: background .15s, color .15s;
}
.ppd-item:hover { background: rgba(255,154,0,.12); color: #fff; }
.ppd-item-danger:hover { background: rgba(239,68,68,.12); color: #fca5a5; }
.ppd-icon { display: flex; align-items: center; opacity: .85; flex-shrink: 0; }

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

/* Hero saldo */
.pnl-hero {
  background: rgba(26,26,46,.55);
  border-bottom: 1px solid rgba(255,154,0,.28);
  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,154,0,.45); }
.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, var(--cp-green), var(--cp-green2));
  color: #fff; box-shadow: 0 4px 16px rgba(255,154,0,.45);
}
.pnl-action-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,154,0,.62); }
.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,154,0,.12); border-color: rgba(255,154,0,.4); color: var(--cp-green); }

/* Game card */
.pnl-game-card {
  margin: 16px; border-radius: 18px;
  background: rgba(26,26,46,.6);
  border: 1px solid rgba(255,154,0,.4);
  padding: 20px 16px;
  box-shadow: 0 4px 32px rgba(255,154,0,.2);
  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(--cp-green), var(--cp-gold), var(--cp-green2));
}
.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: #39FF14;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #39FF14;
  box-shadow: 0 0 6px #39FF14;
  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,.35); color: var(--cp-gold); }
.pnl-chip-blue { background: rgba(0,61,165,.2); border: 1px solid rgba(0,61,165,.45); color: #6699ff; }
.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,154,0,.1); border: 1.5px solid rgba(255,154,0,.28);
  color: var(--cp-green); 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,154,0,.22); border-color: var(--cp-green); transform: translateY(-1px); }
.pnl-input-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,154,0,.28);
  border-radius: 12px; padding: 0 14px;
  transition: border-color .2s;
}
.pnl-input-wrap:focus-within { border-color: var(--cp-green); box-shadow: 0 0 0 3px rgba(255,154,0,.14); }
.pnl-input-prefix { font-size: 16px; font-weight: 800; color: var(--cp-green); 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(--cp-gold); text-shadow: 0 0 10px rgba(255,215,0,.45); }

/* 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: var(--cp-green); 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, var(--cp-green) 0%, var(--cp-green2) 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(255,154,0,.5);
  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(255,154,0,.68); }
.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,154,0,.38); background: transparent;
  color: var(--cp-green); 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,154,0,.12); border-color: var(--cp-green); }

/* Bottom navigation */
.pnl-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,46,.97);
  border-top: 2px solid var(--cp-green);
  display: flex; align-items: flex-end;
  min-height: 62px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 24px rgba(255,154,0,.22);
  backdrop-filter: blur(16px);
}
.pnl-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 5px; padding: 8px 4px 10px;
  color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px; text-decoration: none;
  transition: color .2s;
}
.pnl-nav-icon-box {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.pnl-nav-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.pnl-nav-item:hover { color: var(--cp-gold); }
.pnl-nav-active { color: var(--cp-green) !important; }
.pnl-nav-active .pnl-nav-icon-box {
  background: rgba(255,154,0,.12);
  border-color: rgba(255,154,0,.35);
}

.pnl-nav-play {
  margin-top: -26px;
  padding-top: 0;
  color: var(--cp-green) !important;
}
.pnl-nav-play-circle {
  width: 54px; height: 54px; border-radius: 50%;
  border: 3px solid var(--cp-green);
  background: rgba(26,26,46,.98);
  box-shadow: 0 0 22px rgba(255,154,0,.55), 0 6px 18px rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 2px;
  transition: box-shadow .2s, transform .2s;
}
.pnl-nav-play:hover .pnl-nav-play-circle {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,154,0,.75), 0 8px 22px rgba(0,0,0,.5);
}
.pnl-nav-play.pnl-nav-active .pnl-nav-play-circle {
  box-shadow: 0 0 32px rgba(255,154,0,.85), 0 0 0 4px rgba(255,154,0,.18);
}
.pnl-nav-play-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.pnl-nav-play-circle.pnl-nav-play-fallback::after {
  content: '🏃';
  font-size: 24px;
  line-height: 1;
}

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin: 0 16px 12px; }
.stat-card {
  background: rgba(26,26,46,.55); border: 1px solid rgba(255,154,0,.32);
  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(--cp-green), var(--cp-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(255,154,0,.1); color: var(--cp-green); border: 1px solid rgba(255,154,0,.28); }
.pnl-info-pink   { background: rgba(220,38,38,.1); color: #f87171; border: 1px solid rgba(220,38,38,.35); }
.pnl-link-box { display: none; }
.pnl-link-input { display: none; }
.pnl-link-copy-btn { display: none; }

/* Affiliate link card */
.aff-link-card {
  background: rgba(26,26,46,.75);
  border: 1.5px solid rgba(255,154,0,.32);
  border-radius: 16px;
  padding: 18px 16px 14px;
  margin: 0 0 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(255,154,0,.12);
}
.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, var(--cp-green), var(--cp-green2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(255,154,0,.4);
}
.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, var(--cp-green), var(--cp-green2));
  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(255,154,0,.38);
  transition: transform .15s, box-shadow .15s;
}
.aff-btn-copy:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,154,0,.55); }
.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(255,215,0,.1);
  border: 1.5px solid rgba(255,215,0,.35);
  color: var(--cp-gold); 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(255,215,0,.2); transform: translateY(-1px); }
.aff-btn-share [data-lucide] { width: 16px; height: 16px; }
.aff-copy-ok {
  display: flex; align-items: center; gap: 6px;
  color: var(--cp-green); font-size: 12px; font-weight: 700;
  margin-top: 10px; padding: 8px 12px;
  background: rgba(255,154,0,.1); border-radius: 8px;
  border: 1px solid rgba(255,154,0,.28);
}
.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,154,0,.12);
  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(--cp-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: #1a1a2e;
  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/game-copa-bg.png') center/cover no-repeat;
  opacity: .45; z-index: 0;
}
.hx-game-bg-page::after {
  content: '';
  position: fixed; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,.65) 0%, rgba(26,26,46,.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,154,0,.3);
  border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 24px 64px rgba(255,154,0,.18), 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,154,0,.55);
}
.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,154,0,.25);
  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(--cp-green); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(255,154,0,.14); }
.lgn-btn {
  width: 100%; padding: 16px; border-radius: 50px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--cp-green) 0%, var(--cp-green2) 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(255,154,0,.5);
  transition: transform .2s, box-shadow .2s; font-family: inherit;
}
.lgn-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,154,0,.68); }
.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(--cp-green); font-weight: 700; cursor: pointer; }

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

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVIDADE 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; }
  .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; }
  .lnd-stat { padding: 10px 16px; }
  .lnd-stat-val { font-size: 20px; }
  .lnd-section { padding: 36px 16px; }
  .lnd-grid { grid-template-columns: 1fr; }
  .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; }
}

@media (max-width: 360px) {
  .lnd-nav-logo-icon { width: 28px; height: 28px; font-size: 22px; }
  .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; }

.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(--cp-green); }
.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(255,154,0,.5), 0 0 0 0 rgba(255,154,0,.55); }
  60%  { box-shadow: 0 6px 20px rgba(255,154,0,.5), 0 0 0 10px rgba(255,154,0,0); }
  100% { box-shadow: 0 6px 20px rgba(255,154,0,.5), 0 0 0 0 rgba(255,154,0,0); }
}
@keyframes sw-nav-deposit-glow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(255,154,0,.35)); }
  50%       { filter: drop-shadow(0 0 8px rgba(255,154,0,.9)); }
}

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

.pnl-nav-deposit-alert svg {
  animation: sw-nav-deposit-glow 2s ease-in-out infinite;
}
.pnl-nav-deposit-alert {
  color: var(--cp-green) !important;
}
.hidden { display: none !important; }

/* ── Depósito v2 (depv2-*) ─────────────────────────────────────── */
.depv2-page { padding: 16px; display: flex; flex-direction: column; gap: 14px; }

.depv2-saldo-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.depv2-saldo-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cp-green), var(--cp-green2));
  color: #fff; font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(255,154,0,.35);
}
.depv2-saldo-info { flex: 1; min-width: 0; }
.depv2-saldo-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: rgba(255,255,255,.45); margin-bottom: 2px;
}
.depv2-saldo-val {
  font-size: 22px; font-weight: 900; color: #ff6b9d;
  line-height: 1.1; text-shadow: 0 0 20px rgba(255,107,157,.25);
}
.depv2-saldo-hint {
  font-size: 10px; color: rgba(255,255,255,.35); text-align: right;
  max-width: 72px; line-height: 1.35;
}

.depv2-main-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px 16px 20px;
}
.depv2-section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: rgba(255,255,255,.45); margin-bottom: 12px;
}
.depv2-presets {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px; margin-bottom: 14px;
  scrollbar-width: none;
}
.depv2-presets::-webkit-scrollbar { display: none; }
.depv2-preset {
  flex: 1; min-width: 62px; max-width: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px 10px;
  background: rgba(0,0,0,.25);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; cursor: pointer;
  font-family: inherit; transition: border-color .15s, box-shadow .15s, transform .1s;
}
.depv2-preset:hover { border-color: rgba(255,154,0,.45); transform: translateY(-1px); }
.depv2-preset.active {
  border-color: var(--cp-green);
  box-shadow: 0 0 0 2px rgba(255,154,0,.25), 0 4px 16px rgba(255,154,0,.25);
  background: rgba(255,154,0,.08);
}
.depv2-badge {
  font-size: 7px; font-weight: 800; letter-spacing: .3px;
  padding: 2px 5px; border-radius: 4px; color: #fff; white-space: nowrap;
}
.depv2-badge-min { background: #e67e22; }
.depv2-badge-hot { background: #e74c3c; }
.depv2-badge-chance { background: #27ae60; }
.depv2-badge-bonus { background: #9b59b6; }
.depv2-preset-val { font-size: 13px; font-weight: 800; color: #fff; }

.depv2-amount-wrap {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 16px; margin-bottom: 6px;
  background: rgba(0,0,0,.3);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.depv2-amount-prefix { font-size: 22px; font-weight: 800; color: var(--cp-green); }
.depv2-amount-input {
  width: 100%; max-width: 140px;
  background: transparent; border: none; outline: none;
  font-size: 28px; font-weight: 900; color: var(--cp-green);
  font-family: inherit; text-align: center;
  -moz-appearance: textfield;
}
.depv2-amount-input::-webkit-outer-spin-button,
.depv2-amount-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.depv2-min-hint {
  font-size: 11px; color: rgba(255,255,255,.35); text-align: center; margin-bottom: 16px;
}

.depv2-bonus-card {
  background: linear-gradient(135deg, rgba(0,120,50,.85), rgba(255,154,0,.75));
  border: 1px solid rgba(0,255,120,.25);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 14px; color: #fff;
}
.depv2-bonus-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 8px;
}
.depv2-bonus-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; opacity: .9;
}
.depv2-toggle {
  display: flex; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0;
}
.depv2-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.depv2-toggle-lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; opacity: .85; }
.depv2-toggle-track {
  width: 36px; height: 20px; border-radius: 20px;
  background: rgba(0,0,0,.3); position: relative; transition: background .2s;
}
.depv2-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.depv2-toggle input:checked + .depv2-toggle-track { background: rgba(255,255,255,.35); }
.depv2-toggle input:checked + .depv2-toggle-track .depv2-toggle-thumb { transform: translateX(16px); }
.depv2-bonus-val { font-size: 26px; font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.depv2-bonus-total {
  font-size: 12px; opacity: .9; display: flex; align-items: center; gap: 6px;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 10px;
}
.depv2-bonus-total [data-lucide] { width: 14px; height: 14px; }

.depv2-cupom-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,107,157,.85); cursor: pointer;
  margin-bottom: 10px; font-weight: 600;
}
.depv2-cupom-toggle [data-lucide] { width: 13px; height: 13px; }
.depv2-cupom-field { margin-bottom: 16px; }
.depv2-cupom-row { display: flex; gap: 8px; }
.depv2-cupom-input {
  flex: 1; padding: 12px 14px;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; color: #fff; font-size: 13px; font-family: inherit;
  text-transform: uppercase; outline: none;
}
.depv2-cupom-input:focus { border-color: rgba(255,154,0,.5); }
.depv2-cupom-btn {
  flex-shrink: 0; padding: 0 16px;
  background: rgba(77,158,255,.2); border: 1px solid rgba(77,158,255,.4);
  color: #4D9EFF; border-radius: 12px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .15s;
}
.depv2-cupom-btn:hover { background: rgba(77,158,255,.3); }
.depv2-submit { margin-top: 4px; width: 100%; }
