body {
  background-color: #0a1a63;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  /*overflow-x: hidden; */
}
.copy-links {
  display: none;
}

/* ===== SCROLL PERSONALIZADO ===== */
.popup-content::-webkit-scrollbar {
  width: 2px;
}
.popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: #00c853;
  border-radius: 3px;
}
.popup-content::-webkit-scrollbar-thumb:hover {
  background: #009624;
}

/* ===== SISTEMA DE SELEÇÃO DE APPS ===== */
.app-activation-system {
  width: 100%;
  margin-top: 0px;
}

.app-selection-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-search-container {
  flex: 1;
  min-width: 280px;
  position: relative;
  border-radius: 12px;
}

.search-icon {
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd900;
  font-size: 18px;
  z-index: 2;
}

.app-select-input {
  width: 75%;
  padding: 12px 10px 12px 45px;
  border: 2px solid #ffd900;
  border-radius: 10px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
}

.app-select-input:focus {
  outline: none;
  border-color: #00ffea;
  box-shadow: 0 0 0 3px rgba(0, 255, 234, 0.2);
  background: rgba(0, 0, 0, 0.9);
}

#soumirlog {
  display: none;
}

.app-suggestions-dropdown {
  position: absolute;
  top: 110%;
  left: 35px;
  right: 35px;
  background: #1b1f3b;
  border: 2px solid #ffd900;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.app-suggestions-dropdown::-webkit-scrollbar {
  width: 6px;
}

.app-suggestions-dropdown::-webkit-scrollbar-thumb {
  background-color: #df0b0b;
  border-radius: 6px;
}

.app-suggestions-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}

.app-suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #333e91;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-suggestion-item:hover {
  background: #333e91;
  color: #ffd900;
}

.app-suggestion-item > div {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-right: 20px;

  flex: 1;
}
.app-suggestion-item img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  object-fit: cover;
}

.app-suggestion-name {
  font-size: 12px;
  margin-left: 13px;
}
.app-suggestion-price {
  font-size: 12px;
  color: #ffbb00;
  font-weight: bold;
}

.app-info-display {
  background: linear-gradient(135deg, #0a1a63, #3538a1);
  color: white;
  padding: 8px 8px;
  border-radius: 10px;
  min-width: 200px;
  text-align: center;
  border: 2px solid #ffd900;
}

.app-name-display {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffd900;
}

.app-price-display {
  font-size: 16px;
  font-weight: bold;
  color: #00ffea;
  font-family: "Orbitron", sans-serif;
}

.activate-app-btn {
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.activate-app-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.activate-app-btn:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
  background: linear-gradient(135deg, #ff3d00, #ff6b00);
}

/* ===== POPUP DE ATIVAÇÃO (ESTILO DO SITE SIMPLES - COMPLETO) ===== */
.app-activation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.app-popup-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #333e91 100%);
  border: 2px solid #ffd900;
  border-radius: 15px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.app-popup-header {
  background: linear-gradient(135deg, #0a1a63, #3538a1);
  color: white;
  padding: 14px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffd900;
}

.app-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.app-popup-body {
  max-height: calc(90vh - 130px);
  overflow-y: auto;
  padding: 20px 30px 25px 30px;
}

/* ESTILOS ESPECÍFICOS PARA O HTML DO SITE ROBUSTO */
.app-popup-summary {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #00ffea;
  color: white;
}

.app-popup-summary > div:first-child > div:first-child > div:first-child {
  font-size: 12px;
  font-weight: bold;
  color: #ffd900;
  margin-bottom: 5px;
}

.app-popup-summary > div:first-child > div:first-child > div:nth-child(2) {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.app-popup-summary > div:first-child > div:last-child > div:first-child {
  font-size: 12px;
  font-weight: bold;
  color: #ffd900;
  margin-bottom: 5px;
  text-align: right;
}

.app-popup-summary > div:first-child > div:last-child > div:nth-child(2) {
  font-size: 20px;
  font-weight: bold;
  color: #00ffea;
  font-family: "Orbitron", sans-serif;
  text-align: right;
}

/* Campos do formulário */
.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  color: #ffd900;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #00ffea;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 13px;
  font-family: "Courier New", Courier, monospace;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #ffd900;
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.cancel-btn,
.submit-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.cancel-btn {
  background: #666;
  color: white;
  border: 2px solid #888;
}

.cancel-btn:hover {
  background: #888;
  transform: translateY(-2px);
}

.submit-btn {
  background: linear-gradient(135deg, #00ffea, #0099ff);
  color: black;
  border: 2px solid #00ffea;
  font-weight: 800;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 234, 0.4);
}

.app-popup-close {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#forss {
  padding: 20px 38px 25px 30px;
}

/* Scroll personalizado para popup de ativação: combinar com o vermelho do site */
.app-popup-body::-webkit-scrollbar,
.app-popup-content::-webkit-scrollbar {
  width: 8px;
}

.app-popup-body::-webkit-scrollbar-track,
.app-popup-content::-webkit-scrollbar-track {
  background: #3538a1;
  border-radius: 4px;
}

.app-popup-body::-webkit-scrollbar-thumb,
.app-popup-content::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.app-popup-body::-webkit-scrollbar-thumb:hover,
.app-popup-content::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

/* Firefox support */
.app-popup-body,
.app-popup-content {
  scrollbar-width: thin;
  scrollbar-color: #df0b0b #3538a1;
}

.selected-app-summary {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #00ffea;
}

.app-summary-name {
  font-size: 15px;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
}

.app-summary-price {
  font-size: 16px;
  font-weight: bold;
  color: #00ffea;
  font-family: "Orbitron", sans-serif;
}

#popupAppField,
#activationMac,
#activationEmail,
#activationKey {
  margin-left: -83px;
}

#activationCountryCode {
  margin-left: -15px;
}

#activationWhatsApp {
  margin-left: 0;
}

.form-field input,
.form-field select {
  width: 80%;
  padding: 10px 0px 10px 15px;
  border: 2px solid #00ffea;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 13px;
  font-family: "Courier New", Courier, monospace;
  transition: all 0.3s ease;
}

.form-field input:read-only {
  background: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
  border-color: #666;
}

.country-code-select {
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.activation-hours-notice {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(9, 12, 36, 0.92), rgba(16, 24, 58, 0.9));
  box-shadow: inset 0 0 0 1px rgba(0, 255, 234, 0.08);
  text-align: center;
}

.activation-hours-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.activation-hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.activation-hours-dot.is-open {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: activationPulse 1.2s infinite ease-in-out;
}

.activation-hours-dot.is-closed {
  background: #ff4d4f;
  box-shadow: 0 0 8px rgba(255, 77, 79, 0.85);
  animation: none;
}

.activation-hours-status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.activation-hours-clock {
  font-size: 11px;
  color: #9fb8ff;
  font-family: "Courier New", Courier, monospace;
}

.app-popup-body .submit-btn.is-blocked {
  background: linear-gradient(135deg, #535868, #2f3340) !important;
  border-color: #7a7a7a !important;
  color: #f3f4f6 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.app-popup-body .submit-btn.is-blocked:hover {
  box-shadow: none !important;
  transform: none !important;
}

@keyframes activationPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.cancel-btn {
  background: #666;
  color: white;
  border: 2px solid #888;
}

/* ===== MENSAGEM DE CONFIRMAÇÃO ===== */
.confirmation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.confirmation-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #333e91 100%);
  border: 3px solid #00ff00;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.confirmation-content .fa-check-circle {
  font-size: 60px;
  color: #00ff00;
  margin-bottom: 20px;
}

.confirmation-content h3 {
  color: #00ff00;
  margin-bottom: 15px;
  font-size: 22px;
}

.confirmation-content p {
  color: white;
  margin-bottom: 25px;
  font-size: 16px;
}

.ok-btn {
  background: #0a1a63;
  color: white;
  border: 2px solid #00ff00;
  padding: 12px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.ok-btn:hover {
  background: #00ff00;
  color: black;
  transform: translateY(-2px);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background-color: #3538a1;
}
::-webkit-scrollbar-thumb {
  background-color: #df0b0bcc;
}

/* Setas Minimalistas com Partículas Direcionais */
.minimalist-directional {
  margin-top: 40px;
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.minimalist-directional.up {
  color: #4ade80;
}
.minimalist-directional.down {
  color: #f87171;
}
.minimalist-directional::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 3;
}
.minimalist-directional::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: currentColor;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.minimalist-directional.up::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.minimalist-directional.down::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* Partículas para seta verde (subindo) */
.minimalist-directional.up .particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  z-index: 2;
  animation: particle-up 3s infinite linear;
}
.minimalist-directional.up .particle {
  background-color: #4ade80;
}
.minimalist-directional.up .particle:nth-child(1) {
  top: 60px;
  left: 20px;
  animation-delay: 0s;
}
.minimalist-directional.up .particle:nth-child(2) {
  top: 65px;
  right: 10px;
  animation-delay: 0.5s;
}
.minimalist-directional.up .particle:nth-child(3) {
  top: 70px;
  left: 15px;
  animation-delay: 1s;
}
.minimalist-directional.up .particle:nth-child(4) {
  top: 75px;
  right: 20px;
  animation-delay: 1.5s;
}
.minimalist-directional.up .particle:nth-child(5) {
  top: 80px;
  left: 10px;
  animation-delay: 2s;
}

@keyframes particle-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  80% {
    transform: translateY(-60px) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-80px) scale(0);
    opacity: 0;
  }
}

/* Partículas para seta vermelha (descendo) */
.minimalist-directional.down .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 2;
  animation: particle-down 3s infinite linear;
}
.minimalist-directional.down .particle {
  background-color: #f87171;
}
.minimalist-directional.down .particle:nth-child(1) {
  bottom: 60px;
  left: 20px;
  animation-delay: 0s;
}
.minimalist-directional.down .particle:nth-child(2) {
  bottom: 65px;
  right: 10px;
  animation-delay: 0.5s;
}
.minimalist-directional.down .particle:nth-child(3) {
  bottom: 70px;
  left: 15px;
  animation-delay: 1s;
}
.minimalist-directional.down .particle:nth-child(4) {
  bottom: 75px;
  right: 20px;
  animation-delay: 1.5s;
}
.minimalist-directional.down .particle:nth-child(5) {
  bottom: 80px;
  left: 10px;
  animation-delay: 2s;
}

@keyframes particle-down {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  80% {
    transform: translateY(60px) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translateY(80px) scale(0);
    opacity: 0;
  }
}

/* ===== SISTEMA DE LOGIN & ATIVAÇÃO ===== */

/* Ícone de perfil */
.user-profile-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3538a1, #0a1a63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd900;
  font-size: 28px;
  margin-right: 10px;
  margin-left: -15px;
  cursor: pointer;
  border: 2px solid #df0b0b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.user-profile-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(223, 11, 11, 0.4);
  border-color: #ffd900;
}

.profile-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #df0b0b;
  border-radius: 50%;
  border: 2px solid #3538a1;
  box-shadow: 0 0 8px rgba(223, 11, 11, 0.8);
  animation: vznStatusBlink 10s linear infinite;
}

.profile-status-indicator.logged-in {
  background-color: #00ff00;
  box-shadow: 0 0 8px #00ff00;
  animation: none;
}

@keyframes vznStatusBlink {
  0%,
  90%,
  92%,
  94%,
  100% {
    opacity: 1;
  }
  91%,
  93%,
  95% {
    opacity: 0.12;
  }
}

/* ===== POPUP DE AUTENTICAÇÃO ===== */
.vzn-auth-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 0px;
}
.vzn-auth-popup-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #ffd900;
  border-radius: 15px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.vzn-auth-popup-header {
  background: linear-gradient(135deg, #0d471b, #048124);
  color: white;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffd900;
}
.vzn-auth-popup-header h3 {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Forçar título do popup em preto quando solicitado */
#vznAuthTitle {
  color: #fbff00 !important;
}

#vznAuthTitle i {
  font-size: 26px;
}

.vzn-auth-close-btn,
.vzn-auth-back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vzn-auth-close-btn:hover,
.vzn-auth-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.vzn-auth-popup-body {
  padding: 25px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

/* Tela inicial de opções */
.vzn-auth-initial-screen {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vzn-auth-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #3538a1;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.vzn-auth-option:hover {
  background: rgba(53, 56, 161, 0.2);
  border-color: #ffd900;
  transform: translateY(-3px);
}

.vzn-auth-option i {
  font-size: 32px;
  color: #ffd900;
}

.vzn-auth-option span {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.vzn-auth-option p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

/* Formulários */
.vzn-auth-form {
  animation: fadeIn 0.3s ease;
}

.vzn-form-field {
  margin-bottom: 20px;
  position: relative;
}

.vzn-form-field label {
  display: block;
  color: #ffd900;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vzn-form-field input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #00ffea;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.vzn-form-field input:focus {
  outline: none;
  border-color: #ffd900;
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.vzn-password-toggle {
  position: absolute;
  right: 15px;
  top: 40px;
  color: #00ffea;
  cursor: pointer;
}

.vzn-field-check {
  position: absolute;
  right: 15px;
  top: 40px;
  font-size: 14px;
}

.vzn-field-check.available {
  color: #00ff00;
}

.vzn-field-check.taken {
  color: #ff4444;
}

.vzn-form-actions {
  margin-top: 25px;
}

.vzn-auth-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00ffea, #0099ff);
  color: black;
  border: 2px solid #00ffea;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.vzn-auth-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 234, 0.4);
}

.vzn-auth-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.vzn-auth-message.success {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid #00ff00;
  display: block;
}

.vzn-auth-message.error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border: 1px solid #ff4444;
  display: block;
}

/* Menu do perfil */
.vzn-profile-menu {
  display: flex;
  flex-direction: column;
}

.vzn-profile-info {
  display: flex;
  align-items: center;
  gap: 8px; /* mais próximo do ícone */
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #3538a1;
  order: 1;
}

.vzn-profile-info i {
  font-size: 50px;
  color: #ffd900;
}

.vzn-profile-info h4 {
  margin: 0;
  color: white;
  font-size: 18px;
  margin-left: 0; /* remover valor inválido */
  text-align: left; /* alinhar à esquerda */
}

.vzn-profile-info p {
  margin: 2px 0 0 0;
  color: #aaa;
  font-size: 16px;
  text-align: left; /* alinhar à esquerda */
}

/* Layout em linhas com 2 botões por linha (50% / 50%) */
.vzn-profile-options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  order: 3;
}

.vzn-profile-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3538a1;
  border-radius: 10px;
  padding: 16px 15px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  transition: all 0.3s ease;
}

.vzn-profile-option:hover {
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.13);
  border-color: #ff9900a8;
  transform: translateY(-1px);
}

.vzn-profile-option i {
  color: #ffd900;
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.vzn-profile-option span {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.vzn-logout-option {
  color: white;
  border-color: #ff4444;
}

.vzn-logout-option i {
  color: #ff4444;
}

.vzn-logout-option:hover {
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
  border-color: #ff4444;
  transform: translateY(-3px);
}

.vzn-logout-option span {
  color: white;
}

/* ===== POP-UP DE HISTÓRICO ===== */
.vzn-history-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.vzn-history-popup-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #00ffea;
  border-radius: 15px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
}

.vzn-history-popup-header {
  background: linear-gradient(135deg, #0a1a63, #3538a1);
  color: white;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00ffea;
}

.vzn-history-popup-header h3 {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vzn-history-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vzn-history-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.vzn-history-popup-body {
  padding: 20px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

.vzn-history-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.vzn-history-empty {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
}

.vzn-history-empty i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #3538a1;
}

/* ===== SISTEMA DE AVISOS DO HISTÓRICO - CORRIGIDO ===== */

/* Ícone de aviso no cabeçalho */
.history-warning-icon {
  cursor: pointer;
  color: #ffd900;
  font-size: 23px;
  transition: all 0.3s ease;
  z-index: 1002; /* Aumentado para ficar acima do popup */
}

.history-warning-icon:hover {
  color: #ff9800;
  transform: scale(1.1);
}

/* TOOLTIP PARA DESKTOP - SOBREPOSTO AO POPUP DE HISTÓRICO */
.warning-tooltip {
  position: absolute;
  top: 520%; /* Centraliza verticalmente */
  left: 40%; /* Centraliza horizontalmente */
  transform: translate(-50%, -50%); /* Centraliza exatamente no meio */
  width: 90%; /* Usa 90% da largura do popup pai */
  max-width: 500px; /* Largura máxima */
  height: 425px;
  margin-top: 90px;
  max-height: 90vh; /* Altura máxima */
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #ffd900;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1003; /* Fica acima do popup de histórico (1002) */
  overflow-y: auto;
}

/* Seta do tooltip REMOVIDA - não precisa mais */
.warning-tooltip::before {
  display: none;
}

.history-warning-icon:hover .warning-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%); /* Mantém centralizado */
}

/* Conteúdo do tooltip */
.tooltip-content h4 {
  color: #ffd900;
  margin-bottom: 15px;
  margin-top: 8px;
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 217, 0, 0.4);
  padding-bottom: 10px;
}

.warning-item {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.warning-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.warning-item p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.warning-item ul {
  margin: 8px 0 8px 20px;
  padding: 0;
}

.warning-item li {
  color: #ddd;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
  position: relative;
  text-align: left; /* 👈 força esquerda */
}

.warning-item li::before {
  content: "•";
  color: #ffd900;
  font-size: 16px;
  position: absolute;
  left: -15px;
}

/* POP-UP PARA MOBILE - CORRIGIDO */
.mobile-warning-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10004; /* Acima de tudo */
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.mobile-warning-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 3px solid #ff9800;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  max-height: 85vh;
  overflow: hidden;
  animation: popupAppear 0.3s ease-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mobile-warning-header {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffd900;
}

.mobile-warning-header h4 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-warning-close {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-warning-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-warning-body {
  padding: 20px;
  max-height: calc(85vh - 150px);
  overflow-y: auto;
}

.mobile-warning-footer {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 217, 0, 0.3);
  text-align: center;
}

.mobile-warning-ok-btn {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 150px;
}

.mobile-warning-ok-btn:hover {
  background: linear-gradient(135deg, #ff5722, #ff9800);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.5);
}

/* Scrollbar */
.warning-tooltip::-webkit-scrollbar,
.mobile-warning-body::-webkit-scrollbar {
  width: 8px;
}

.warning-tooltip::-webkit-scrollbar-track,
.mobile-warning-body::-webkit-scrollbar-track {
  background: rgba(255, 217, 0, 0.1);
  border-radius: 4px;
}

.warning-tooltip::-webkit-scrollbar-thumb,
.mobile-warning-body::-webkit-scrollbar-thumb {
  background: #ff9800;
  border-radius: 4px;
}

.warning-tooltip::-webkit-scrollbar-thumb:hover,
.mobile-warning-body::-webkit-scrollbar-thumb:hover {
  background: #ff5722;
}

/* Ajuste para o cabeçalho do histórico */
.vzn-history-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.vzn-history-popup-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* Animação */
@keyframes popupAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Cartão individual de histórico (será preenchido via JS) */
.vzn-history-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  border-left: 4px solid #ffd900;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease;
}

.vzn-history-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.vzn-history-card.pending {
  border-left-color: #ffd900;
}

.vzn-history-card.success {
  border-left-color: #00ff00;
}

.vzn-history-card.error {
  border-left-color: #ff4444;
}

.vzn-history-field {
  flex: 1;
  min-width: 10px;
}

.vzn-history-field-label {
  font-size: 18px;
  color: #ffd900;
  margin-bottom: 5px;
  font-weight: bold;
}

.vzn-history-field-value {
  font-size: 15px;
  color: white;
  word-break: break-all;
}

.vzn-history-status {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.vzn-history-status.pending {
  background: rgba(255, 217, 0, 0.2);
  color: #ffd900;
}

.vzn-history-status.success {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}

.vzn-history-status.error {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar personalizada */
.vzn-auth-popup-body::-webkit-scrollbar,
.vzn-history-popup-body::-webkit-scrollbar {
  width: 4px;
}

.vzn-auth-popup-body::-webkit-scrollbar-track,
.vzn-history-popup-body::-webkit-scrollbar-track {
  background: #3538a1;
  border-radius: 4px;
}

.vzn-auth-popup-body::-webkit-scrollbar-thumb,
.vzn-history-popup-body::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.vzn-auth-popup-body::-webkit-scrollbar-thumb:hover,
.vzn-history-popup-body::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

/* ===== LEMBRETE DE SENHA NO FORMULÁRIO DE LOGIN ===== */

.vzn-password-reminder {
  background: linear-gradient(135deg, #ffd90011 0%, #ffaa0008 100%);
  border: 2px solid #ffd900;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0 25px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.vzn-password-reminder p {
  color: white;
  font-size: 12px;
  line-height: 1.4;
  margin: 5px 0;
}

/* ===== POSICIONAMENTO DO ÍCONE DENTRO DO CAMPO DE PESQUISA ===== */

.app-search-container {
  position: relative; /* Isso já deve existir, é importante */
}

/* Ajuste a posição do ícone dentro do container de pesquisa */
.app-search-container .user-profile-icon {
  position: absolute;
  right: 10px; /* Distância da borda direita */
  top: 50%;
  transform: translateY(-50%);
  width: 40px; /* Um pouco menor para caber no campo */
  height: 40px;
  background: linear-gradient(135deg, #3538a1, #0a1a63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd900;
  font-size: 22px;
  cursor: pointer;
  border: 2px solid #df0b0b;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 5; /* Para ficar acima do campo de input */
}

.app-search-container .user-profile-icon:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(223, 11, 11, 0.4);
  border-color: #ffd900;
}

/* Ajuste o indicador de status para o novo tamanho */
.profile-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background-color: #df0b0b;
  border-radius: 50%;
  border: 2px solid #3538a1;
  box-shadow: 0 0 6px rgba(223, 11, 11, 0.8);
  animation: vznStatusBlink 10s linear infinite;
}

.profile-status-indicator.logged-in {
  background-color: #00ff00;
  box-shadow: 0 0 6px #00ff00;
  animation: none;
}

/* WhatsApp-box desativada (COM EXCEÇÃO PARA O ÍCONE)
   Observação: não aplicar filter/opacity no container, porque filtros no elemento pai afetam todo conteúdo,
   o que impede o ícone de manter as cores. Em vez disso, aplicamos o efeito somente aos elementos bloqueados. */
.whatsapp-box.vzn-disabled {
  background-color: #2a2a2a !important;
  /* NÃO USAR pointer-events: none AQUI - vamos controlar por elemento */
}

/* Aplicar efeito de desativado apenas nos elementos que devem ser bloqueados */
.whatsapp-box.vzn-disabled .app-select-input,
.whatsapp-box.vzn-disabled .activate-app-btn,
.whatsapp-box.vzn-disabled .app-info-display,
.whatsapp-box.vzn-disabled .items,
.whatsapp-box.vzn-disabled .search-info-container {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
  filter: grayscale(0.8);
}

/* Deixar a lupa de pesquisa cinza e sem interação quando o box estiver desativado */
.whatsapp-box.vzn-disabled .search-icon {
  color: #9a9a9a !important;
  opacity: 0.6;
  filter: grayscale(0.9);
  pointer-events: none;
  cursor: not-allowed;
}

/* MAS o ícone do perfil DEVE permanecer clicável e colorido! */
.whatsapp-box.vzn-disabled .user-profile-icon {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Botão de ativação bloqueado (mantém) */
.activate-app-btn[disabled] {
  background: linear-gradient(135deg, #666, #888) !important;
  cursor: not-allowed !important;
}

.app-popup-header h3 {
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Scroll personalizado */
.app-popup-body::-webkit-scrollbar {
  width: 8px;
}

.app-popup-body::-webkit-scrollbar-track {
  background: #3538a1;
  border-radius: 4px;
}

.app-popup-body::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.app-popup-body::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

.app-popup-body {
  scrollbar-width: thin;
  scrollbar-color: #df0b0b #3538a1;
}

/* Campos do formulário */
.form-field {
  margin-bottom: 15px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #00ffea;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 13px;
  font-family: "Courier New", Courier, monospace;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Botões de ação */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cancel-btn,
.submit-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.cancel-btn {
  background: #666;
  color: white;
  border: 2px solid #888;
}

/* ============================================== */
/* ETAPA 1 - SISTEMA DE RECARGA (MEU PERFIL) */
/* ============================================== */

/* ===== BOTÕES DE SALDO NO MEU PERFIL ===== */
.vzn-balance-section {
  margin: 0 0 15px 0;
  border-bottom: 1px solid #3538a1;
  padding-bottom: 15px;
  order: 2;
}

.balance-buttons-container {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.balance-display-btn {
  flex: 1;
  background: linear-gradient(135deg, #0a1a63, #3538a1);
  border: 2px solid #ffd900;
  border-radius: 10px;
  text-align: center;
  cursor: default;
  color: #ffd900;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  box-shadow: 0 4px 10px rgba(255, 217, 0, 0.2);
}

.balance-display-btn i {
  font-size: 20px;
  margin-right: 10px;
}

.balance-display-btn .balance-value {
  font-size: 18px;
  font-family: "Orbitron", sans-serif;
  color: #00ffea;
  text-shadow: 0 0 5px rgba(0, 255, 234, 0.5);
}

.add-balance-btn {
  flex: 1;
  background: linear-gradient(135deg, #00c853, #009624);
  border: 2px solid #00ff00;
  border-radius: 10px;

  text-align: center;
  cursor: pointer;
  color: white;
  font-weight: bold;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);

  font-family: "Montserrat", sans-serif;
}

.add-balance-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 200, 83, 0.5);
  background: linear-gradient(135deg, #009624, #00c853);
}

.add-balance-btn i {
  font-size: 20px;
  margin-right: 5px;
}

/* ===== POP-UP DE RECARGA ===== */
.vzn-recharge-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10003;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.vzn-recharge-popup-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #ffd900;
  border-radius: 15px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: popupAppear 0.3s ease-out;
}

.vzn-recharge-popup-header {
  background: linear-gradient(135deg, #0a1a63, #3538a1);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffd900;
}

.vzn-recharge-popup-header h3 {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vzn-recharge-popup-header i {
  font-size: 25px;
}

.vzn-recharge-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vzn-recharge-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.vzn-recharge-popup-body {
  padding: 25px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

/* ===== SELEÇÃO DE MOEDA ===== */
.recharge-currency-selection {
  margin-bottom: 25px;
}

.currency-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.currency-option {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #3538a1;
  border-radius: 12px;
  padding: 20px 15px;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
}

.currency-option:hover {
  background: rgba(53, 56, 161, 0.2);
  border-color: #ffd900;
}

.currency-option.selected {
  background: rgba(53, 56, 161, 0.3);
  border-color: #00ffea;
  box-shadow: 0 0 15px rgba(0, 255, 234, 0.3);
}

.currency-option i {
  font-size: 25px;
}

.currency-option.pix i {
  color: #00c853;
}

/* Adicionar na seção de moedas no CSS */
.currency-option.tether i {
  color: #50af95; /* Cor verde do Tether */
}

.currency-option.tether.selected {
  border-color: #50af95;
  box-shadow: 0 0 15px rgba(80, 175, 149, 0.3);
}

.currency-option span {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

/* ===== VALORES DE RECARGA (OCULTOS INICIALMENTE) ===== */
.recharge-values-section {
  display: none;
  margin: 25px 0;
}

.section-title {
  color: #ffd900;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recharge-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.recharge-value-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #3538a1;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
}

.recharge-value-option:hover {
  background: rgba(53, 56, 161, 0.2);
  border-color: #ffd900;
  transform: translateY(-2px);
}

.recharge-value-option.selected {
  background: rgba(0, 255, 234, 0.1);
  border-color: #00ffea;
  box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
  color: #00ffea;
}

.recharge-amount {
  font-size: 18px;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
}

.recharge-equivalent {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

.bitcoin-equivalent {
  color: #f7931a;
}

/* ===== INFORMAÇÕES DE PAGAMENTO (OCULTAS INICIALMENTE) ===== */
.payment-info-section {
  display: none;
  margin: 25px 0;
  animation: fadeIn 0.5s ease;
}

.payment-method-title {
  color: #00ffea;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.payment-instructions {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== POPUP DE PAGAMENTO ATUALIZADO ===== */

/* Container principal mais compacto */
.vzn-payment-popup .vzn-recharge-popup-content {
  max-width: 380px;
}

.vzn-payment-popup .vzn-recharge-popup-body {
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
}

/* Valor em destaque */
.payment-amount-display {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  border-left: 4px solid #00ffea;
}

.payment-amount {
  font-size: 25px;
  font-weight: bold;
  color: #00ffea;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 8px rgba(0, 255, 234, 0.3);
}

/* Timer simplificado (sem fundo amarelo) */
.payment-timer-simple {
  text-align: center;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-timer-simple i {
  color: #ffd900;
  font-size: 11px;
}

#paymentTimer {
  color: #00ffea;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 13px;
  min-width: 45px;
  display: inline-block;
}

#paymentTimer.warning {
  color: #ff9800;
  animation: pulse 1s infinite;
}

#paymentTimer.danger {
  color: #ff4444;
  animation: pulse 0.5s infinite;
}

/* QR Code centralizado e tamanho ajustado */
.qr-code-center-container {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.qr-code-wrapper {
  width: 220px;
  height: 195px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 3px solid #00ffea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.qr-code-wrapper img {
  width: 103%;
  height: 103%;
  object-fit: contain;
  border-radius: 5px;
}

.qr-code-placeholder {
  text-align: center;
  color: #666;
}

.qr-code-placeholder i {
  font-size: 50px;
  color: #00ffea;
  margin-bottom: 10px;
  display: block;
}

.qr-code-placeholder span {
  font-size: 12px;
  color: #888;
}

/* Código PIX compacto */
.pix-code-compact {
  margin: 20px 0px 10px 0px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 9px;
  border: 1px solid rgba(0, 255, 234, 0.1);
}

.pix-code-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pix-code-text {
  flex: 1;
  color: white;
  font-family: "Courier New", monospace;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* Divider (traçozinho) */
.divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

/* Botão de copiar */
.copy-pix-btn {
  background: linear-gradient(135deg, #00ffea, #0099ff);
  border: none;
  border-radius: 6px;
  width: 35px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
  font-size: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-pix-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 255, 234, 0.5);
}

.copy-pix-btn:active {
  transform: scale(0.95);
}

/* Feedback de cópia */
.copy-feedback {
  text-align: center;
  color: #00ff00;
  font-size: 12px;
  font-weight: bold;
  margin-top: 8px;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.copy-feedback.show {
  height: 18px;
  opacity: 1;
  margin-top: 8px;
}

/* Status simplificado */
.payment-status-simple {
  text-align: center;
  color: white;
  font-size: 13px;
  padding: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fazer Tether parecer desabilitada: cinza e não clicável */
.currency-option.tether {
  opacity: 0.45;
  filter: grayscale(100%);
  cursor: not-allowed;
  pointer-events: none; /* impede clique */
  position: relative;
}

/* Botão X para fechar instantâneo */
#vznPaymentCloseBtn {
  background: rgba(100, 95, 95, 0.2);
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#vznPaymentCloseBtn:hover {
  background: #ff4444;
  color: white;
  transform: rotate(90deg);
}

/* Remover ações (botões) completamente */
.vzn-payment-popup .recharge-actions {
  display: none;
}

/* Mensagem de tempo expirado */
.time-expired-message {
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid #ff4444;
  color: #ff4444;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin: 15px 0;
  animation: fadeIn 0.3s ease;
  font-size: 14px;
}

.time-expired-message i {
  margin-right: 8px;
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

/* ===== RESPONSIVIDADE PARA CELULAR ===== */
@media (max-width: 480px) {
  .vzn-payment-popup .vzn-recharge-popup-content {
    max-width: 95%;
    margin: 10px;
  }

  .qr-code-wrapper {
    width: 200px;
    height: 200px;
  }

  .payment-amount {
    font-size: 24px;
  }

  .pix-code-text {
    font-size: 10px;
  }

  .copy-pix-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ÁREA PARA QR CODE / CHAVE (DEIXAR COMENTADA PARA VOCÊ PREENCHER DEPOIS) */

.payment-keys {
  text-align: left;
  margin-top: 15px;
}

.payment-key-item {
  margin-bottom: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border-left: 3px solid #00ffea;
}

.key-label {
  font-size: 12px;
  color: #ffd900;
  margin-bottom: 5px;
  font-weight: bold;
}

.key-value {
  font-size: 13px;
  color: white;
  word-break: break-all;
  font-family: "Courier New", monospace;
}

.copy-key-btn {
  background: #3538a1;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.copy-key-btn:hover {
  background: #0a1a63;
}

/* ===== BOTÕES DE AÇÃO ===== */
.recharge-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.recharge-action-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.cancel-recharge-btn {
  background: #666;
  color: white;
  border: 2px solid #888;
}

.cancel-recharge-btn:hover {
  background: #888;
  transform: translateY(-2px);
}

.confirm-recharge-btn {
  background: linear-gradient(135deg, #00ffea, #0099ff);
  color: black;
  border: 2px solid #00ffea;
  font-weight: 800;
}

.confirm-recharge-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 234, 0.4);
}

.confirm-recharge-btn:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.5;
  transform: none !important;
  box-shadow: none;
}

/* ===== MENSAGENS ===== */
.recharge-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.recharge-message.success {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid #00ff00;
}

.recharge-message.error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border: 1px solid #ff4444;
}

/* ===== SCROLLBAR ===== */
.vzn-recharge-popup-body::-webkit-scrollbar {
  width: 8px;
}

.vzn-recharge-popup-body::-webkit-scrollbar-track {
  background: #3538a1;
  border-radius: 4px;
}

.vzn-recharge-popup-body::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.vzn-recharge-popup-body::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

.vzn-recharge-popup-body {
  scrollbar-width: thin;
  scrollbar-color: #df0b0b #3538a1;
}

/* ===== ESTILO DO SALDO NO HEADER DO POP-UP ===== */
.app-popup-header h3 .balance-label {
  color: #00ffea !important;
  font-weight: bold;
  font-size: 17px;
  margin-top: 1px;
  text-transform: uppercase; /* <-- ADICIONADO: força MAIÚSCULAS apenas aqui */
}

/* Estilo para o valor do saldo no cabeçalho */
.app-popup-header h3 .balance-value {
  color: #00ffea !important; /* Cor do número */
  font-family: "Orbitron", sans-serif !important; /* Fonte do preço */
  font-weight: bold !important; /* Peso da fonte */
  font-size: 15px !important; /* Tamanho igual ao preço */
  text-shadow: 0 0 5px rgba(0, 255, 234, 0.3) !important; /* Efeito de brilho */
}

/* ===== LINK "ESQUECI A SENHA" NO FORMULÁRIO DE LOGIN ===== */
.vzn-forgot-password-link {
  text-align: left;
  margin: -15px 0 20px 0;
  padding: 0 5px;
}

.vzn-forgot-password-link a {
  color: #00ffea;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.vzn-forgot-password-link a:hover {
  color: #ffd900;
  text-decoration: underline;
}

.vzn-forgot-password-link a i {
  font-size: 12px;
}

/* Botão "Voltar para login" no pop-up de recuperação */
.vzn-back-to-login-btn {
  background: transparent;
  border: none;
  color: #00ffea;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vzn-back-to-login-btn:hover {
  background: rgba(0, 255, 234, 0.1);
  color: #ffd900;
}

/* ===== ESTILO DO SALDO NO HEADER DO POP-UP ===== */
.app-popup-header h3 .balance-label {
  color: #ffd900 !important;
  font-weight: bold;
}

.app-popup-header h3 .balance-value {
  color: #00ffea !important;
  font-family: "Orbitron", sans-serif !important;
  font-weight: bold !important;
  font-size: 16px !important;
  text-shadow: 0 0 5px rgba(0, 255, 234, 0.3) !important;
}

/* ===== POP-UP DE SALDO INSUFICIENTE (SEGUNDA OCORRÊNCIA) ===== */
.vzn-insufficient-popup .vzn-recharge-popup-content {
  max-width: 450px;
}

.vzn-insufficient-popup .vzn-recharge-popup-header {
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  border-bottom: 2px solid #ffd900;
}

.vzn-insufficient-popup .vzn-recharge-popup-header h3 {
  color: white;
}

.vzn-insufficient-popup .vzn-recharge-popup-body {
  max-height: 80vh;
  overflow-y: auto;
}

/* Ajuste do scrollbar no segundo código (diferente do primeiro) */
.app-popup_body::-webkit-scrollbar-thumb,
.app-popup-content::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.app-popup_body::-webkit-scrollbar-thumb:hover,
.app-popup-content::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

/* Ajuste do scrollbar no segundo código para popup de recarga */
.vzn-recharge-popup_body::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.vzn-recharge-popup_body::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

/* Ajuste do scrollbar no segundo código para auth e history */
.vzn-auth-popup_body::-webkit-scrollbar-thumb,
.vzn-history-popup_body::-webkit-scrollbar-thumb {
  background: #df0b0b;
  border-radius: 4px;
}

.vzn-auth-popup_body::-webkit-scrollbar-thumb:hover,
.vzn-history-popup_body::-webkit-scrollbar-thumb:hover {
  background: #ff5252;
}

.vzn-auth-popup-body::-webkit-scrollbar-track,
.vzn-history-popup_body::-webkit-scrollbar-track {
  background: #3538a1;
  border-radius: 4px;
}

/* ==============================================
  SISTEMA DE CHAT - CSS - CORRIGIDO (ESTILO ORIGINAL)
   ============================================== */

/* Popup principal do chat */
.chat-panel-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10004;
  align-items: center;
  justify-content: center;
  padding: 0px;
  animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.chat-panel-content {
  background: linear-gradient(135deg, #0f1424 0%, #0a1020 100%);
  border: 2px solid #00ffea;
  border-radius: 15px;
  width: 100%;
  max-width: 900px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Cabeçalho do chat - CORRIGIDO (estilo original) */
.chat-panel-header {
  padding: 10px 25px;
  border-bottom: 2px solid #3538a1;
  background: rgba(53, 56, 161, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-panel-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #ffd900 !important; /* Amarelo como pedido */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== POP-UP DE AFILIADOS (RESPONSIVO) ===== */
.affiliate-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10003;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.affiliate-popup-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #00ffea;
  border-radius: 15px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.affiliate-popup-header {
  background: linear-gradient(135deg, #0d471b, #048124);
  padding: 18px;
  border-bottom: 2px solid #00ffea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.affiliate-popup-header h3 {
  color: #ffd900;
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.affiliate-popup-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.affiliate-popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.affiliate-popup-body {
  padding: 25px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
  color: white;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}

.affiliate-popup-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.affiliate-section {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 255, 234, 0.15);
}

.affiliate-section:last-child {
  border-bottom: none;
}

.section-title {
  color: #ffd900;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title.collapsible {
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.section-title.collapsible:hover {
  background: rgba(0, 255, 234, 0.1);
}

.commissions-chevron {
  transition: transform 0.25s ease;
}

.commissions-chevron.is-open {
  transform: rotate(180deg);
}

.pending-chevron {
  transition: transform 0.25s ease;
}

.pending-chevron.is-open {
  transform: rotate(180deg);
}

/* Link de indicacao */
.referral-link-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.referral-link-input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #00ffea;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-family: monospace;
  transition: all 0.3s ease;
}

.referral-link-input:focus {
  outline: none;
  border-color: #ffd900;
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
}

.copy-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #00ffea, #0099ff);
  border: none;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

.referral-info-text {
  font-size: 11px;
  color: #aaa;
  margin: 0;
  padding: 10px;
  background: rgba(0, 255, 234, 0.06);
  border-left: 3px solid #00ffea;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Estatisticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.stat-card {
  background: rgba(0, 255, 234, 0.05);
  border: 1px solid rgba(0, 255, 234, 0.4);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.stat-icon {
  font-size: 24px;
  color: #ffd900;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 16px;
  color: #00ff00;
  font-weight: bold;
}

/* Resgate */
.withdrawal-container {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 234, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.total-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 217, 0, 0.05);
  border-radius: 8px;
  border-left: 4px solid #ffd900;
}

.amount-label {
  color: #aaa;
  font-size: 14px;
}

.amount-value {
  font-size: 20px;
  color: #ffd900;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
}

.withdrawal-requirement {
  margin-bottom: 20px;
}

.withdrawal-requirement p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #aaa;
}

.requirement-progress {
  margin-bottom: 15px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 255, 234, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffea, #0099ff);
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  color: #00ffea;
}

.withdrawal-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00ffea, #0099ff);
  border: none;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.withdrawal-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 234, 0.4);
}

.withdrawal-btn:disabled {
  background: #666;
  cursor: not-allowed;
  color: #999;
}

.withdrawal-btn.state-approved {
  background: linear-gradient(135deg, #0e8a3b, #24c45f);
  color: #fff;
}

.withdrawal-btn.state-rejected {
  background: linear-gradient(135deg, #8a1616, #c83b3b);
  color: #fff;
}

.withdrawal-btn.state-pending {
  background: linear-gradient(135deg, #8f7a10, #ccad18);
  color: #101010;
}

.withdrawal-btn.state-approved:disabled,
.withdrawal-btn.state-rejected:disabled,
.withdrawal-btn.state-pending:disabled {
  opacity: 1;
}

.withdrawal-status {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid #00ff00;
  border-radius: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 20px;
  color: #00ff00;
  font-size: 13px;
  margin-bottom: 10px;
}

.status-description {
  margin: 0;
  font-size: 12px;
  color: #aaa;
}

/* Solicitacoes pendentes */
.pending-withdrawals-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 234, 0.2);
  max-height: 240px;
  overflow-y: auto;
}

.pending-withdrawals-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pending-withdrawal-block {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 234, 0.25);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.pending-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.pending-info {
  flex: 1 1 50%;
  min-width: 0;
  text-align: left;
}

.pending-label {
  color: #aaa;
  font-size: 11px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.pending-amount {
  font-size: 15px;
  color: #ffd900;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  line-height: 1.2;
}

.pending-meta-line {
  margin-top: 4px;
  color: #aaa;
  font-size: 10px;
  line-height: 1.2;
}

.pending-status {
  flex: 1 1 50%;
  min-width: 0;
  text-align: right;
}

.pending-withdrawal-block .status-badge {
  font-size: 10px;
  padding: 6px 8px;
  margin-bottom: 4px;
}

.pending-description {
  font-size: 10px;
  color: #aaa;
  margin-top: 6px;
  text-align: right;
  line-height: 1.2;
}

.status-badge.approved {
  background: rgba(76, 175, 80, 0.1);
  border-color: #4caf50;
  color: #4caf50;
}

.status-badge.rejected {
  background: rgba(244, 67, 54, 0.1);
  border-color: #f44336;
  color: #f44336;
}

/* Comissoes */
.commissions-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 234, 0.2);
  max-height: 250px;
  overflow-y: auto;
}

.commission-group {
  margin-bottom: 20px;
}

.group-title {
  color: #00ffea;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(0, 255, 234, 0.1);
  border-radius: 4px;
}

.commission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #ffd900;
}

.commission-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.commission-user {
  color: white;
  font-size: 13px;
  font-weight: bold;
}

.commission-detail {
  color: #00ffea;
  font-size: 11px;
}

.commission-date {
  color: #aaa;
  font-size: 11px;
}

.commission-amount {
  color: #00ff00;
  font-weight: bold;
  font-size: 12px;
}

.no-commissions {
  text-align: center;
  padding: 30px 20px;
  color: #aaa;
}

.no-commissions i {
  font-size: 40px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.no-commissions p {
  margin: 0;
}

/* Informacoes */
.info-section {
  border-bottom: none;
}

.info-box {
  background: rgba(0, 255, 234, 0.05);
  border: 1px solid #00ffea;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.info-box strong {
  color: #00ffea;
  display: block;
  margin-left: 5px;
}

.info-box ul {
  margin: 8px 0 0 5px;
  padding-left: 5px;
  font-size: 12px;
  color: #aaa;
}

.info-box li {
  margin: 4px 0;
}

.loading-placeholder {
  text-align: center;
  padding: 20px;
  color: #aaa;
}

@media (max-width: 900px) {
  .affiliate-popup-content {
    max-width: 95%;
  }
}

@media (max-width: 600px) {
  .affiliate-popup {
    padding: 0px;
  }

  .affiliate-popup-header {
    padding: 14px;
  }

  .affiliate-popup-header h3 {
    font-size: 14px;
  }

  .affiliate-popup-body {
    padding: 15px;
  }

  .referral-link-container {
    flex-direction: column;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .amount-value {
    font-size: 16px;
  }

  .pending-item {
    flex-direction: row;
    gap: 8px;
  }
}

/* Bolinha verde pulsante (indicador de online) */
.status-indicator {
  width: 10px;
  height: 10px;
  background-color: #00ff00;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s infinite ease-in-out;
  box-shadow: 0 0 8px #00ff00;
}

.status-indicator.pulsing {
  animation: statusPulse 1.5s infinite ease-in-out;
}

@keyframes statusPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Barra de aviso sobre exclusão após 3 dias */
.chat-warning-bar {
  background: rgba(255, 217, 0, 0.1);
  padding: 8px 15px;
  border-bottom: 1px solid rgba(255, 217, 0, 0.3);
  font-size: 12px;
  color: #ffd900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Container das mensagens */
.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(19, 18, 18, 0.904);
}

/* Mensagem individual */
.chat-message {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0px;
  max-width: 80%;
  animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mensagem de outros usuários (ESQUERDA) */
.chat-message.other {
  align-self: flex-start;
}

/* Mensagem própria (DIREITA) */
.chat-message.own {
  align-self: flex-end;
  flex-direction: row-reverse;
}

/* Tremida LEVE e LENTA para seleção */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-1px);
  }
  40% {
    transform: translateX(1px);
  }
  60% {
    transform: translateX(-1px);
  }
  80% {
    transform: translateX(1px);
  }
}

.chat-message.shaking {
  animation:
    messageSlideIn 0.3s ease,
    shake 1.8s infinite ease-in-out;
  cursor: pointer;
}

/* Avatar (bonequinho) */
.message-avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd900, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 15px;
  margin-top: 0;
  align-self: flex-end;
  flex-shrink: 0;
}

.chat-message.own .message-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.chat-message.other .message-avatar {
  margin-right: 10px;
  margin-left: 0;
}

/* Bolha da mensagem */
.message-bubble {
  max-width: 210px;
  min-width: 60px;
  padding: 6px 14px;
  border-radius: 18px;
  position: relative;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Bolha de outros usuários (ESQUERDA) - BRANCA */
.chat-message.other .message-bubble {
  background: white;
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 16px;
  border-top-right-radius: 0px;
  border-bottom-right-radius:16px;
  color: #333;
}

/* Bolha própria (DIREITA) - VERDE */
.chat-message.own .message-bubble {
  background: #1f4d18;
  border: 1px solid #196f24;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  color: #ffffff;
}

/* Cabeçalho da bolha (nome e hora) */
.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  gap: 10px;
}

/* Nome do usuário - LADO ESQUERDO */
.message-sender {
  font-size: 11px;
  font-weight: bold;
  color: #555;
  text-align: left;
  flex: 1;
}

.chat-message.own .message-sender {
  color: rgb(255 255 255 / 79%);
}

/* Hora da mensagem - LADO DIREITO */
.message-time {
  font-size: 9px;
  color: #888;
  white-space: nowrap;
}

.chat-message.own .message-time {
  color: rgb(255 255 255 / 79%);
}

/* Texto da mensagem - ALINHADO À ESQUERDA */
.message-text {
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  word-break: break-word;
}

/* Negrito com asteriscos */
.message-text strong {
  font-weight: bold;
  color: inherit;
}

/* Mensagem deletada */
.message-text.deleted {
  font-style: italic;
  color: #5d5a5a;
  opacity: 0.7;
}

/* Mensagem respondida */
.message-reply {
  background: rgba(0, 0, 0, 0.05);
  border-left: 2px solid #00ffea;
  padding: 3px 6px;
  border-radius: 5px;
  margin-bottom: 2px;
  font-size: 10px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-message.own .message-reply {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

/* Área de entrada de mensagem */
.chat-input-area {
  padding: 10px;
  border-top: 2px solid #3538a1;
  background: rgba(0, 0, 0, 0.3);
}

.chat-input-container {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

/* Campo de texto */
.chat-message-input {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #3538a1;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  resize: none;
  min-height: 35px;
  max-height: 120px;
  transition: all 0.3s ease;
  overflow-y: auto;
  line-height: 1.4;
}

.chat-message-input::placeholder {
  text-align: center;
  color: #888;
}

.chat-message-input:focus {
  outline: none;
  border-color: #00ffea;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

/* Botão enviar */
.chat-send-btn {
  background: linear-gradient(135deg, #00ffea, #0099ff);
  border: 2px solid #00ffea;
  border-radius: 10px;
  padding: 8px 15px;
  color: black;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  height: 35px;
  min-height: 35px;
  max-height: 35px;
  min-width: 70px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.chat-send-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 234, 0.4);
}

.chat-send-btn:disabled {
  background: #666;
  border-color: #888;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ===== CORREÇÕES ESPECÍFICAS DO HEADER ===== */

/* Container do lado direito (hambúrguer e X) */
.chat-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Posicionamento do menu hambúrguer */
.chat-status-actions {
  position: relative;
  display: flex;
  align-items: center;
}

/* Menu hambúrguer - CORRIGIDO */
.chat-menu-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Botão X (fechar) - CORRIGIDO */
.chat-panel-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chat-panel-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Dropdown do menu */
.chat-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(26, 31, 59, 0.95);
  border: 1px solid #3538a1;
  border-radius: 8px;
  min-width: 140px;
  z-index: 1000;
  display: none;
  margin-top: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.chat-menu-dropdown.active {
  display: block;
  animation: slideDown 0.2s ease;
}

.chat-menu-dropdown .dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-menu-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

.chat-menu-dropdown .dropdown-item:hover {
  background: rgba(53, 56, 161, 0.3);
  color: #00ffea;
}

/* Scrollbar personalizada */
.chat-messages-container::-webkit-scrollbar {
  width: 2px;
}

.chat-messages-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.chat-messages-container::-webkit-scrollbar-thumb {
  background: #00ffea;
  border-radius: 4px;
}

.chat-messages-container::-webkit-scrollbar-thumb:hover {
  background: #0099ff;
}

/* Responsividade */
@media (max-width: 768px) {
  .chat-panel-content {
    height: 90vh;
    max-width: 95%;
  }

  .chat-message {
    max-width: 90%;
  }

  .message-bubble {
    max-width: 210px;
  }
}

@media (max-width: 480px) {
  .chat-panel-content {
    height: 90vh;
    border: 2px solid #00ffea;
  }

  .chat-message {
    max-width: 98%;
  }

  .message-bubble {
    max-width: 210px;
    gap: 3px;
  }

  .chat-send-btn {
    min-width: 60px;
    padding: 10px 10px;
    font-size: 11px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
  }

  .chat-menu-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .chat-panel-close-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .chat-warning-bar {
    padding: 8px 12px;
    font-size: 10px;
    gap: 5px;
  }
}

/* ===== BADGE DE NOTIFICAÇÃO DO CHAT ===== */
.chat-notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5);
  animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.vzn-profile-option {
  position: relative;
}

/* ===== MODAL DE CONFIRMAÇÃO DELETE ===== */
.delete-confirm-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10005;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.delete-confirm-modal.show {
  display: flex !important;
}

.delete-confirm-content {
  background: linear-gradient(135deg, #1b1f3b 0%, #0a1a63 100%);
  border: 2px solid #ff4444;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.delete-confirm-content .delete-icon {
  font-size: 35px;
  margin-bottom: 15px;
  animation: deleteIconBounce 0.5s ease;
}

@keyframes deleteIconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.delete-confirm-content h3 {
  color: #ff4444;
  font-size: 16px;
  margin: 15px 0;
  margin-bottom: 40px;
  font-weight: bold;
}

.delete-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.delete-confirm-actions .btn-cancel,
.delete-confirm-actions .btn-confirm {
  flex: 1;
  padding: 10px 18px;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.delete-confirm-actions .btn-cancel {
  background: #666;
  color: white;
  border-color: #888;
}

.delete-confirm-actions .btn-cancel:hover {
  background: #888;
  transform: translateY(-2px);
}

.delete-confirm-actions .btn-confirm {
  background: #ff4444;
  color: white;
  border-color: #ff4444;
}

.delete-confirm-actions .btn-confirm:hover {
  background: #ff5555;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
  transform: translateY(-2px);
}

/* ===== REPLY PREVIEW ===== */
.reply-preview-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 234, 0.1);
  border-left: 3px solid #00ffea;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  animation: slideDown 0.3s ease;
}

.reply-preview-text {
  flex: 1;
  font-size: 12px;
  color: #00ffea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cancel-reply-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cancel-reply-btn:hover {
  background: rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== INDICADOR "ESTÁ DIGITANDO" ===== */
.chat-typing-container {
  padding: 6px 12px;
  font-size: 13px;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.typing-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dots span {
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.typing-avatars {
  display: flex;
}

.typing-avatars img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: -5px;
  border: 1px solid #222;
}

/* ===== INDICADOR FIXO DE ÚLTIMA MARCAÇÃO (REMOVIDO) ===== */
#lastMarkedIndicator {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
