/* ═══════════════════════════════════════════════════════════
   COPA RUSH — Design System · Copa do Mundo 2026
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cr-primary: #00FF88;
  --cr-primary-dim: #00cc6a;
  --cr-primary-glow: rgba(0, 255, 136, 0.35);
  --cr-secondary: #FFD700;
  --cr-secondary-dim: #e6c200;
  --cr-accent: #00D4FF;
  --cr-bg-1: #08120F;
  --cr-bg-2: #0D1B16;
  --cr-bg-3: #121E19;
  --cr-text: #FFFFFF;
  --cr-text-muted: #A8C7B5;
  --cr-glass: rgba(13, 27, 22, 0.72);
  --cr-glass-border: rgba(0, 255, 136, 0.22);
  --cr-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --cr-font-body: 'Inter', system-ui, sans-serif;
  --cr-radius: 16px;
  --cr-shadow-glow: 0 0 24px var(--cr-primary-glow), 0 8px 32px rgba(0, 0, 0, 0.45);
  /* Header wallet — 15% acima da base 20px */
  --cr-wallet-h: 23px;
  --cr-wallet-font: 11px;
  --cr-wallet-gap: 6px;
  --cr-wallet-pad-x: 10px;
  /* Saque / resgate — amarelo queimado premium */
  --cr-gold-grad: linear-gradient(135deg, #fde68a 0%, #fbbf24 18%, #f59e0b 45%, #d97706 72%, #b45309 100%);
  --cr-gold-grad-soft: linear-gradient(135deg, #fcd34d 0%, #f59e0b 52%, #d97706 100%);
  --cr-gold-text: #2d1600;
  --cr-gold-accent: #b45309;
  --cr-gold-mid: #d97706;
  --cr-gold-light: #f59e0b;
  --cr-gold-glow: rgba(217, 119, 6, 0.38);
  --cr-gold-border: rgba(255, 228, 160, 0.95);
  --cr-gold-focus: rgba(245, 158, 11, 0.22);
}

/* ── Base ── */
body {
  font-family: var(--cr-font-body) !important;
  background-color: var(--cr-bg-1) !important;
  color: var(--cr-text) !important;
}

.cr-display {
  font-family: var(--cr-font-display);
  letter-spacing: -0.02em;
}

/* ── App Header (premium mobile) ── */
.cr-app-header {
  background: rgba(10, 20, 17, 0.82) !important;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}


.cr-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.18), rgba(0, 255, 136, 0.06));
  border: 1px solid rgba(0, 255, 136, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-brand-name {
  font-family: var(--cr-font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.cr-brand-name span {
  color: var(--cr-primary);
}

.cr-level-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  min-width: 0;
}

.cr-level-mini .lv {
  font-size: 9px;
  font-weight: 700;
  color: var(--cr-text-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.cr-level-mini .bar {
  flex: 1;
  height: 3px;
  min-width: 48px;
  max-width: 72px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.cr-level-mini .bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-accent));
  border-radius: 999px;
  box-shadow: 0 0 8px var(--cr-primary-glow);
}

/* ── Botão Depositar (branco, elegante) ── */
.cr-btn-deposit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px;
  padding: 0 14px;
  height: 30px !important;
  min-height: 30px !important;
  max-height: 30px !important;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 100px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%) !important;
  background-color: #ffffff !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  cursor: pointer !important;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1 !important;
  vertical-align: middle;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cr-btn-deposit:hover {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f4 100%) !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transform: translateY(-1px);
}

.cr-btn-deposit:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.cr-btn-deposit:focus-visible {
  outline: 2px solid rgba(0, 255, 136, 0.55);
  outline-offset: 2px;
}

.cr-btn-deposit .cr-dep-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #0a1411 !important;
  background: rgba(10, 20, 17, 0.06);
  border-radius: 50%;
  line-height: 1 !important;
  flex-shrink: 0;
}

.cr-btn-deposit .label {
  font-family: var(--cr-font-display);
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #0a1411 !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1 !important;
}

/* ── Header wallet group (aposta premium) — sempre lado a lado ── */
.cr-header-wallet {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: var(--cr-wallet-gap) !important;
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: none !important;
}

/* ── Botão Depositar — estilo casa de apostas ── */
#crHeaderDepositBtn.cr-header-deposit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: var(--cr-wallet-h) !important;
  min-height: var(--cr-wallet-h) !important;
  max-height: var(--cr-wallet-h) !important;
  padding: 0 var(--cr-wallet-pad-x) 0 7px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  border-radius: 100px !important;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%) !important;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.12),
    0 2px 10px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  color: #0f172a !important;
  cursor: pointer !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  font-family: var(--cr-font-display) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn .cr-header-deposit-btn__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #fde68a 0%, #f59e0b 100%) !important;
  box-shadow: 0 1px 3px rgba(180, 83, 9, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn .cr-header-deposit-btn__icon i {
  font-size: 9px !important;
  line-height: 1 !important;
  color: #78350f !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn .cr-header-deposit-btn__text {
  font-family: var(--cr-font-display) !important;
  font-size: var(--cr-wallet-font) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%) !important;
  border-color: rgba(255, 215, 0, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(255, 215, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transform: translateY(-1px) !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn:hover .cr-header-deposit-btn__icon {
  background: linear-gradient(145deg, #fcd34d 0%, #f59e0b 100%) !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16) !important;
}

#crHeaderDepositBtn.cr-header-deposit-btn:focus-visible {
  outline: 2px solid rgba(0, 255, 136, 0.55) !important;
  outline-offset: 2px !important;
}

@media (min-width: 400px) {
  :root {
    --cr-wallet-h: 24px;
    --cr-wallet-gap: 7px;
    --cr-wallet-pad-x: 11px;
  }
}

@media (min-width: 640px) {
  :root {
    --cr-wallet-h: 26px;
    --cr-wallet-font: 12px;
    --cr-wallet-pad-x: 12px;
  }

  #crHeaderDepositBtn.cr-header-deposit-btn .cr-header-deposit-btn__icon {
    width: 16px !important;
    height: 16px !important;
  }

  #crHeaderDepositBtn.cr-header-deposit-btn .cr-header-deposit-btn__icon i {
    font-size: 10px !important;
  }
}

/* Chip com moeda 3D — oculto no novo design */
.cr-coin-chip {
  display: none !important;
}

.cr-coin-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.cr-brand-mark-ball {
  padding: 4px;
  background: rgba(255, 255, 255, 0.06) !important;
}

.cr-soccer-ball-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* ── Banner + Lobby overlap zone ── */
.cr-banner-lobby-zone {
  position: relative;
  overflow: visible;
  /* Orelha: um pouco sobre o banner | Pé: só pontinha (1mm) */
  --cr-ear-overlap: clamp(18px, 5.2vw, 32px);
  --cr-foot-overlap: 1mm;
  /* só o vazio/glow abaixo dos pés no PNG (pequeno — não puxar até a coxa) */
  --cr-foot-clearance: clamp(14px, 4vw, 24px);
  /* folga interna para animação subir sem cortar orelha */
  --cr-float-pad: 12px;
}

.cr-banner-zone,
#carouselWrapper {
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

/* ── Lobby stack + JOGAR hero ── */
.cr-lobby-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.cr-mascot-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: visible;
}

/* Painel branco unificado (perfil + ranking) */
.cr-lobby-panel {
  position: relative;
  z-index: 25;
  margin-top: calc(var(--cr-foot-overlap) - var(--cr-foot-clearance));
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.cr-welcome-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}

.cr-welcome-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-welcome-strip__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cr-welcome-strip__body {
  flex: 1;
  min-width: 0;
}

.cr-welcome-strip__title {
  margin: 0 0 6px;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cr-welcome-strip__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
}

.cr-welcome-strip__xp {
  color: #059669;
  font-weight: 700;
}

.cr-welcome-strip__bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.cr-welcome-strip__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #34d399, #059669);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-lobby-panel .cr-lb {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.cr-lobby-panel .cr-lb__head {
  padding-top: 16px;
}

.cr-jogar-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(94vw, 460px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: unset;
  padding: 0;
  overflow: visible;
  z-index: 10;
}

/* Orelhas no banner + reserva interna para o float não cortar */
.cr-jogar-over-banner {
  padding-top: var(--cr-float-pad);
  margin-top: calc(-1 * var(--cr-ear-overlap) - var(--cr-float-pad));
  margin-bottom: 0;
  transform: none;
  overflow: visible;
}

.cr-jogar-btn {
  position: relative;
  z-index: 3;
  background: none;
  border: none;
  padding: 0;
  margin-top: calc(-1 * var(--cr-float-pad));
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
  animation: cr-jogar-float 4s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cr-jogar-btn:hover {
  transform: scale(1.03);
  animation-play-state: paused;
}

.cr-jogar-btn:active {
  transform: scale(0.98);
  animation-play-state: paused;
}

.cr-jogar-img {
  width: 100%;
  max-width: min(94vw, 460px, 800px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 16px 48px rgba(0, 255, 136, 0.35));
  transform: translateZ(0);
  vertical-align: bottom;
  --cr-float-pad: 12px;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

@keyframes cr-jogar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-1 * var(--cr-float-pad))); }
}

.cr-jogar-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cr-jogar-glow-1 {
  width: 70%;
  max-width: 320px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.35) 0%, rgba(0, 255, 136, 0.08) 45%, transparent 70%);
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cr-glow-pulse 3s ease-in-out infinite;
}

.cr-jogar-glow-2 {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cr-glow-pulse 3s ease-in-out infinite 0.5s;
}

.cr-jogar-glow-ring {
  width: 55%;
  max-width: 260px;
  aspect-ratio: 1;
  border: 2px solid rgba(0, 255, 136, 0.25);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.3), inset 0 0 30px rgba(0, 255, 136, 0.1);
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cr-ring-pulse 2.5s ease-in-out infinite;
}

@keyframes cr-glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes cr-ring-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.05); }
}

.cr-jogar-sparkles::before,
.cr-jogar-sparkles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00FF88;
  border-radius: 50%;
  box-shadow:
    -80px -40px 0 rgba(0, 255, 136, 0.6),
    90px -30px 0 rgba(255, 215, 0, 0.5),
    -60px 50px 0 rgba(0, 212, 255, 0.4),
    70px 60px 0 rgba(0, 255, 136, 0.5),
    0 -70px 0 rgba(255, 215, 0, 0.3);
  top: 50%;
  left: 50%;
  animation: cr-sparkle 2s ease-in-out infinite;
}

.cr-jogar-sparkles::after {
  animation-delay: 1s;
  opacity: 0.6;
}

@keyframes cr-sparkle {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 640px) {
  .cr-jogar-hero {
    width: min(94vw, 460px);
  }

  .cr-jogar-img {
    max-width: min(94vw, 400px, 800px);
  }
}

@media (min-width: 640px) {
  .cr-jogar-hero { width: min(88vw, 480px); }
}

/* ── Card de saldo — estilo casa de apostas ── */
.cr-balance-pill {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px;
  padding: 0 var(--cr-wallet-pad-x) 0 7px;
  height: var(--cr-wallet-h) !important;
  min-height: var(--cr-wallet-h) !important;
  max-height: var(--cr-wallet-h) !important;
  flex-shrink: 0;
  width: auto !important;
  max-width: none !important;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(16, 28, 24, 0.96) 0%, rgba(8, 16, 13, 0.98) 100%);
  border: 1px solid rgba(0, 255, 136, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(0, 255, 136, 0.08),
    inset 0 1px 0 rgba(0, 255, 136, 0.07);
  vertical-align: middle;
  overflow: hidden !important;
  line-height: 1 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cr-balance-pill:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(0, 255, 136, 0.14),
    inset 0 1px 0 rgba(0, 255, 136, 0.1);
}

.cr-balance-pill .amount {
  font-family: var(--cr-font-display);
  font-size: var(--cr-wallet-font) !important;
  font-weight: 800;
  color: #00FF88;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  line-height: 1 !important;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
  display: flex !important;
  align-items: center !important;
}

.cr-balance-pill .refresh-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.1);
  color: rgba(0, 255, 136, 0.65);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.35s ease, background 0.2s ease;
  line-height: 1 !important;
}

.cr-balance-pill .refresh-btn i {
  font-size: 9px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
}

.cr-balance-pill .refresh-btn:hover {
  color: #00FF88;
  background: rgba(0, 255, 136, 0.18);
  transform: rotate(180deg);
}

@keyframes cr-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-spin-custom {
  animation: cr-spin 0.8s linear infinite !important;
}

.animate-spin {
  animation: cr-spin 0.8s linear infinite !important;
}

.cr-avatar-btn {
  position: relative;
  width: 32px;
  height: 32px;
  min-height: 0 !important;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.cr-avatar-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.cr-avatar-ring circle.track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2.5;
}

.cr-avatar-ring circle.progress {
  fill: none;
  stroke: url(#crLevelGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 76;
  transition: stroke-dashoffset 0.6s ease;
}

.cr-avatar-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2e28, #0d1b16);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cr-avatar-inner i {
  font-size: 16px;
  color: var(--cr-primary);
}

.cr-logo-text {
  font-family: var(--cr-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  filter: none !important;
}

.cr-logo-text span {
  color: var(--cr-primary);
  -webkit-text-fill-color: var(--cr-primary) !important;
}

/* ── Stadium animated background ── */
.cr-stadium-bg {
  position: fixed;
  inset: 0;
  z-index: -20;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0, 255, 136, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #050d0a 0%, var(--cr-bg-1) 40%, var(--cr-bg-2) 100%);
}

.cr-stadium-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(0, 255, 136, 0.015) 80px,
      rgba(0, 255, 136, 0.015) 81px
    );
  animation: cr-grass-scroll 20s linear infinite;
}

.cr-stadium-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  animation: cr-floodlight 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cr-grass-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-81px); }
}

@keyframes cr-floodlight {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.cr-stadium-lights {
  position: fixed;
  inset: 0;
  z-index: -18;
  pointer-events: none;
  background:
    conic-gradient(from 200deg at 10% 0%, rgba(0, 255, 136, 0.12) 0deg, transparent 40deg),
    conic-gradient(from 340deg at 90% 0%, rgba(0, 212, 255, 0.1) 0deg, transparent 40deg);
  animation: cr-lights-sway 8s ease-in-out infinite alternate;
}

@keyframes cr-lights-sway {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

#particles-js {
  opacity: 0.45 !important;
}

.animated-bg {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.04) 0%,
    rgba(8, 18, 15, 0.95) 30%,
    rgba(0, 212, 255, 0.03) 60%,
    rgba(8, 18, 15, 0.98) 100%
  ) !important;
  background-size: 400% 400% !important;
}

/* ── Header gamer ── */
.cr-header {
  background: var(--cr-glass) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cr-glass-border) !important;
  box-shadow: var(--cr-shadow-glow);
}

.cr-season-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-secondary);
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  padding: 2px 8px;
}

.cr-btn-primary {
  background: linear-gradient(135deg, var(--cr-primary) 0%, var(--cr-primary-dim) 100%) !important;
  color: #08120F !important;
  font-weight: 800 !important;
  border: 1px solid rgba(0, 255, 136, 0.5) !important;
  box-shadow: 0 0 20px var(--cr-primary-glow) !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.cr-btn-primary:hover {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.55) !important;
}

.cr-score-display {
  background: rgba(0, 255, 136, 0.08) !important;
  border: 1px solid var(--cr-glass-border) !important;
  color: var(--cr-primary) !important;
}

/* ── Glass cards ── */
.cr-glass-card {
  background: var(--cr-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--cr-glass-border);
  border-radius: var(--cr-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.cr-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06) 0%, transparent 50%, rgba(0, 212, 255, 0.04) 100%);
  pointer-events: none;
}

.cr-glass-card:hover {
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: 0 0 28px var(--cr-primary-glow), 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* ── Lobby widgets ── */
.cr-lobby-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 8px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .cr-lobby-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    padding: 0 16px;
  }
}

.cr-xp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.cr-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-accent));
  border-radius: 999px;
  box-shadow: 0 0 12px var(--cr-primary-glow);
  animation: cr-xp-pulse 2s ease-in-out infinite;
}

@keyframes cr-xp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.cr-mascot {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 255, 136, 0.5));
  animation: cr-mascot-float 4s ease-in-out infinite;
}

@keyframes cr-mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.cr-mission-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 255, 136, 0.12);
  transition: all 0.25s ease;
}

.cr-mission-item:hover {
  border-color: rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.06);
}

.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  color: var(--cr-secondary);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ── Bottom nav gamer ── */
.cr-bottom-nav {
  background: linear-gradient(180deg, var(--cr-bg-3) 0%, var(--cr-bg-1) 100%) !important;
  border-top: 1px solid var(--cr-glass-border) !important;
  box-shadow: 0 -8px 40px rgba(0, 255, 136, 0.12) !important;
}

.cr-bottom-nav .nav-item-premium span {
  color: var(--cr-text-muted) !important;
  font-family: var(--cr-font-display) !important;
  font-size: 0.58rem !important;
}

.cr-bottom-nav .nav-item-premium:hover span,
.cr-nav-active span {
  color: var(--cr-primary) !important;
  text-shadow: 0 0 12px var(--cr-primary-glow);
}

.cr-nav-center {
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-accent)) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 0 32px var(--cr-primary-glow) !important;
}

/* ── Footer Copa ── */
.cr-footer {
  background: linear-gradient(180deg, var(--cr-bg-2) 0%, var(--cr-bg-1) 100%) !important;
  border-top: 1px solid var(--cr-glass-border) !important;
}

/* ── Rodapé institucional (tema cabeçalho) ── */
.cr-site-footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-site-footer__hero,
.cr-site-footer__seals,
.cr-site-footer__pay,
.cr-site-footer__faq,
.cr-site-footer__rules,
.cr-site-footer__world,
.cr-site-footer__bottom {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(10, 20, 17, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cr-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cr-site-footer__tag {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--cr-text-muted);
  letter-spacing: 0.02em;
}

.cr-site-footer__about {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #b8d4c4;
}

.cr-site-footer__about strong {
  color: var(--cr-primary);
  font-weight: 700;
}

.cr-site-footer__seals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px;
}

@media (min-width: 480px) {
  .cr-site-footer__seals {
    grid-template-columns: 1fr 1fr;
  }
}

.cr-seal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cr-seal:hover {
  background: rgba(0, 255, 136, 0.04);
  border-color: rgba(0, 255, 136, 0.15);
}

.cr-seal__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cr-seal__icon--green { background: rgba(0, 255, 136, 0.12); color: #00ff88; }
.cr-seal__icon--blue { background: rgba(0, 212, 255, 0.12); color: #00d4ff; }
.cr-seal__icon--gold { background: rgba(255, 215, 0, 0.12); color: #ffd700; }
.cr-seal__icon--cyan { background: rgba(34, 211, 238, 0.12); color: #22d3ee; }
.cr-seal__icon--purple { background: rgba(167, 139, 250, 0.12); color: #a78bfa; }

.cr-seal strong {
  display: block;
  font-family: var(--cr-font-display);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.cr-seal span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #8aa896;
}

.cr-site-footer__pay-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b8a78;
  margin-bottom: 10px;
}

.cr-site-footer__pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cr-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #c5ddd0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cr-pay-chip i { font-size: 14px; }

.cr-pay-chip--pix {
  color: #052e1c;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 255, 136, 0.25);
}

.cr-site-footer__section-title {
  margin: 0 0 14px;
  font-family: var(--cr-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cr-site-footer__section-title i {
  color: var(--cr-primary);
  font-size: 18px;
}

.cr-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-faq__item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.cr-faq__item[open] {
  border-color: rgba(0, 255, 136, 0.2);
  background: rgba(0, 255, 136, 0.04);
}

.cr-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}

.cr-faq__item summary::-webkit-details-marker { display: none; }

.cr-faq__item summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--cr-primary);
  border-bottom: 2px solid var(--cr-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  margin-top: -4px;
}

.cr-faq__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.cr-faq__item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #9bb5a8;
}

.cr-rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cr-rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #b0ccc0;
}

.cr-rules-list i {
  color: var(--cr-primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cr-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(10, 20, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cr-site-footer__links a,
.cr-site-footer__links span {
  font-size: 11px;
  font-weight: 700;
  color: var(--cr-text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.cr-site-footer__links span {
  cursor: default;
  pointer-events: none;
}

.cr-site-footer__links a:hover {
  color: var(--cr-primary);
  background: rgba(0, 255, 136, 0.08);
}

.cr-site-footer__world .cr-footer-flags {
  justify-content: flex-start;
  opacity: 1;
  gap: 8px;
}

.cr-site-footer__bottom {
  text-align: center;
  padding: 18px;
}

.cr-site-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cr-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: crStatusPulse 2s ease-in-out infinite;
}

@keyframes crStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.cr-site-footer__copy,
.cr-site-footer__legal {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #6b8a78;
}

.cr-site-footer__legal {
  margin-top: 6px;
  opacity: 0.9;
}

/* ── Barra inferior fixa ── */
.cr-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 14px 10px 8px;
  pointer-events: none;
  overflow: visible;
}

.cr-bottom-bar__wrap {
  max-width: 520px;
  margin: 0 auto;
  pointer-events: auto;
  overflow: visible;
}

.cr-bottom-bar__shell {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 2px;
  padding: 6px 8px 5px;
  border-radius: 18px;
  background: rgba(10, 20, 17, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
}

.cr-bottom-bar__item {
  flex: 1;
  max-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 2px 3px;
  text-decoration: none;
  color: var(--cr-text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cr-bottom-bar__item i {
  font-size: 18px;
}

.cr-bottom-bar__item:hover,
.cr-bottom-bar__item:active {
  color: var(--cr-primary);
  transform: translateY(-1px);
}

.cr-bottom-bar__item--main {
  --cr-main-icon-size: 70px;
  flex: 0 0 52px;
  max-width: 52px;
  height: 0;
  padding: 0;
  margin: 0;
  transform: none;
  color: #fff;
  gap: 0;
  overflow: visible;
  z-index: 2;
  align-self: flex-end;
}

.cr-bottom-bar__item--main:hover,
.cr-bottom-bar__item--main:active {
  transform: none;
  color: #fff;
}

.cr-bottom-bar__item--main:hover .cr-bottom-bar__main-btn,
.cr-bottom-bar__item--main:active .cr-bottom-bar__main-btn {
  transform: translateX(-50%) scale(1.04);
}

.cr-bottom-bar__main-btn {
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--cr-main-icon-size) * 0.1);
  transform: translateX(-50%);
  width: var(--cr-main-icon-size);
  height: var(--cr-main-icon-size);
  min-height: var(--cr-main-icon-size) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  z-index: 5;
  transition: transform 0.2s ease;
}

.cr-bottom-bar__main-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ── Dropdown perfil (moderno) ── */
.cr-profile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(4, 12, 9, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cr-profile-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cr-profile-menu {
  position: fixed;
  top: 72px;
  left: 12px;
  right: 12px;
  width: auto;
  max-width: 360px;
  margin-left: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 200, 120, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 100002;
  max-height: min(78dvh, 520px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cr-profile-menu.cr-profile-menu--portal {
  position: fixed !important;
  z-index: 100002 !important;
  margin-left: 0;
}

@media (min-width: 641px) {
  .cr-profile-menu:not(.cr-profile-menu--portal) {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: 300px;
    max-width: 300px;
    transform: translateY(6px) scale(0.98);
  }
}

.cr-profile-menu--open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

#profileToggleBtn,
.cr-avatar-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cr-avatar-btn--open {
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.35);
}

#profileDropdownContainer {
  position: relative;
  z-index: 200;
}


.cr-profile-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cr-profile-menu .ripple-effect,
.cr-profile-menu .progress-spinner {
  display: none !important;
}

.cr-profile-menu__item.progress-button,
.cr-profile-menu__item.click-ripple,
.cr-profile-menu__cta.progress-button,
.cr-profile-menu__cta.click-ripple {
  overflow: visible;
}

.cr-profile-menu__header {
  padding: 16px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  border-bottom: 1px solid #eef2f0;
}

.cr-profile-menu__user-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cr-profile-menu__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cr-profile-menu__name {
  margin: 0 0 2px;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.cr-profile-menu__meta {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.cr-profile-menu__vip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.12);
  color: #047857;
  font-size: 11px;
  font-weight: 700;
}

.cr-profile-menu__cta {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  cursor: pointer;
}

.cr-profile-menu__nav {
  padding: 8px;
  background: #fff;
}

.cr-profile-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.cr-profile-menu__item i,
.cr-profile-menu__item svg {
  flex-shrink: 0;
  color: #059669;
  font-size: 18px;
  width: 20px;
  height: 20px;
}

.cr-profile-menu__item:hover,
.cr-profile-menu__item:active {
  background: rgba(0, 255, 136, 0.08);
  color: #0f172a;
}

.cr-profile-menu__item--danger {
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
  padding-top: 14px;
  color: #64748b;
}

.cr-profile-menu .bg-white.p-4 {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.cr-profile-menu .py-2.bg-white {
  background: transparent !important;
  padding: 0 !important;
}

.cr-footer-flags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.7;
}

.cr-footer-flags img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* ── Modals ── */
.cr-modal {
  border-color: var(--cr-glass-border) !important;
  background: linear-gradient(145deg, var(--cr-bg-3), var(--cr-bg-2)) !important;
}

.cr-modal-title {
  font-family: var(--cr-font-display);
  color: var(--cr-primary);
}

.cr-security-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  font-size: 0.7rem;
  color: var(--cr-text-muted);
}

.cr-security-seal i {
  color: var(--cr-primary);
}

/* ── Global color overrides (legacy orange → Copa Rush) ── */
.text-\[\#f59e0b\],
.text-\[\#ff8c61\] {
  color: var(--cr-primary) !important;
}

.bg-\[\#f59e0b\],
.from-\[\#f59e0b\] {
  --tw-gradient-from: var(--cr-primary) !important;
}

.to-\[\#b45309\],
.via-\[\#d97706\] {
  --tw-gradient-to: var(--cr-primary-dim) !important;
}

.border-\[\#f59e0b\] {
  border-color: var(--cr-glass-border) !important;
}

/* ── Confetti (conquistas) ── */
.cr-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}

.cr-confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -10px;
  animation: cr-confetti-fall 3s ease-in forwards;
}

@keyframes cr-confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ── Leaderboard — Top 10 da Semana (estilo app troféu) ── */
.cr-lb {
  position: relative;
  z-index: 10;
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  font-family: var(--cr-font-display);
  color: #111827;
}

.cr-lobby-panel > .cr-lb,
.cr-lobby-panel > #crRankingBr.cr-lb {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.cr-lb, .cr-lb * { box-sizing: border-box; }
.cr-lb * { max-width: none; }

.cr-lb__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 0;
}

.cr-lb__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cr-lb__flag { font-size: 14px; line-height: 1; }

.cr-lb__title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.15;
}

.cr-lb__week-pill {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: -0.01em;
}

/* ── Pódio ── */
.cr-lb__podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: flex-end;
  gap: 8px;
  padding: 24px 16px 8px;
  margin-top: 8px;
}

.cr-lb__pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-lb--ready .cr-lb__pod { opacity: 1; transform: translateY(0); }
.cr-lb--ready .cr-lb__pod--2 { transition-delay: 0.05s; }
.cr-lb--ready .cr-lb__pod--1 { transition-delay: 0.12s; }
.cr-lb--ready .cr-lb__pod--3 { transition-delay: 0.18s; }

.cr-lb__pod-rank {
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cr-lb__pod--1 .cr-lb__pod-rank {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
}

.cr-lb__pod--2 .cr-lb__pod-rank {
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  color: #fff;
}

.cr-lb__pod--3 .cr-lb__pod-rank {
  background: linear-gradient(135deg, #fdba74, #ea580c);
  color: #fff;
}

.cr-lb__pod-avatar {
  position: relative;
  margin-bottom: 8px;
}

.cr-lb__pod-avatar img {
  border-radius: 50%;
  object-fit: cover;
  background: #f3f4f6;
  display: block;
}

.cr-lb__pod--1 .cr-lb__pod-avatar img {
  width: 72px;
  height: 72px;
  border: 3px solid #fbbf24;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.cr-lb__pod--2 .cr-lb__pod-avatar img,
.cr-lb__pod--3 .cr-lb__pod-avatar img {
  width: 56px;
  height: 56px;
  border: 2px solid #e5e7eb;
}

.cr-lb__pod--2 .cr-lb__pod-avatar img { border-color: #cbd5e1; }
.cr-lb__pod--3 .cr-lb__pod-avatar img { border-color: #fdba74; }

.cr-lb__pod-name {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cr-lb__pod-val {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.02em;
}

.cr-lb__pod-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-lb--ready .cr-lb__pod-bar { transform: scaleY(1); }

.cr-lb__pod--1 .cr-lb__pod-bar {
  height: 56px;
  background: linear-gradient(180deg, #fef3c7, #fde68a);
  transition-delay: 0.2s;
}

.cr-lb__pod--2 .cr-lb__pod-bar {
  height: 40px;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
  transition-delay: 0.15s;
}

.cr-lb__pod--3 .cr-lb__pod-bar {
  height: 32px;
  background: linear-gradient(180deg, #ffedd5, #fed7aa);
  transition-delay: 0.25s;
}

.cr-lb__delta {
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid #fff;
}

.cr-lb__delta--up { background: #dcfce7; color: #16a34a; }
.cr-lb__delta--down { background: #fee2e2; color: #dc2626; }

/* ── Lista 4–10 ── */
.cr-lb__list {
  list-style: none;
  margin: 0;
  padding: 8px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cr-lb__item {
  display: grid;
  grid-template-columns: 28px 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 14px;
  transition: background 0.15s ease;
}

.cr-lb__item:hover { background: #f9fafb; }

.cr-lb__item-rank {
  font-size: 14px;
  font-weight: 700;
  color: #9ca3af;
  text-align: center;
}

.cr-lb__item-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f4f6;
  display: block;
}

.cr-lb__item-mid {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.cr-lb__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-lb__item-flag { font-size: 12px; flex-shrink: 0; }

.cr-lb__item-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  min-width: 120px;
}

.cr-lb__delta--row {
  position: static;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: none;
  font-size: 10px;
}

.cr-lb__delta--row.cr-lb__delta--flat {
  visibility: hidden;
  opacity: 0;
}

.cr-lb__item-val {
  font-size: 13px;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
  letter-spacing: -0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ── Catálogo de Jogos (premium) ── */
.cr-games-section {
  position: relative;
  z-index: 5;
}

.cr-games-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.cr-games-section__title {
  margin: 0;
  font-family: var(--cr-font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.cr-games-section__sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--cr-text-muted);
}

.cr-games-section__count {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a7f3d0;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 8px;
  padding: 6px 10px;
  flex-shrink: 0;
}

.cr-games-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-game-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  transition-delay: calc(var(--i, 0) * 100ms);
}

.cr-games-section.is-visible .cr-game-card {
  opacity: 1;
  transform: translateY(0);
}

.cr-game-card:hover {
  box-shadow:
    0 0 0 1px rgba(0, 255, 136, 0.15),
    0 20px 56px rgba(0, 0, 0, 0.22);
}

.cr-game-card__cover {
  background: #060e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 6px;
}

.cr-game-card__cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* Feed compacto de ganhos */
.cr-game-feed {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  background: #f4f6f8;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
  overflow: hidden;
}

.cr-game-feed__pulse {
  flex-shrink: 0;
  color: #22c55e;
  font-size: 8px;
  animation: cr-feed-pulse 1.6s ease-in-out infinite;
}

@keyframes cr-feed-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.cr-game-feed__viewport {
  flex: 1;
  min-width: 0;
  height: 18px;
  position: relative;
  overflow: hidden;
}

.cr-game-feed__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cr-game-feed__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.cr-game-feed__slide.is-exit {
  opacity: 0;
  transform: translateY(-6px);
}

.cr-game-feed__flag {
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.cr-game-feed__ico {
  font-size: 12px;
  color: #059669;
  flex-shrink: 0;
}

.cr-game-feed__text b {
  font-weight: 700;
  color: #111827;
}

.cr-game-feed__text strong {
  font-weight: 800;
  color: #059669;
}

.cr-game-card__body {
  padding: 14px 16px 16px;
}

.cr-game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.cr-game-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  background: #ecfdf5;
  border-radius: 6px;
  padding: 3px 8px;
}

.cr-game-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 10px;
}

.cr-game-card__stars i {
  font-size: 11px;
  color: #fbbf24;
}

.cr-game-card__stars span {
  margin-left: 4px;
  font-weight: 700;
  color: #9ca3af;
}

.cr-game-card__name {
  margin: 0 0 6px;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cr-game-card__desc {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #64748b;
}

.cr-game-card__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 0 18px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: #0f172a;
  color: #fff;
  font-family: var(--cr-font-display);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.cr-game-card__btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.cr-game-card__btn:active {
  transform: scale(0.99);
}

.cr-game-card__btn-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cr-game-card__btn-icon {
  width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #052e1c;
  font-size: 18px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .cr-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ── Hover universal buttons ── */
button, .cr-glass-card, a.nav-item-premium {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ══════════════════════════════════════════
   GAME LAUNCHER — simulação de abertura
   ══════════════════════════════════════════ */
.cr-gl {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cr-gl.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cr-gl__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.82);
  backdrop-filter: blur(8px);
}

.cr-gl__pitch {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 255, 136, 0.08), transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #0d2818 45%, #0a3d22 100%);
}

.cr-gl__pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.9) 49.5%, rgba(255,255,255,0.9) 50.5%, transparent 50.5%),
    radial-gradient(circle at 50% 55%, transparent 58px, rgba(255,255,255,0.85) 59px, rgba(255,255,255,0.85) 61px, transparent 62px);
  background-size: 100% 100%;
  animation: crGlPitchPulse 4s ease-in-out infinite;
}

.cr-gl__pitch-glow {
  position: absolute;
  width: 200%;
  height: 40%;
  left: -50%;
  bottom: -10%;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.15), transparent 70%);
  animation: crGlGlowMove 6s ease-in-out infinite;
}

@keyframes crGlPitchPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.16; }
}

@keyframes crGlGlowMove {
  0%, 100% { transform: translateX(-5%); }
  50% { transform: translateX(5%); }
}

.cr-gl__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 255, 136, 0.08);
  overflow: hidden;
  animation: crGlPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes crGlPanelIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cr-gl__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cr-gl__close:hover {
  background: rgba(15, 23, 42, 0.14);
}

.cr-gl__hero {
  display: flex;
  gap: 14px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.cr-gl__banner-wrap {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.cr-gl__banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cr-gl__hero-info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.cr-gl__tag {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a86b;
}

.cr-gl__title {
  margin: 0 0 6px;
  font-family: var(--cr-font-display);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cr-gl__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

.cr-gl__progress {
  padding: 18px 20px 22px;
  transition: opacity 0.3s ease;
}

.cr-gl__progress--hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.cr-gl__progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 12px;
}

.cr-gl__progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.cr-gl__step {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cr-gl__spin {
  animation: crGlSpin 0.9s linear infinite;
}

@keyframes crGlSpin {
  to { transform: rotate(360deg); }
}

.cr-gl__result {
  padding: 8px 20px 24px;
  text-align: center;
  animation: crGlResultIn 0.4s ease;
}

.cr-gl__result--hidden {
  display: none;
}

@keyframes crGlResultIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cr-gl__result-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.cr-gl__result-icon--warn {
  background: #fef3c7;
  color: #d97706;
}

.cr-gl__result-icon--err {
  background: #fee2e2;
  color: #dc2626;
}

.cr-gl__result-icon--queue {
  background: #e0f2fe;
  color: #0284c7;
}

.cr-gl__result-icon--promo {
  background: linear-gradient(145deg, #fffbeb, #fde68a);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

/* Aviso saldo promocional — layout simples, cores fixas no painel claro */
.cr-gl__result.cr-gl__result--promo {
  padding: 12px 20px 22px;
}

.cr-gl__result.cr-gl__result--promo,
.cr-gl__result.cr-gl__result--promo * {
  -webkit-text-fill-color: unset;
}

.cr-gl__promo-simple {
  text-align: center;
}

.cr-gl__promo-simple-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fcd34d;
}

.cr-gl__promo-simple-title {
  margin: 0 0 10px;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.cr-gl__promo-simple-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.cr-gl__promo-simple-text strong {
  color: #0f172a;
  font-weight: 700;
}

.cr-gl__result.cr-gl__result--promo .cr-gl__btn--ghost {
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.cr-gl__queue-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12px;
  line-height: 1.5;
}

.cr-gl__queue-notice i {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #ea580c;
}

.cr-gl__queue-notice strong {
  color: #7c2d12;
}

.cr-gl__queue-box {
  margin: 0 0 14px;
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
}

.cr-gl__queue-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.cr-gl__queue-number {
  margin: 0 0 10px;
  font-family: var(--cr-font-display);
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.3s ease;
}

.cr-gl__queue-number--pulse {
  animation: crGlQueuePulse 0.45s ease;
}

@keyframes crGlQueuePulse {
  0% { transform: scale(1); color: #0f172a; }
  40% { transform: scale(1.04); color: #0284c7; }
  100% { transform: scale(1); color: #0f172a; }
}

.cr-gl__queue-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.cr-gl__queue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00cc6a;
  box-shadow: 0 0 0 0 rgba(0, 204, 106, 0.5);
  animation: crGlQueueDot 1.6s ease-in-out infinite;
}

@keyframes crGlQueueDot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 204, 106, 0.45);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 204, 106, 0);
    opacity: 0.65;
  }
}

.cr-gl__queue-hint {
  margin: 0 0 16px;
  font-size: 12px;
  color: #94a3b8;
  min-height: 18px;
}

.cr-gl__result-title {
  margin: 0 0 8px;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.cr-gl__result-msg {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.cr-gl__result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cr-gl__btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  font-family: var(--cr-font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cr-gl__btn--primary {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #052e1c;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.35);
}

.cr-gl__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.45);
}

.cr-gl__btn--ghost {
  background: #f1f5f9;
  color: #475569;
}

.cr-gl__btn--ghost:hover {
  background: #e2e8f0;
}

/* ══════════════════════════════════════════
   MODAL DEPÓSITO — compacto estilo app
   ══════════════════════════════════════════ */
.cr-deposit-modal {
  -webkit-tap-highlight-color: transparent;
}

.cr-deposit-modal__card {
  border-radius: 22px;
  overflow: hidden;
  background: #0c1612;
  border: 1px solid rgba(0, 255, 136, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cr-deposit-modal__banner-wrap {
  position: relative;
  line-height: 0;
  background: #06100c;
}

.cr-deposit-modal__banner {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  aspect-ratio: 720 / 400;
}

.cr-deposit-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.cr-deposit-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.05);
}

.cr-deposit-modal__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cr-deposit-modal__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

@media (min-width: 360px) {
  .cr-deposit-modal__chips {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cr-deposit-modal__chips::-webkit-scrollbar {
  display: none;
}

.cr-deposit-modal .value-btn {
  width: 100%;
  min-width: 0;
  height: 36px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #c5ddd0;
  font-family: var(--cr-font-display);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cr-deposit-modal .value-btn:hover {
  border-color: rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.08);
}

.cr-deposit-modal .value-btn.selected,
.cr-deposit-modal .value-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, #00ff88, #00cc6a) !important;
  border-color: transparent !important;
  color: #052e1c !important;
  box-shadow: 0 4px 14px rgba(0, 255, 136, 0.4) !important;
  transform: scale(1.02);
}

.cr-deposit-modal .value-btn.value-selected {
  animation: crChipPop 0.25s ease;
}

@keyframes crChipPop {
  50% { transform: scale(0.94); }
  100% { transform: scale(1); }
}

.cr-deposit-modal__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9a88;
}

.cr-deposit-modal__input-wrap {
  position: relative;
}

.cr-deposit-modal__prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--cr-primary);
  pointer-events: none;
}

.cr-deposit-modal__input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--cr-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cr-deposit-modal__input:focus {
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.12);
}

.cr-deposit-modal__input::placeholder {
  color: #4a6358;
  font-weight: 600;
}

.cr-deposit-modal__input--sm {
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.cr-deposit-modal__hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: #6b8a78;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cr-deposit-modal__hint i {
  color: var(--cr-primary);
  font-size: 13px;
}

.cr-deposit-modal__cupom {
  margin-top: -4px;
}

.cr-deposit-modal__submit {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #052e1c;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cr-deposit-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 255, 136, 0.45);
}

.cr-deposit-modal__submit:active {
  transform: scale(0.98);
}

.cr-deposit-modal__submit.btn-loading {
  opacity: 0.85;
  pointer-events: none;
}

.cr-deposit-modal__spin {
  animation: crGlSpin 0.8s linear infinite;
}

.cr-deposit-modal__seals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 2px;
}

.cr-deposit-modal__seals span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #6b8a78;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cr-deposit-modal__seals i {
  font-size: 12px;
  color: var(--cr-primary);
}

#modalContent {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ══════════════════════════════════════════
   MODAL PIX — QR + copia e cola
   ══════════════════════════════════════════ */
.cr-pix-modal {
  -webkit-tap-highlight-color: transparent;
}

.cr-pix-modal.show .cr-pix-modal__content {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.cr-pix-modal__card {
  position: relative;
  background: linear-gradient(165deg, #0d1a12 0%, #071008 100%);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 48px -12px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(0, 255, 136, 0.08);
}

.cr-pix-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cr-pix-modal__close:hover {
  color: #fff;
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.12);
}

.cr-pix-modal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 36px;
}

.cr-pix-modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.08));
  border: 1px solid rgba(0, 255, 136, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-primary, #00ff88);
  font-size: 22px;
}

.cr-pix-modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b8a78;
  margin: 0 0 2px;
}

.cr-pix-modal__valor {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.cr-pix-modal__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.cr-pix-modal__timer i {
  color: var(--cr-primary, #00ff88);
  font-size: 14px;
}

.cr-pix-modal__timer strong {
  color: var(--cr-primary, #00ff88);
  font-variant-numeric: tabular-nums;
}

.cr-pix-modal__timer strong.is-urgent {
  color: #f87171;
}

.cr-pix-modal__qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.cr-pix-modal__qr-frame {
  position: relative;
  width: 188px;
  height: 188px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15);
  border: 2px solid rgba(0, 255, 136, 0.25);
  box-sizing: border-box;
}

.cr-pix-modal__qr-host,
.cr-pix-modal__qr--img {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 168px;
  height: 168px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.cr-pix-modal__qr-host.is-visible,
.cr-pix-modal__qr--img.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-pix-modal__qr-host img,
.cr-pix-modal__qr-host canvas {
  display: block !important;
  width: 168px !important;
  height: 168px !important;
}

.cr-pix-modal__qr--img.is-visible {
  object-fit: contain;
}

.cr-pix-modal__qr-host canvas ~ img {
  display: none !important;
}

.cr-pix-modal__instrucao {
  font-size: 12px;
  line-height: 1.45;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 12px;
  padding: 0 4px;
}

.cr-pix-modal__code-wrap {
  position: relative;
  margin-bottom: 10px;
}

.cr-pix-modal__code {
  width: 100%;
  box-sizing: border-box;
  font-size: 10px;
  font-family: ui-monospace, monospace;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 40px 10px 10px;
  line-height: 1.35;
  word-break: break-all;
}

.cr-pix-modal__code-copy {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 255, 136, 0.12);
  color: var(--cr-primary, #00ff88);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-pix-modal__copy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #041008;
  cursor: pointer;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-bottom: 12px;
}

.cr-pix-modal__copy-btn:active {
  transform: scale(0.98);
}

.cr-pix-modal__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #6b8a78;
  padding: 10px;
  background: rgba(0, 255, 136, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.12);
  margin-bottom: 8px;
}

.cr-pix-modal__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cr-primary, #00ff88);
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
  animation: crPixPulse 1.8s ease infinite;
  flex-shrink: 0;
}

.cr-pix-modal__pulse.is-urgent,
.cr-pix-modal__pulse.is-expired {
  background: #f87171;
  animation: none;
}

.cr-pix-modal__pulse.is-paid {
  background: #00ff88;
  animation: none;
}

@keyframes crPixPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.cr-pix-modal__foot {
  font-size: 10px;
  color: #64748b;
  text-align: center;
  margin: 0;
}

.cr-pix-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -12px);
  z-index: 100001;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #041008;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.35);
}

.cr-pix-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ══════════════════════════════════════════
   CARTEIRA — app bancário
   ══════════════════════════════════════════ */
.cr-wallet-modal {
  -webkit-tap-highlight-color: transparent;
  color: #0f172a;
}

.cr-wallet-modal button.progress-button .progress-spinner {
  display: none !important;
}

.cr-wallet-modal__content {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 92vh;
}

.cr-wallet-modal__card {
  border-radius: 24px;
  overflow: hidden;
  background: #f4f6f5;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 32px 64px -12px rgba(0, 0, 0, 0.45);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.cr-wallet-modal__banner-wrap {
  position: relative;
  line-height: 0;
  flex-shrink: 0;
}

.cr-wallet-modal__banner {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 720 / 400;
  object-fit: contain;
  background: #06100c;
}

.cr-wallet-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cr-wallet-modal__close:hover {
  background: rgba(15, 23, 42, 0.65);
  transform: scale(1.05);
}

.cr-wallet-modal__body {
  padding: 18px 18px 16px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.cr-wallet-balance {
  position: relative;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c2e22 0%, #0f3d2e 42%, #0a2820 100%);
  box-shadow:
    0 12px 32px -8px rgba(12, 46, 34, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cr-wallet-balance__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 200, 120, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.cr-wallet-balance__inner {
  position: relative;
  z-index: 1;
  padding: 20px 20px 22px;
}

.cr-wallet-balance__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cr-wallet-balance__label-wrap {
  min-width: 0;
}

.cr-wallet-balance__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.cr-wallet-balance__badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6ee7b7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.cr-wallet-balance__value {
  margin: 0;
  font-family: var(--cr-font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.cr-wallet-balance__currency {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 4px;
  vertical-align: 0.12em;
}

.cr-wallet-balance__user {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.cr-wallet-withdraw-cta {
  width: 100%;
  height: 52px;
  border: 2px solid var(--cr-gold-border);
  border-radius: 16px;
  background: var(--cr-gold-grad);
  color: var(--cr-gold-text);
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 18px;
  box-shadow:
    0 4px 18px var(--cr-gold-glow),
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -2px 8px rgba(180, 83, 9, 0.22) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cr-wallet-withdraw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    transparent 100%
  );
  pointer-events: none;
}

.cr-wallet-withdraw-cta i {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cr-wallet-withdraw-cta span {
  position: relative;
  z-index: 1;
}

.cr-wallet-withdraw-cta:hover {
  filter: brightness(1.05) saturate(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px rgba(217, 119, 6, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.32) inset,
    0 -2px 8px rgba(180, 83, 9, 0.24) inset;
}

.cr-wallet-withdraw-cta:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow:
    0 2px 12px rgba(180, 83, 9, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.cr-wallet-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.cr-wallet-tabs__btn {
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 11px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.22s ease;
}

.cr-wallet-tabs__btn i {
  font-size: 14px;
  opacity: 0.7;
}

.cr-wallet-tabs__btn.is-active {
  background: rgba(0, 200, 120, 0.12);
  border-color: rgba(0, 200, 120, 0.2);
  color: #047857;
  box-shadow: none;
}

.cr-wallet-tabs__btn.is-active i {
  opacity: 1;
  color: #059669;
}

.cr-wallet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.025);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.cr-wallet-list::-webkit-scrollbar {
  width: 4px;
}

.cr-wallet-list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.12);
  border-radius: 4px;
}

.cr-wallet-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  min-height: 72px;
}

.cr-wallet-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 0 3px 3px 0;
}

.cr-wallet-row--in::before {
  background: linear-gradient(180deg, #34d399, #059669);
}

.cr-wallet-row--out::before {
  background: linear-gradient(180deg, #fbbf24, #d97706);
}

.cr-wallet-row--bonus::before {
  background: linear-gradient(180deg, #fcd34d, #d97706);
}

.cr-wallet-row--bonus .cr-wallet-row__icon {
  background: linear-gradient(145deg, #fffbeb, #fde68a);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.cr-wallet-row--bonus .cr-wallet-row__info strong {
  color: #b45309;
}

.cr-wallet-row__title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr-wallet-row:hover {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.cr-wallet-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cr-wallet-row--in .cr-wallet-row__icon {
  background: linear-gradient(145deg, #ecfdf5, #a7f3d0);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.cr-wallet-row--out .cr-wallet-row__icon {
  background: linear-gradient(145deg, #fffbeb, #fde68a);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.cr-wallet-row__info {
  min-width: 0;
}

.cr-wallet-row__info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2px;
}

.cr-wallet-row--in .cr-wallet-row__info strong {
  color: #047857;
}

.cr-wallet-row--out .cr-wallet-row__info strong {
  color: #0f172a;
}

.cr-wallet-row__info span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.cr-wallet-row__date {
  margin-top: 1px;
}

.cr-wallet-row__pix {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.12);
  max-width: calc(100% - 4px);
}

.cr-wallet-row__pix i {
  font-size: 12px;
  color: var(--cr-gold-mid);
  flex-shrink: 0;
}

.cr-wallet-row__pix-type {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cr-gold-accent);
  flex-shrink: 0;
}

.cr-wallet-row__pix-key {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.cr-wallet-row__status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cr-wallet-row__status--ok {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.cr-wallet-row__status--pending {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.cr-wallet-row__status--bonus {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.cr-wallet-empty {
  text-align: center;
  padding: 32px 20px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 12px;
}

.cr-wallet-empty i {
  font-size: 36px;
  display: block;
  margin: 0 auto 12px;
  opacity: 0.3;
  color: #64748b;
}

.cr-wallet-empty p {
  margin: 0;
}

.cr-wallet-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 8px 4px;
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.cr-wallet-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cr-wallet-trust i {
  color: #0d9488;
  font-size: 12px;
}

/* ── Saque por etapas ── */
.cr-withdraw {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  background: #faf8f5;
}

.cr-withdraw__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #e8eeeb;
}

.cr-withdraw__back {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #e8eeeb;
  color: #0f172a;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-withdraw__eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cr-gold-mid);
}

.cr-withdraw__title {
  margin: 2px 0 0;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.cr-withdraw__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px 0;
  gap: 0;
}

.cr-withdraw__step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.cr-withdraw__step-dot.is-active {
  background: var(--cr-gold-light);
}

.cr-withdraw__step-dot.is-current {
  background: var(--cr-gold-mid);
  box-shadow: 0 0 0 4px var(--cr-gold-focus);
  transform: scale(1.15);
}

.cr-withdraw__step-line {
  width: 48px;
  height: 2px;
  background: #e2e8f0;
}

.cr-withdraw__form {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.cr-withdraw__panel {
  display: none;
}

.cr-withdraw__panel.is-active {
  display: block;
  animation: crWithdrawIn 0.3s ease;
}

@keyframes crWithdrawIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.cr-withdraw__panel-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cr-withdraw__hint {
  margin: 0 0 12px;
  font-size: 13px;
  color: #64748b;
}

.cr-withdraw__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.cr-withdraw-chip--wide {
  grid-column: span 2;
}

.cr-withdraw-chip--full {
  grid-column: 1 / -1;
}

.cr-withdraw-chip {
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a !important;
  cursor: pointer;
}

.cr-withdraw-chip.selected {
  background: var(--cr-gold-grad-soft);
  border-color: rgba(180, 83, 9, 0.35);
  color: var(--cr-gold-text) !important;
  box-shadow:
    0 2px 10px rgba(217, 119, 6, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cr-withdraw-chip.loading,
.cr-withdraw-chip.progress-button.loading {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.cr-withdraw__field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cr-withdraw__input-wrap {
  position: relative;
  margin-bottom: 12px;
}

.cr-withdraw__input-wrap > span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--cr-gold-mid);
}

.cr-withdraw__input-wrap--plain {
  display: flex;
  gap: 8px;
}

.cr-withdraw__input {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff !important;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  caret-color: var(--cr-gold-mid);
  color-scheme: light;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  padding: 0 14px 0 44px;
  outline: none;
  opacity: 1 !important;
}

#crWithdrawValor {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

.cr-withdraw__input--plain {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.cr-withdraw__input::selection,
.cr-withdraw__input--plain::selection {
  background: #fde68a;
  color: var(--cr-gold-text) !important;
  -webkit-text-fill-color: var(--cr-gold-text) !important;
}

.cr-withdraw__input:focus {
  border-color: var(--cr-gold-light);
  box-shadow: 0 0 0 3px var(--cr-gold-focus);
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

.cr-withdraw__select-wrap {
  position: relative;
  margin-bottom: 14px;
}

.cr-withdraw__select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
}

.cr-withdraw__select {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 0 40px 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a !important;
  appearance: none;
}

.cr-withdraw__paste {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #e8eeeb;
  color: #0f172a;
  cursor: pointer;
  flex-shrink: 0;
}

.cr-withdraw__note {
  margin: 0 0 16px;
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cr-withdraw__summary {
  background: #fff;
  border: 1px solid #e8eeeb;
  border-radius: 14px;
  padding: 14px;
  margin: 14px 0 12px;
}

.cr-withdraw__summary--compact .cr-withdraw__summary-row {
  border-bottom: none;
  padding: 4px 0;
}

.cr-withdraw__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}

.cr-withdraw__summary-row:last-child {
  border-bottom: none;
}

.cr-withdraw__summary-row span {
  color: #94a3b8;
}

.cr-withdraw__summary-row strong {
  color: #0f172a;
  text-align: right;
  word-break: break-all;
}

.cr-withdraw__legal {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.5;
  color: #94a3b8;
}

.cr-withdraw__next,
.cr-withdraw__submit {
  width: 100%;
  height: 48px;
  border: 2px solid var(--cr-gold-border);
  border-radius: 14px;
  background: var(--cr-gold-grad);
  color: var(--cr-gold-text);
  font-family: var(--cr-font-display);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px var(--cr-gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cr-withdraw__next::before,
.cr-withdraw__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, transparent 48%);
  pointer-events: none;
}

.cr-withdraw__next:hover,
.cr-withdraw__submit:hover {
  filter: brightness(1.04) saturate(1.03);
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(217, 119, 6, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cr-withdraw__next:active,
.cr-withdraw__submit:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.cr-withdraw__actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}

.cr-withdraw__ghost {
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
}

.text-green { color: #16a34a !important; }

/* ══════════════════════════════════════════
   MODAL TAXA DE SAQUE — branco + verde
   ══════════════════════════════════════════ */
.cr-taxa-modal {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cr-taxa-modal:not(.hidden) {
  display: flex;
}

.cr-taxa-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.cr-taxa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 12, 0.72);
  backdrop-filter: blur(10px);
}

.cr-taxa-modal__scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-taxa-modal.is-visible .cr-taxa-modal__scroll {
  transform: scale(1) translateY(0);
}

.cr-taxa-modal__card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.45);
}

.cr-taxa-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #eef2f0;
  background: linear-gradient(180deg, #f8fdfb 0%, #fff 100%);
}

.cr-taxa-modal__seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #059669;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.cr-taxa-modal__header-text {
  flex: 1;
  min-width: 0;
}

.cr-taxa-modal__eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
}

.cr-taxa-modal__title {
  margin: 0;
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.cr-taxa-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid #e8eeeb;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-taxa-modal__body {
  padding: 18px 20px 22px;
}

.cr-taxa-modal__desc {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.cr-taxa-modal__price {
  text-align: center;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.cr-taxa-modal__price--compact {
  padding: 14px;
  margin-bottom: 14px;
}

.cr-taxa-modal__price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}

.cr-taxa-modal__price-value {
  display: block;
  font-family: var(--cr-font-display);
  font-size: 32px;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.03em;
}

.cr-taxa-modal__price-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #059669;
  font-weight: 600;
}

.cr-taxa-modal__benefits {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f8faf9;
  border: 1px solid #eef2f0;
}

.cr-taxa-modal__benefits-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cr-taxa-modal__benefits-title i {
  color: #059669;
}

.cr-taxa-modal__benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-taxa-modal__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  padding: 5px 0;
}

.cr-taxa-modal__benefits li i {
  color: #10b981;
  font-size: 14px;
}

.cr-taxa-modal__alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 12px;
  line-height: 1.45;
  color: #92400e;
}

.cr-taxa-modal__alert i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cr-taxa-modal__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.cr-taxa-modal__trust i {
  color: #059669;
  margin-right: 3px;
}

.cr-taxa-modal__cta {
  width: 100%;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00a844 100%);
  color: #052e1c;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}

.cr-taxa-modal__cta:disabled {
  opacity: 0.75;
  cursor: wait;
}

.cr-taxa-modal__pix-label {
  margin: 0 0 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.cr-taxa-modal__qr {
  display: flex;
  justify-content: center;
  padding: 12px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
}

.cr-taxa-modal__qr img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.cr-taxa-modal__copy-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.cr-taxa-modal__copy-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.cr-taxa-modal__copy-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 11px;
  color: #0f172a;
  background: #f8faf9;
}

.cr-taxa-modal__copy-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #ecfdf5;
  color: #047857;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.cr-taxa-modal__steps {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f8faf9;
  border: 1px solid #eef2f0;
}

.cr-taxa-modal__steps p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.cr-taxa-modal__steps ol {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.cr-taxa-modal__waiting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #047857;
}

.cr-taxa-modal__spin {
  animation: crTaxaSpin 0.9s linear infinite;
}

@keyframes crTaxaSpin {
  to { transform: rotate(360deg); }
}

body.cr-taxa-modal-open {
  overflow: hidden !important;
}
