/* =================================================================
   SHOP GOLDS PAGES — MU GAME 99z
   Estrutura clonada das páginas shop do MU Rave,
   adaptada para a paleta cyan/orange/cyberpunk do MU Game.
   ================================================================= */

/* ── PAGE HEADER ── */
.page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.18);
}

.page-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.page-header-title {
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.page-header-sub {
  font-family: var(--f-mono, 'JetBrains Mono'), monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 107, 0, 0.7);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── LAYOUT: menu em cima, conteúdo embaixo ── */
.shop-top-menu {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(160deg, rgba(7, 15, 30, 0.99), rgba(2, 6, 14, 0.99));
  border: 1px solid rgba(0, 200, 255, 0.18);
  width: 100%;
}

.shop-main-content {
  width: 100%;
}

/* ── TABS HORIZONTAIS DO SHOP ── */
.smenu-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.smenu-tabs {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(0, 200, 255, 0.12);
  overflow-x: auto;
}

.smenu-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
  color: rgba(200, 223, 245, 0.65);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.18s ease;
}

.smenu-tab:hover {
  background: rgba(0, 200, 255, 0.08);
  border-color: rgba(0, 200, 255, 0.26);
  color: #fff;
}

.smenu-tab.active {
  background: rgba(0, 200, 255, 0.12);
  border-color: rgba(0, 200, 255, 0.40);
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 200, 255, 0.18);
}

.smenu-panels {
  padding: 16px;
}

.smenu-panel {
  display: none;
}

.smenu-panel.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.smenu-panel.wide.active {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.smenu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: 9px;
  text-align: center;
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(200, 223, 245, 0.78);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s ease;
}

.smenu-item:hover {
  background: rgba(0, 200, 255, 0.09);
  border-color: rgba(0, 200, 255, 0.32);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 200, 255, 0.18);
}

/* ── SHOP CONTEÚDO (placeholder / restricted) ── */
.painel-restricted {
  padding: 36px 28px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 200, 255, 0.18);
}

.painel-restricted-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.painel-restricted-title {
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.painel-restricted-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(200, 223, 245, 0.6);
}

/* ── WELCOME BOX (caixa de boas-vindas dentro do shop) ── */
.shop-welcome {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 22px 24px;
  background: linear-gradient(160deg, rgba(7, 15, 30, 0.99), rgba(2, 6, 14, 0.99));
  border: 1px solid rgba(0, 200, 255, 0.18);
}

.shop-welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.5), rgba(255, 107, 0, 0.4), transparent);
}

.shop-welcome-title {
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.shop-welcome-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(200, 223, 245, 0.7);
  line-height: 1.6;
}

.shop-welcome-item-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.shop-welcome-item b {
  color: #fff;
  font-weight: 700;
}


/* =================================================================
   FORMS — Cadastro, Reset de Senha (estilo do Rave adaptado MU Game)
   ================================================================= */
.mu-form-card {
  background: linear-gradient(180deg, rgba(7,15,30,0.99), rgba(2,6,14,0.99));
  border: 1px solid rgba(0, 200, 255, 0.4);
  border-radius: 14px;
  padding: 28px;
  max-width: 580px;
  margin: 0 auto;
  color: #c8dff5;
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.18), inset 0 0 10px rgba(0,0,0,0.55);
  font-family: 'Inter', sans-serif;
}

.mu-form-title {
  font-family: var(--f-title, 'Exo 2'), sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.55);
}
.mu-form-subtitle {
  text-align: center;
  color: rgba(200, 223, 245, 0.7);
  margin-bottom: 26px;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.mu-form .field { margin-bottom: 16px; }
.mu-form label {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.mu-form .ui.input input,
.mu-form input[type="text"],
.mu-form input[type="password"],
.mu-form input[type="email"] {
  background: rgba(2, 6, 14, 0.8) !important;
  border: 1px solid rgba(0, 200, 255, 0.3) !important;
  color: #c8dff5 !important;
  padding: 10px !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}
.mu-form .ui.input input:focus {
  border-color: rgba(0, 200, 255, 0.6) !important;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.25) !important;
  outline: none;
}

.mu-form-warning {
  background: rgba(255, 107, 0, 0.12);
  border-left: 4px solid #ff6b00;
  padding: 14px;
  margin-top: 26px;
  border-radius: 10px;
  color: #ffd9b8;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.mu-form-warning a {
  color: #ffb380;
  font-weight: 600;
  text-decoration: underline;
}

.mu-form-info {
  margin-top: 24px;
  padding: 14px;
  background: rgba(0, 200, 255, 0.06);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  border-left: 4px solid var(--c-accent, #00c8ff);
  color: rgba(200, 223, 245, 0.85);
}

.mu-btn-primary {
  width: 260px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00c8ff, #00a8d8);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 200, 255, 0.6);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.45);
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--f-title, 'Exo 2'), sans-serif;
}
.mu-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(0, 200, 255, 0.75), 0 0 50px rgba(0, 200, 255, 0.35);
  filter: brightness(1.08);
}
.mu-btn-primary:active { transform: translateY(1px) scale(0.98); }

.mu-form-error {
  display: none;
  background: rgba(255, 50, 50, 0.1);
  border: 1px solid #ff5555;
  color: #ffb4b4;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}

/* =================================================================
   SUCCESS CARD (register-success)
   ================================================================= */
.success-card {
  background: radial-gradient(circle at top, rgba(7,15,30,0.99) 0%, rgba(2,6,14,0.99) 100%);
  border: 1px solid rgba(0, 200, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.25), inset 0 0 15px rgba(0, 200, 255, 0.05);
  border-radius: 16px;
  padding: 40px 35px;
  max-width: 600px;
  margin: 40px auto;
  color: #c8dff5;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.success-card-icon {
  font-size: 60px;
  color: var(--c-accent, #00c8ff);
  text-shadow: 0 0 18px rgba(0, 200, 255, 0.6);
  margin-bottom: 20px;
}
.success-card-title {
  color: var(--c-accent, #00c8ff);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
  margin-bottom: 12px;
  font-family: var(--f-title, 'Exo 2'), sans-serif;
}
.success-card-text {
  font-size: 15px;
  color: rgba(200, 223, 245, 0.85);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* =================================================================
   SHOP ITEMS GRID — Cards dos itens dentro dos painel/shopgolds_*.html
   (estrutura herdada do Rave, cores adaptadas pro Game)
   ================================================================= */
.shop-page-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-page-title::before {
  content: "//";
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--c-accent, #00c8ff);
  font-weight: 700;
}

.shop-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-card {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(7,15,30,.99), rgba(2,6,14,.99));
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  flex-direction: column;
  transition: all .22s ease;
  min-height: 280px;
}
.shop-card:hover {
  border-color: rgba(0, 200, 255, .32);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 200, 255, .12);
}
.shop-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .55), rgba(255, 107, 0, .35), transparent);
}

.shop-card-thumb {
  width: 100%;
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card-thumb img {
  max-width: 130px;
  max-height: 140px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .7));
  transition: transform .3s ease;
}
.shop-card:hover .shop-card-thumb img {
  transform: scale(1.08);
}

.shop-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
}
.shop-card-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.1;
  text-transform: uppercase;
}
.shop-card-parts {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(200, 223, 245, .6);
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.shop-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.shop-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3px;
  padding: 4px 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(200, 223, 245, .65);
  font-weight: 700;
}
.shop-tag.gold {
  background: rgba(255, 215, 0, .08);
  border-color: rgba(255, 215, 0, .22);
  color: #ffd700;
}
.shop-tag.neon {
  background: rgba(255, 107, 0, .08);
  border-color: rgba(255, 107, 0, .25);
  color: #ff9966;
}
.shop-tag.red {
  background: rgba(0, 200, 255, .08);
  border-color: rgba(0, 200, 255, .25);
  color: #66dfff;
}

.shop-full-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(255, 215, 0, .10), rgba(255, 215, 0, .04));
  border: 1px solid rgba(255, 215, 0, .28);
}
.shop-full-icon {
  font-size: 14px;
  flex-shrink: 0;
}
.shop-full-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #ffd700;
  line-height: 1.3;
}
.shop-full-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 215, 0, .6);
  letter-spacing: 1px;
}

.shop-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.shop-card-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, .3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.shop-btn {
  padding: 9px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #00c8ff, #0080a8);
  border: 1px solid rgba(0, 200, 255, .6);
  box-shadow: 0 0 12px rgba(0, 200, 255, .3);
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(0, 200, 255, .55);
  filter: brightness(1.1);
}
.shop-btn:active {
  transform: translateY(0);
}


/* =================================================================
   SHOP MENU — Menu de categorias do Shop Golds (painel/shop-menu.html)
   3 seções (Sets, Armas, Outros) com 15 atalhos pros shopgolds_*.html
   ================================================================= */
.shopm-wrapper {
  font-family: 'Inter', sans-serif;
}

.shopm-section {
  margin-bottom: 18px;
}

.shopm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg,
    rgba(0, 200, 255, .18),
    rgba(255, 107, 0, .22),
    rgba(255, 107, 0, .12));
  border: 1px solid rgba(0, 200, 255, .35);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.shopm-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent, #00c8ff), #ff6b00, transparent);
}
.shopm-header-icon {
  font-size: 18px;
  filter: drop-shadow(0 0 4px rgba(255, 107, 0, .5));
}
.shopm-header-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, .35);
}
.shopm-header-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(0, 200, 255, .75);
  margin-left: auto;
}

.shopm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(0, 200, 255, .18);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(7, 15, 30, .85) 0%, rgba(2, 6, 14, .95) 100%);
}

.shopm-item {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 7px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(15, 25, 40, .9), rgba(7, 14, 25, .95));
  border: 1px solid rgba(255, 255, 255, .07);
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.shopm-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .4), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}
.shopm-item:hover {
  border-color: rgba(0, 200, 255, .5);
  background: linear-gradient(180deg, rgba(0, 200, 255, .15), rgba(255, 107, 0, .10));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 255, .25);
}
.shopm-item:hover::before { opacity: 1; }

.shopm-item-icon {
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(0, 200, 255, .35));
  transition: transform .22s ease;
}
.shopm-item:hover .shopm-item-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, .65));
}
.shopm-item-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6f3ff;
  line-height: 1.1;
  text-align: center;
}
.shopm-item:hover .shopm-item-name {
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 200, 255, .5);
}


/* =================================================================
   SHOP CASH — Variações pros cards do Shop Cash
   (mesmo .shop-card mas com preço cyan e banner "Adds" cyan)
   ================================================================= */

/* Preço Cash em cyan (em vez de gold) */
.shop-card-price.cash {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, .35);
}

/* Banner com texto dos "Adds" (alternativa ao .shop-full-banner dourado) */
.shop-adds-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(0, 200, 255, .12), rgba(0, 200, 255, .04));
  border: 1px solid rgba(0, 200, 255, .28);
}
.shop-adds-icon {
  font-size: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 200, 255, .45));
}
.shop-adds-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #66dfff;
  line-height: 1.35;
}
.shop-adds-text b {
  color: #fff;
  font-weight: 800;
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  PAINEL DATA-TEMPLATES — MU GAME 99z                              ║
   ║  Estilos pros 6 data-templates: menu, principal, personagens,     ║
   ║  exchanges, golds, desafios. Design herdado do Rave, cores Game.  ║
   ╚══════════════════════════════════════════════════════════════════╝ */


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · MENU SIDEBAR (.mnu-*)
   Caixa de login / menu pós-login do painel lateral
   ═══════════════════════════════════════════════════════════════════ */
.mnu-box {
  border-radius: 12px; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .22);
  box-shadow: 0 0 28px rgba(0,0,0,.9), 0 0 14px rgba(0, 200, 255, .05);
}
.mnu-head {
  padding: 12px 14px;
  background: linear-gradient(90deg, rgba(0, 200, 255, .10), transparent);
  border-bottom: 1px solid rgba(0, 200, 255, .14);
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(200, 223, 245, .65);
  display: flex; align-items: center; gap: 7px;
}
.mnu-head span { font-size: 14px; }
.mnu-body { padding: 14px; }

/* Inputs login */
.mnu-field { margin-bottom: 10px; }
.mnu-field-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(200, 223, 245, .4); margin-bottom: 5px; display: block;
}
.mnu-input {
  width: 100%; box-sizing: border-box;
  color-scheme: dark;
  background-color: #050d1a !important;
  border: 1px solid rgba(0, 200, 255, .25) !important;
  border-radius: 9px; outline: none;
  padding: 12px 13px;
  color: #e0f3ff !important;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
  display: block; margin-bottom: 0;
  -webkit-text-fill-color: #e0f3ff !important;
}
.mnu-input:focus {
  border-color: rgba(0, 200, 255, .6) !important;
  box-shadow: 0 0 0 3px rgba(0, 200, 255, .09) !important;
  background-color: #07111f !important;
}
.mnu-input::placeholder {
  color: rgba(160, 200, 240, .35) !important;
  -webkit-text-fill-color: rgba(160, 200, 240, .35) !important;
  opacity: 1;
}
.mnu-input:-webkit-autofill,
.mnu-input:-webkit-autofill:hover,
.mnu-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 200px #050d1a inset !important;
  -webkit-text-fill-color: #e0f3ff !important;
}

.mnu-forgot { text-align: right; margin-bottom: 14px; margin-top: -4px; }
.mnu-forgot a {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  color: rgba(255, 107, 0, .65); cursor: pointer; letter-spacing: .5px;
  transition: color .18s;
}
.mnu-forgot a:hover { color: #ff9966; }

.mnu-error {
  background: rgba(255, 80, 80, .08); border: 1px solid rgba(255, 80, 80, .3);
  color: #ff9999; padding: 10px; border-radius: 7px; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  margin-bottom: 12px; display: none;
}

.mnu-btn-login {
  width: 100%; padding: 13px; border-radius: 9px; border: none; cursor: pointer;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #00c8ff, #0080a8);
  border: 1px solid rgba(0, 200, 255, .6);
  box-shadow: 0 0 20px rgba(0, 200, 255, .35), inset 0 1px 0 rgba(255,255,255,.12);
  transition: all .22s ease;
}
.mnu-btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(0, 200, 255, .55);
  filter: brightness(1.1);
}

/* Pós-login */
.mnu-section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(200, 223, 245, .4); margin: 14px 0 8px;
  display: flex; align-items: center; gap: 6px;
}
.mnu-section-label::before {
  content: "//"; color: var(--c-accent, #00c8ff); font-size: 10px;
}
.mnu-section-label:first-child { margin-top: 0; }

.mnu-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px; margin-bottom: 5px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase;
  color: rgba(220, 235, 250, .82); text-decoration: none;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  transition: all .18s ease;
}
.mnu-link:hover {
  background: rgba(0, 200, 255, .08); border-color: rgba(0, 200, 255, .3);
  color: #fff; transform: translateX(3px);
}
.mnu-link.highlight {
  background: rgba(0, 200, 255, .10); border-color: rgba(0, 200, 255, .30); color: #fff;
}
.mnu-link.highlight:hover { background: rgba(0, 200, 255, .16); border-color: rgba(0, 200, 255, .5); }
.mnu-link.orange {
  background: rgba(255, 107, 0, .08); border-color: rgba(255, 107, 0, .25); color: #ffb380;
}
.mnu-link.orange:hover { background: rgba(255, 107, 0, .15); border-color: rgba(255, 107, 0, .45); color: #fff; }
.mnu-link.vip-link {
  background: rgba(196, 181, 253, .08); border-color: rgba(196, 181, 253, .22); color: #c4b5fd;
}
.mnu-link.vip-link:hover { background: rgba(196, 181, 253, .14); border-color: rgba(196, 181, 253, .45); color: #fff; }
.mnu-link.rubi-link {
  background: rgba(255, 107, 107, .08); border-color: rgba(255, 107, 107, .22); color: #ff9999;
}
.mnu-link.rubi-link:hover { background: rgba(255, 107, 107, .15); border-color: rgba(255, 107, 107, .45); color: #fff; }
.mnu-link.logout {
  background: rgba(220, 38, 38, .07); border-color: rgba(220, 38, 38, .18); color: rgba(252, 165, 165, .7);
  margin-top: 10px;
}
.mnu-link.logout:hover { background: rgba(220, 38, 38, .14); border-color: rgba(220, 38, 38, .4); color: #fff; }

.mnu-divider {
  height: 1px; margin: 10px 0;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .14), transparent);
}

/* Link desafios em destaque */
.mnu-desafios {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px; margin-bottom: 5px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase;
  text-decoration: none; color: #fff;
  background: rgba(255, 107, 0, .12); border: 1px solid rgba(255, 107, 0, .35);
  box-shadow: 0 0 10px rgba(255, 107, 0, .08);
  transition: all .18s ease;
}
.mnu-desafios:hover {
  background: rgba(255, 107, 0, .22); border-color: rgba(255, 107, 0, .55);
  transform: translateX(3px); color: #fff;
  box-shadow: 0 0 16px rgba(255, 107, 0, .22);
}
.mnu-desafios-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 3px; font-weight: 700;
  background: rgba(255, 107, 0, .25); border: 1px solid rgba(255, 107, 0, .45);
  color: #ffb380; white-space: nowrap; margin-left: auto; flex-shrink: 0;
}

/* Modal recuperar senha */
.forgot-password .header {
  background: linear-gradient(90deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99)) !important;
  color: #fff !important; border-bottom: 1px solid rgba(0, 200, 255, .25) !important;
  font-family: 'Exo 2', sans-serif;
}
.forgot-password .content {
  background: rgba(2, 6, 14, .99) !important; color: rgba(220, 235, 250, .8) !important;
}
.forgot-password .actions {
  background: rgba(2, 6, 14, .99) !important; border-top: 1px solid rgba(255,255,255,.07) !important;
}
.mnu-modal-input {
  width: 100%; box-sizing: border-box; background: rgba(255,255,255,.04);
  border: 1px solid rgba(0, 200, 255, .25); padding: 11px 13px; border-radius: 8px;
  color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; outline: none;
  margin-bottom: 10px; box-shadow: inset 0 0 12px rgba(0,0,0,.6); transition: border-color .2s;
}
.mnu-modal-input:focus { border-color: rgba(0, 200, 255, .5); }
.mnu-modal-input::placeholder { color: rgba(220, 235, 250, .28); }
.mnu-modal-btn {
  background: linear-gradient(135deg, #00c8ff, #0080a8) !important;
  color: #fff !important; font-weight: 800 !important;
  border: 1px solid rgba(0, 200, 255, .6) !important;
  font-family: 'Exo 2', sans-serif !important;
}


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · MINHA CONTA (.pp-*)
   Hero com dados (user/email/senha), saldos, status, VIP card
   ═══════════════════════════════════════════════════════════════════ */
.pp-hero {
  border-radius: 14px; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .22);
  position: relative;
}
.pp-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, #ff6b00, transparent);
}
.pp-hero-inner { padding: 20px 22px; }
.pp-hero-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(0, 200, 255, .75); margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.pp-hero-label::before { content: "//"; color: var(--c-accent, #00c8ff); }

.pp-data-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px;
}
.pp-data-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px; padding: 14px 16px;
}
.pp-data-card.span2 {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: space-between;
}
.pp-data-lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .4); margin-bottom: 4px;
}
.pp-data-val {
  font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: .3px;
}
.pp-data-pass {
  font-family: 'JetBrains Mono', monospace; font-size: 16px; letter-spacing: 2px;
}
.pp-btn-pass {
  display: inline-block; cursor: pointer;
  padding: 9px 14px; border-radius: 8px;
  font-family: 'Exo 2', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #00c8ff, #0080a8);
  border: 1px solid rgba(0, 200, 255, .6);
  text-decoration: none;
  transition: all .2s ease;
}
.pp-btn-pass:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(0, 200, 255, .45); }

/* Bloco genérico */
.pp-block {
  border-radius: 12px; overflow: hidden; margin-bottom: 16px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(255,255,255,.08);
}
.pp-block-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(0, 200, 255, .06), transparent);
}
.pp-block-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(0, 200, 255, .12); border: 1px solid rgba(0, 200, 255, .3);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.pp-block-title {
  font-family: 'Exo 2', sans-serif; font-size: 16px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
}
.pp-block-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(0, 200, 255, .7); letter-spacing: 1px; margin-top: 2px;
}
.pp-body { padding: 16px 18px 18px; }

/* Roles/tags */
.pp-roles { display: flex; flex-wrap: wrap; gap: 7px; }
.pp-role {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 5px;
  background: rgba(0, 200, 255, .08); border: 1px solid rgba(0, 200, 255, .25);
  color: #66dfff; letter-spacing: .5px;
}

/* Saldos do Game (5 moedas) */
.pp-balances {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.pp-bal-card {
  padding: 14px 10px; border-radius: 10px; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--bc, rgba(0,200,255,.25));
  position: relative; overflow: hidden;
  transition: transform .2s ease;
}
.pp-bal-card:hover { transform: translateY(-2px); }
.pp-bal-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--bc, rgba(0,200,255,.4));
}
.pp-bal-icon {
  font-size: 22px; margin-bottom: 6px;
  filter: drop-shadow(0 0 6px var(--bc, rgba(0,200,255,.5)));
}
.pp-bal-lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(220, 235, 250, .55); margin-bottom: 4px;
}
.pp-bal-val {
  font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 900;
  letter-spacing: .5px; color: var(--vc, #fff);
  text-shadow: 0 0 10px var(--bc, rgba(0,200,255,.3));
  line-height: 1;
}

/* VIP card (4 níveis: Free / VIP / Super VIP / Mega VIP) */
.pp-vip-card {
  margin-top: 6px; padding: 22px 20px; border-radius: 14px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--vbg, linear-gradient(160deg, rgba(7,15,30,.99), rgba(2,6,14,.99)));
  border: 1px solid var(--vc, rgba(255,255,255,.18));
}
.pp-vip-emoji {
  font-size: 36px; display: block; margin-bottom: 8px;
  filter: drop-shadow(0 0 10px var(--vc-glow, rgba(0,200,255,.4)));
}
.pp-vip-name {
  font-family: 'Exo 2', sans-serif; font-size: 26px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase; color: var(--vc, #fff);
  text-shadow: 0 0 14px var(--vc-glow, rgba(0,200,255,.4));
  margin-bottom: 4px;
}
.pp-vip-desc {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(220, 235, 250, .75); margin-bottom: 8px;
}
.pp-vip-days {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 6px; display: inline-block; margin-bottom: 8px;
  background: rgba(0, 200, 255, .12); border: 1px solid rgba(0, 200, 255, .3);
  color: #66dfff;
}
.pp-vip-badge {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--vc, rgba(220, 235, 250, .65));
  margin-top: 4px;
}

@keyframes ppGlowSoft {
  0%, 100% { box-shadow: 0 0 14px var(--vc-glow, rgba(0,200,255,.10)); }
  50%      { box-shadow: 0 0 28px var(--vc-glow, rgba(0,200,255,.25)); }
}
@keyframes ppFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · PERSONAGENS (.char-*)
   Cards de personagens com avatar, badges, stats e botões
   ═══════════════════════════════════════════════════════════════════ */
.char-section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .45); margin: 0 0 18px;
  display: flex; align-items: center; gap: 8px;
}
.char-section-label::before { content: "//"; color: var(--c-accent, #00c8ff); }

.char-list { display: flex; flex-direction: column; gap: 16px; }

.char-card {
  position: relative; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .22);
  transition: border-color .22s, box-shadow .22s;
}
.char-card:hover {
  border-color: rgba(0, 200, 255, .4);
  box-shadow: 0 8px 32px rgba(0, 200, 255, .12);
}
.char-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, #ff6b00, #00c8ff, transparent);
  opacity: .65;
}

.char-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(0, 200, 255, .06), transparent);
}
.char-img-wrap {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(0, 200, 255, .3);
  box-shadow: 0 0 20px rgba(0, 200, 255, .18);
}
.char-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.char-head-info { flex: 1; }
.char-name {
  font-family: 'Exo 2', sans-serif; font-size: 28px; font-weight: 900;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; line-height: 1; margin-bottom: 6px;
  text-shadow: 0 0 16px rgba(255,255,255,.1);
}
.char-class-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; color: rgba(255, 107, 0, .8); margin-bottom: 8px;
}
.char-head-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.char-hbadge {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; padding: 4px 10px; border-radius: 5px;
}
.char-hbadge.level  { background: rgba(0, 200, 255, .08); border: 1px solid rgba(0, 200, 255, .25); color: #66dfff; }
.char-hbadge.resets { background: rgba(255, 107, 0, .10); border: 1px solid rgba(255, 107, 0, .3); color: #ffb380; }
.char-hbadge.master { background: rgba(196, 181, 253, .10); border: 1px solid rgba(196, 181, 253, .3); color: #c4b5fd; }

.char-head-btns {
  display: flex; flex-direction: column; gap: 7px; flex-shrink: 0;
}

.char-btn {
  display: block; padding: 10px 18px; border-radius: 8px;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; text-align: center;
  cursor: pointer; border: none; transition: all .2s ease; white-space: nowrap;
}
.char-btn-reset {
  color: #fff; background: linear-gradient(135deg, #00c8ff, #0080a8);
  border: 1px solid rgba(0, 200, 255, .6); box-shadow: 0 0 14px rgba(0, 200, 255, .3);
}
.char-btn-reset:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(0, 200, 255, .55); }
.char-btn-master {
  color: #fff; background: linear-gradient(135deg, #ff6b00, #c44a00);
  border: 1px solid rgba(255, 107, 0, .6); box-shadow: 0 0 12px rgba(255, 107, 0, .3);
}
.char-btn-master:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(255, 107, 0, .55); }
.char-btn-points {
  color: rgba(220, 235, 250, .9); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
}
.char-btn-points:hover { background: rgba(0, 200, 255, .07); border-color: rgba(0, 200, 255, .35); transform: translateY(-2px); }

.char-body { padding: 16px 20px 20px; }

.char-stats-title {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(220, 235, 250, .65);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.char-stats-title::before {
  content: "//"; color: var(--c-accent, #00c8ff); font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
}

.char-stats {
  display: flex; flex-direction: column; border-radius: 9px;
  overflow: hidden; margin-bottom: 14px;
}
.char-stat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}
.char-stat:last-child { border-bottom: none; }
.char-stat:hover { background: rgba(255,255,255,.03); }

.char-stat-left { display: flex; align-items: center; gap: 9px; }
.char-stat-icon { font-size: 15px; width: 22px; text-align: center; flex-shrink: 0; }
.char-stat-label {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(220, 235, 250, .65); letter-spacing: .2px;
}
.char-stat-value {
  font-family: 'Exo 2', sans-serif; font-size: 20px; font-weight: 800;
  letter-spacing: .8px; color: #fff;
}

.char-stat.s-resets .char-stat-value { color: #ffb380; text-shadow: 0 0 8px rgba(255, 107, 0, .3); }
.char-stat.s-master .char-stat-value { color: #c4b5fd; text-shadow: 0 0 8px rgba(196, 181, 253, .3); }
.char-stat.s-pk     .char-stat-value { color: #fb7185; }
.char-stat.s-king   .char-stat-value { color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, .3); }

.char-divider {
  height: 1px; margin: 12px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

/* Modais personagens */
.char-modal-header {
  background: linear-gradient(90deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99)) !important;
  color: #fff !important; border-bottom: 1px solid rgba(0, 200, 255, .25) !important;
  font-family: 'Exo 2', sans-serif !important;
}
.char-modal-content {
  background: rgba(2, 6, 14, .99) !important; color: rgba(220, 235, 250, .85) !important;
  font-family: 'Inter', sans-serif !important;
}
.char-modal-actions {
  background: rgba(2, 6, 14, .99) !important; border-top: 1px solid rgba(255,255,255,.07) !important;
}
.char-modal-content ul { padding-left: 18px; line-height: 2.2; font-size: 14px; }
.char-modal-content p  { font-size: 14px; color: rgba(220, 235, 250, .75); }
.char-modal-btn-confirm {
  background: linear-gradient(135deg, #00c8ff, #0080a8) !important;
  color: #fff !important; font-weight: 800 !important;
  border: 1px solid rgba(0, 200, 255, .6) !important;
  font-family: 'Exo 2', sans-serif !important;
}


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · EXCHANGES (.exc-*)
   Trocas (VIP + Trocas regulares), grid req/recompensa, botão executar
   ═══════════════════════════════════════════════════════════════════ */
.exc-wrap { font-family: 'Inter', sans-serif; }

.exc-section-header {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 8px;
  margin: 14px 0 12px;
  background: linear-gradient(90deg, var(--sec-bg, rgba(0,200,255,.18)),
                              rgba(255, 107, 0, .12));
  border: 1px solid var(--sec-bd, rgba(0, 200, 255, .35));
  position: relative; overflow: hidden;
}
.exc-section-header:first-child { margin-top: 0; }
.exc-section-header::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sec-bd, #00c8ff), transparent);
}
.exc-section-icon {
  font-size: 16px;
  filter: drop-shadow(0 0 4px var(--sec-bd, rgba(0,200,255,.5)));
}
.exc-section-title {
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 900;
  letter-spacing: 2.5px; text-transform: uppercase; color: #fff;
}

/* Info instrução */
.exc-info {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px; margin-bottom: 16px;
  background: rgba(255, 107, 0, .06); border: 1px solid rgba(255, 107, 0, .22);
  position: relative; overflow: hidden;
}
.exc-info::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .5), transparent);
}
.exc-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.exc-info-text {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .8); line-height: 1.7;
}
.exc-info-text b { color: #fff; font-weight: 700; }
.exc-info-text strong { color: #ffb380; font-weight: 800; }

/* Card de troca */
.exc-card {
  position: relative; border-radius: 12px; overflow: hidden;
  margin-bottom: 12px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .2s, box-shadow .2s;
}
.exc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .4), rgba(255, 107, 0, .25), transparent);
}
.exc-card:hover {
  border-color: rgba(0, 200, 255, .3);
  box-shadow: 0 4px 22px rgba(0, 0, 0, .5);
}

.exc-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(0, 200, 255, .07), transparent);
}
.exc-card-head-icon {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  background: rgba(0, 200, 255, .12); border: 1px solid rgba(0, 200, 255, .3);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.exc-card-head.vip .exc-card-head-icon {
  background: rgba(196, 181, 253, .12); border-color: rgba(196, 181, 253, .35);
}
.exc-card-title {
  font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: #fff;
}

.exc-card-body {
  display: flex; align-items: stretch; gap: 0;
}

.exc-col {
  flex: 1; padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.exc-col:last-child { border-right: none; }

.exc-col-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .45);
  margin-bottom: 8px; display: flex; align-items: center; gap: 5px;
}
.exc-col-label::before { content: "//"; color: var(--c-accent, #00c8ff); }

.exc-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 9px; border-radius: 6px; margin-bottom: 5px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05);
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .85); font-weight: 600;
}
.exc-item:last-child { margin-bottom: 0; }
.exc-item-count {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 800;
  padding: 1px 8px; border-radius: 4px;
  background: rgba(0, 200, 255, .12); border: 1px solid rgba(0, 200, 255, .3);
  color: #66dfff; flex-shrink: 0;
}
.exc-item.reward .exc-item-count {
  background: rgba(57, 255, 20, .10); border-color: rgba(57, 255, 20, .25);
  color: #74f04a;
}

.exc-col-btn {
  width: 150px; flex-shrink: 0; padding: 14px 14px;
  display: flex; align-items: center; justify-content: center;
}
.exc-btn {
  width: 100%; padding: 13px 10px; border-radius: 9px; border: none; cursor: pointer;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #00c8ff, #0080a8);
  border: 1px solid rgba(0, 200, 255, .55);
  box-shadow: 0 0 18px rgba(0, 200, 255, .3), inset 0 1px 0 rgba(255,255,255,.1);
  transition: all .2s;
}
.exc-btn:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0, 200, 255, .55); }
.exc-btn.vip {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  border-color: rgba(168, 85, 247, .6);
  box-shadow: 0 0 18px rgba(168, 85, 247, .3);
}
.exc-btn.vip:hover { box-shadow: 0 0 30px rgba(168, 85, 247, .55); }

/* Modal */
.exc-modal-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .5); margin: 14px 0 7px;
  display: flex; align-items: center; gap: 5px;
}
.exc-modal-label:first-child { margin-top: 0; }
.exc-modal-label::before { content: "//"; color: var(--c-accent, #00c8ff); }
.exc-modal-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 11px;
  border-radius: 7px; margin-bottom: 5px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06);
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .85); font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · GOLDS (.gp-*)
   Página de compra: 4 moedas (Golds, Premium, Rubi, Cash), PIX, PicPay
   ═══════════════════════════════════════════════════════════════════ */
.gp-hero {
  border-radius: 16px; padding: 28px 24px; text-align: center;
  margin-bottom: 22px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .25);
  box-shadow: 0 0 28px rgba(0, 200, 255, .12);
  position: relative; overflow: hidden;
}
.gp-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, #ff6b00, transparent);
}
.gp-hero-badge {
  display: inline-block; padding: 4px 12px; border-radius: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  background: rgba(57, 255, 20, .08); border: 1px solid rgba(57, 255, 20, .25);
  color: #74f04a; margin-bottom: 12px;
}
.gp-hero-title {
  font-family: 'Exo 2', sans-serif; font-size: 26px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  text-shadow: 0 0 20px rgba(0, 200, 255, .35);
  margin-bottom: 10px;
}
.gp-hero-desc {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: rgba(220, 235, 250, .75); line-height: 1.6;
}
.gp-hero-desc b { color: #ffb380; font-weight: 700; }

/* Grid de 4 moedas */
.gp-coins-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 22px;
}
.gp-coin-card {
  padding: 22px 16px; border-radius: 12px; text-align: center;
  background: linear-gradient(180deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid var(--cc, rgba(0, 200, 255, .35));
  box-shadow: 0 0 22px var(--cg, rgba(0, 200, 255, .12));
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  transition: transform .25s ease;
}
.gp-coin-card:hover { transform: translateY(-3px); }
.gp-coin-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cc, #00c8ff);
}
.gp-coin-icon {
  font-size: 38px; margin-bottom: 10px;
  filter: drop-shadow(0 0 10px var(--cc, rgba(0,200,255,.5)));
}
.gp-coin-name {
  font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cc, #fff); margin-bottom: 8px;
  text-shadow: 0 0 14px var(--cg, rgba(0,200,255,.3));
}
.gp-coin-desc {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .75); line-height: 1.55; flex: 1;
}
.gp-coin-desc b { color: #fff; font-weight: 700; }
.gp-coin-tag {
  display: inline-block; margin-top: 10px;
  padding: 4px 10px; border-radius: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--cg, rgba(0,200,255,.12));
  border: 1px solid var(--cc, rgba(0,200,255,.4));
  color: var(--cc, #00c8ff);
}

/* Bloco genérico (Promoção, Como Comprar, Pagamento, Entrega) */
.gp-block {
  border-radius: 14px; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .2);
}
.gp-block-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(255, 107, 0, .08), transparent);
}
.gp-block-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255, 107, 0, .14); border: 1px solid rgba(255, 107, 0, .35);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, .4));
}
.gp-block-title {
  font-family: 'Exo 2', sans-serif; font-size: 17px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
}
.gp-block-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255, 107, 0, .7); letter-spacing: 1.2px;
  margin-top: 2px;
}
.gp-body { padding: 18px 22px 22px; }

/* Promoção */
.gp-promo {
  text-align: center;
}
.gp-promo-text {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(220, 235, 250, .85); line-height: 1.6; margin-bottom: 14px;
}
.gp-promo-btn {
  display: inline-block; padding: 12px 28px; border-radius: 9px;
  font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  color: #1a0d04;
  background: linear-gradient(90deg, #ff6b00, #ffb380);
  box-shadow: 0 0 18px rgba(255, 107, 0, .5);
  transition: all .2s;
}
.gp-promo-btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(255, 107, 0, .7); }

/* Step (como comprar) */
.gp-step {
  background: rgba(255,255,255,.02);
  border-left: 4px solid var(--sc, #00c8ff);
  border-radius: 8px; padding: 14px 18px;
  margin-bottom: 11px;
  box-shadow: 0 0 12px rgba(0, 200, 255, .06);
}
.gp-step:last-child { margin-bottom: 0; }
.gp-step-title {
  font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 900;
  letter-spacing: 1px; color: var(--sc, #66dfff);
  margin-bottom: 5px; text-transform: uppercase;
}
.gp-step-desc {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .8); margin: 0; line-height: 1.5;
}
.gp-step-cta {
  display: inline-block; margin-top: 10px;
  padding: 9px 18px; border-radius: 7px;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  color: #1a0d04;
  background: linear-gradient(90deg, #ff6b00, #ffb380);
  box-shadow: 0 0 12px rgba(255, 107, 0, .4);
  transition: all .2s;
}
.gp-step-cta:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(255, 107, 0, .6); }

/* Pagamentos (PIX/PicPay) */
.gp-pay-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.gp-pay-card {
  padding: 22px; border-radius: 12px;
  background: rgba(255,255,255,.02); border: 1px solid var(--pc, rgba(0,200,255,.4));
  box-shadow: 0 0 16px var(--pcg, rgba(0,200,255,.12));
}
.gp-pay-title {
  font-family: 'Exo 2', sans-serif; font-size: 20px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--pc, #00c8ff); margin-bottom: 14px;
  text-shadow: 0 0 10px var(--pcg, rgba(0,200,255,.4));
}
.gp-pay-body { display: flex; gap: 14px; align-items: flex-start; }
.gp-pay-img {
  width: 95px; height: auto; flex-shrink: 0; border-radius: 8px;
  filter: drop-shadow(0 0 8px var(--pcg, rgba(0,200,255,.4)));
}
.gp-pay-info { flex: 1; font-family: 'Inter', sans-serif; }
.gp-pay-key-lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .55); margin-bottom: 5px;
}
.gp-pay-key {
  font-family: 'Exo 2', sans-serif; font-size: 20px; font-weight: 900;
  letter-spacing: 1px; color: var(--pc, #fff);
  text-shadow: 0 0 12px var(--pcg, rgba(0,200,255,.4));
  margin-bottom: 10px; word-break: break-all;
}
.gp-pay-holder {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(220, 235, 250, .75); margin-bottom: 12px;
}
.gp-pay-holder b { color: #fff; }
.gp-pay-link {
  display: inline-block;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--pc, #00c8ff); text-decoration: none;
}
.gp-pay-link:hover { color: #fff; }

/* Suporte WhatsApp */
.gp-support {
  text-align: center; padding: 22px;
  margin-top: 18px; border-radius: 12px;
  background: rgba(37, 211, 102, .06);
  border: 1px solid rgba(37, 211, 102, .3);
}
.gp-support-text {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(220, 235, 250, .85); line-height: 1.6; margin-bottom: 12px;
}
.gp-support-text b { color: #74f04a; }
.gp-wpp-btn {
  display: inline-block; padding: 11px 26px; border-radius: 9px;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  color: #fff;
  background: #25D366; border: 1px solid #2ee577;
  box-shadow: 0 0 14px rgba(37, 211, 102, .5);
  transition: all .2s;
}
.gp-wpp-btn:hover { transform: translateY(-1px); box-shadow: 0 0 22px rgba(37, 211, 102, .7); }


/* ═══════════════════════════════════════════════════════════════════
   PAINEL · DESAFIOS (.dp-*)
   Página de desafios diários/semanais com cards interativos
   ═══════════════════════════════════════════════════════════════════ */
.dp-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
}

.dp-sidebar {
  display: flex; flex-direction: column; gap: 12px;
}
.dp-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 9px;
  background: linear-gradient(90deg, rgba(0, 200, 255, .12), rgba(255, 107, 0, .08));
  border: 1px solid rgba(0, 200, 255, .35);
}
.dp-sidebar-title {
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
}
.dp-sidebar-count {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 5px;
  background: rgba(57, 255, 20, .12); border: 1px solid rgba(57, 255, 20, .3);
  color: #74f04a;
}

/* Card de desafio na sidebar */
.dp-card {
  position: relative; cursor: pointer;
  border-radius: 11px; overflow: hidden;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(255,255,255,.08);
  transition: all .22s ease;
}
.dp-card:hover {
  border-color: var(--cc, rgba(0,200,255,.4));
  transform: translateX(2px);
}
.dp-card.active {
  border-color: var(--cc, #00c8ff);
  box-shadow: 0 0 22px var(--cg, rgba(0,200,255,.15));
}
.dp-card-bg {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cc, #00c8ff);
}
.dp-card-inner { padding: 14px; }
.dp-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.dp-card-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 6px var(--cg, rgba(0,200,255,.4)));
}
.dp-card-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700;
  letter-spacing: 1px; padding: 3px 8px; border-radius: 4px;
}
.dp-badge-on {
  background: rgba(57, 255, 20, .12); border: 1px solid rgba(57, 255, 20, .3);
  color: #74f04a;
}
.dp-badge-rdy {
  background: rgba(255, 215, 0, .12); border: 1px solid rgba(255, 215, 0, .35);
  color: #ffd700;
}
.dp-card-name {
  font-family: 'Exo 2', sans-serif; font-size: 16px; font-weight: 900;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff; margin-bottom: 6px; line-height: 1.1;
}
.dp-card-desc {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(220, 235, 250, .65); line-height: 1.5;
  margin-bottom: 10px;
}
.dp-card-etapas {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; padding: 3px 9px; border-radius: 4px; margin-bottom: 8px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--cc, rgba(0,200,255,.3));
  color: var(--cc, #66dfff);
}
.dp-card-reward {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(220, 235, 250, .75); margin-bottom: 10px;
}
.dp-card-reward b { color: var(--cc, #fff); font-weight: 800; }
.dp-deadline {
  display: inline-block; padding: 4px 9px; border-radius: 4px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  background: rgba(255, 107, 0, .08); border: 1px solid rgba(255, 107, 0, .25);
  color: #ffb380; margin-bottom: 10px;
}
.dp-deadline.dp-deadline-ok {
  background: rgba(0, 200, 255, .08); border-color: rgba(0, 200, 255, .25); color: #66dfff;
}
.dp-mini-lbl {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; color: rgba(220, 235, 250, .55);
  margin-bottom: 4px;
}
.dp-mini-bar {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,.05); overflow: hidden;
}
.dp-mini-fill {
  height: 100%;
  background: var(--cc, #00c8ff);
  box-shadow: 0 0 8px var(--cg, rgba(0,200,255,.4));
  transition: width .4s ease;
}

/* Aviso de trocas (sidebar bottom) */
.dp-notice-small {
  padding: 12px; border-radius: 8px;
  background: rgba(255, 107, 0, .05); border: 1px solid rgba(255, 107, 0, .2);
}
.dp-notice-small-text {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(220, 235, 250, .65); line-height: 1.5;
}
.dp-notice-small-text b { color: #ffb380; }

/* Área principal (big card) */
.dp-main {
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(7, 15, 30, .99), rgba(2, 6, 14, .99));
  border: 1px solid rgba(0, 200, 255, .22);
  position: relative;
  min-height: 500px;
}
.dp-main::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, #ff6b00, transparent);
}

.dp-big-card { padding: 24px; display: none; }
.dp-big-card.active { display: block; }

.dp-big-card-head {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dp-big-card-icon-wrap {
  width: 60px; height: 60px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; border-radius: 11px;
  background: var(--cg, rgba(0,200,255,.12));
  border: 1px solid var(--cc, rgba(0,200,255,.4));
  filter: drop-shadow(0 0 10px var(--cg, rgba(0,200,255,.3)));
}
.dp-big-card-title {
  font-family: 'Exo 2', sans-serif; font-size: 28px; font-weight: 900;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 6px;
}
.dp-big-card-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px; color: var(--cc, #66dfff);
}

.dp-big-card-body {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(220, 235, 250, .8); line-height: 1.7;
}

.dp-big-card-desc {
  margin-bottom: 18px;
}

.dp-bar-wrap {
  margin: 18px 0;
}
.dp-bar-lbl {
  display: flex; justify-content: space-between;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 1px; color: rgba(220, 235, 250, .8);
  margin-bottom: 7px;
}
.dp-bar {
  height: 10px; border-radius: 5px;
  background: rgba(255,255,255,.06); overflow: hidden;
}
.dp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cc, #00c8ff), #ff6b00);
  box-shadow: 0 0 12px var(--cg, rgba(0,200,255,.45));
  transition: width .6s ease;
}

/* Etapas */
.dp-etapas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 14px;
}
.dp-etapa {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  transition: all .2s ease;
}
.dp-etapa.done {
  background: rgba(57, 255, 20, .06); border-color: rgba(57, 255, 20, .25);
}
.dp-etapa-icon {
  font-size: 20px; flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--cg, rgba(0,200,255,.3)));
}
.dp-etapa-info { flex: 1; }
.dp-etapa-name {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase; color: #fff;
  margin-bottom: 2px;
}
.dp-etapa-progress {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  color: rgba(220, 235, 250, .65);
}
.dp-etapa.done .dp-etapa-progress { color: #74f04a; }
.dp-etapa-check {
  font-size: 16px; flex-shrink: 0;
}

.dp-big-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.dp-big-card-reward-lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(220, 235, 250, .5); margin-bottom: 3px;
}
.dp-big-card-reward {
  font-family: 'Exo 2', sans-serif; font-size: 16px; font-weight: 800;
  letter-spacing: 1px; color: var(--cc, #66dfff);
}
.dp-big-card-cta {
  padding: 12px 24px; border-radius: 9px; border: none; cursor: pointer;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--cc, #00c8ff), #0080a8);
  border: 1px solid var(--cc, rgba(0,200,255,.6));
  box-shadow: 0 0 18px var(--cg, rgba(0,200,255,.3));
  transition: all .2s;
}
.dp-big-card-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--cg, rgba(0,200,255,.55)); }

/* Botão back (responsivo) */
.dp-back-btn {
  display: none; padding: 10px 16px; border-radius: 8px;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; cursor: pointer; margin-bottom: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  color: rgba(220, 235, 250, .8);
}
