/* styles.css */
:root {
  --primary-dark: #0a0414;
  --secondary-dark: #1a0b2e;
  --accent-purple: #6e2de5;
  --accent-red: #e52d6e;
  --text-light: #f0e6ff;
  --text-muted: #b8a6d9;
  --sidebar-width: 300px;
  --gold-accent: #FFD700;
  --platinum-accent: #E5E4E2;
  --transition-speed:.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: var(--primary-dark);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* Sidebar Estilizado */
.sidebar {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.9), rgba(10, 4, 20, 0.95));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(110, 45, 229, 0.15);
  position: relative;
  
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow-y: hidden; /* Esconde o scroll inicialmente */
  transition: all 0.3s ease;
}
.sidebar.active {
  overflow-y: auto; /* Mostra o scroll */
}
.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 30%, rgba(110, 45, 229, 0.1) 0%, transparent 30%),
      radial-gradient(circle at 80% 70%, rgba(229, 45, 110, 0.1) 0%, transparent 30%);
  z-index: -1;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
      transparent, 
      var(--gold-accent), 
      var(--platinum-accent), 
      var(--gold-accent), 
      transparent);
  opacity: 0.3;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(15, 5, 30, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(110, 45, 229, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-content: center;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(110, 45, 229, 0.4);
}

.logo span {
  background: linear-gradient(45deg, var(--gold-accent), var(--platinum-accent), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.nav-menu {
  list-style: none;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.nav-item {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.nav-item:hover {
  transform: translateX(5px);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
  border-left: 3px solid var(--gold-accent);
  box-shadow: 5px 0 15px rgba(110, 45, 229, 0.3);
}

.nav-item.active a {
  color: var(--text-light);
}

.nav-item.active i {
  color: var(--gold-accent);
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.nav-item:hover a {
  color: var(--text-light);
}

.nav-item i {
  margin-right: 15px;
  font-size: 1.1rem;
  color: var(--platinum-accent);
  transition: all 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.nav-item:hover i {
  transform: scale(1.2);
  color: var(--gold-accent);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
}

.sidebar-footer {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.user-profile {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(15, 5, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 45, 229, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.user-profile:hover {
  background: rgba(110, 45, 229, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 45, 229, 0.3);
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-accent), var(--platinum-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  color: var(--secondary-dark);
  position: relative;
  overflow: hidden;
}

.user-avatar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      to bottom right, 
      transparent, 
      transparent, 
      transparent, 
      rgba(255, 255, 255, 0.3)
  );
  transform: rotate(30deg);
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.logout-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.logout-btn:hover {
  color: var(--gold-accent);
  background: rgba(255, 215, 0, 0.1);
  transform: rotate(15deg);
}

/* Efeitos Visuais */
.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-effect span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}



.glow-effect span:nth-child(2) {
  background: var(--accent-purple);
  width: 300px;
  height: 300px;
  bottom: 200px;
  right: -100px;
}

/* Conteúdo Principal */
.main-content {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 45, 110, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.welcome h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--text-light), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.welcome p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Grid do Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.7), rgba(10, 4, 20, 0.7));
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 45, 229, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(110, 45, 229, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.card-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Componentes Específicos */
.btn-deposito, .btn-saque, .btn-resgatar {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-deposito { 
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
  border-left: 3px solid #28a745; 
  box-shadow: 2px 0 2px rgba(110, 45, 229, 0.3);
  color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-deposito:hover {
  cursor: pointer;
  /* intensifica o brilho do glow */
  box-shadow: 5px 0 25px rgba(110, 45, 229, 0.6);
  /* opcional: um leve “pop” */
  transform: translateY(-2px);
}

.btn-saque {
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
  border-left: 3px solid #a80000; 
  box-shadow: 2px 0 2px rgba(110, 45, 229, 0.3);
  color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-saque:hover {
  cursor: pointer;
  /* intensifica o brilho do glow */
  box-shadow: 5px 0 25px rgba(110, 45, 229, 0.6);
  /* opcional: um leve “pop” */
  transform: translateY(-2px);
}

.btn-resgatar {
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
  border-left: 3px solid var(--gold-accent); 
  box-shadow: 2px 0 2px rgba(110, 45, 229, 0.3);
  color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-resgatar:hover {
  cursor: pointer;
  /* intensifica o brilho do glow */
  box-shadow: 5px 0 25px rgba(110, 45, 229, 0.6);
  /* opcional: um leve “pop” */
  transform: translateY(-2px);
}
.referral-input-group {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

#user-referral-link {
  flex: 1;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(110, 45, 229, 0.3);
  background: rgba(26, 11, 46, 0.5);
  color: white;
}

#copy-link {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(110, 45, 229, 0.3), transparent);
  border-left: 3px solid var(--gold-accent); 
  box-shadow: 2px 0 2px rgba(110, 45, 229, 0.3);
  color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#copy-link:hover {
  cursor: pointer;
  /* intensifica o brilho do glow */
  box-shadow: 5px 0 25px rgba(110, 45, 229, 0.6);
  /* opcional: um leve “pop” */
  transform: translateY(-2px);
}

/* Efeitos Neon */
.neon-purple {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 45, 229, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.neon-red {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 45, 110, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.neon-purple-1 {
  top: -100px;
  right: -100px;
}

.neon-purple-2 {
  bottom: -50px;
  left: -50px;
}

.neon-red-1 {
  bottom: -150px;
  right: -150px;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(110, 45, 229, 0.5);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(229, 45, 110, 0.6);
}

.menu-toggle.active {
  left: calc(var(--sidebar-width) + 1rem);
  transform: rotate(90deg);
}

.menu-toggle.active:hover {
  transform: rotate(90deg) scale(1.1);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}



/* Responsividade */
@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: fixed;
    left: -100%;
    width: var(--sidebar-width);
    height: 100vh;
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-content {
    padding-top: 5rem;
  }
}



/* Barra de rolagem do sidebar - Estilo padrão (invisível) */
.sidebar::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Quando o menu estiver ativo no mobile */
.sidebar.active::-webkit-scrollbar {
  width: 5px;
}

.sidebar.active::-webkit-scrollbar-thumb {
  background: rgba(110, 45, 229, 0.5);
  border-radius: 10px;
}

.sidebar.active::-webkit-scrollbar-track {
  background: rgba(10, 4, 20, 0.3);
}

/* Para Firefox */
.sidebar {
  scrollbar-width: none;
}

.sidebar.active {
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 45, 229, 0.5) rgba(10, 4, 20, 0.3);
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  .sidebar {
    -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
  }
  
  .sidebar.active::-webkit-scrollbar {
    width: 4px; /* Mais fino para mobile */
  }
}

/* ======================================================
   Wrapper para os dois Cards de Ranking
   ====================================================== */
   .ranking-wrapper {
    display: grid;
    /* 3 colunas iguais, igual ao .dashboard-grid */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;         /* mesmo gap do dashboard-grid */
    margin-bottom: 2rem; /* mesmo margin-bottom do dashboard-grid */
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Os dois cards que você colocou dentro da .ranking-wrapper
     vão ocupar as 2 primeiras colunas e ter a largura idêntica
     aos cards de cima (1fr em grid de 3 colunas). */
  .ranking-wrapper .card {
    width: 100%;
  }
  
  /* (Opcional) Para centralizar os dois cards dentro das 3 colunas,
     deixando a terceira “vaga” à direita, mantenha o comportamento padrão.
     Se quiser que eles fiquem sempre à esquerda, adicione: */
  /*
  .ranking-wrapper {
    justify-content: start;
  }
  */
  /* ======================================================
   Ajustes de fonte e cor para os cards de Ranking
   ====================================================== */

/* Remove o gradiente do conteiner e seta um tamanho base menor */
.ranking-wrapper .card-value {
  background: none;            /* dispensa o gradiente */
 
  font-size: 1.1rem;           /* tamanho base para o texto */
  font-weight: 500;            /* peso mais leve */
  color: var(--text-light);    /* cor clara ou mude para --text-muted se preferir */
}

/* Ajusta cada item da lista */
.ranking-wrapper .rank-list {
  list-style: decimal inside;
  margin: 0;
  padding: 0;
}

.ranking-wrapper .rank-list li {
  font-size: 1rem;             /* diminui ainda mais se quiser */
  color: var(--text-muted);    /* cor mais suave */
  margin-bottom: 0.5rem;       /* espaçamento interno */
}

  /* Responsividade igual ao .dashboard-grid */
  @media (max-width: 1200px) {
    .ranking-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .ranking-wrapper {
      grid-template-columns: 1fr;
    }
  }
  
  /*cards de carrocel */
  /* ==============================
   Highlight Cards (Novidades)
   ============================== */

.highlight-cards {
  margin-top: 2rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.highlight-wrapper {
  display: flex;
  gap: 1rem;               /* mesmo gap do dashboard-grid */
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth; /* JS-free scroll suave */
  padding: 5px;
}

/* estiliza a barra de rolagem (opcional) */
.highlight-wrapper::-webkit-scrollbar {
  height: 6px;
}
.highlight-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 3px;
}

/* cada card */
.highlight-card {
  flex: 0 0 250px;         /* largura fixa, igual para todos */
  background: rgba(15,5,30,0.7);
  border: 1px solid rgba(110,45,229,0.2);
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(110,45,229,0.4);
}

/* cabeçalho do card */
.highlight-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.highlight-header i {
  font-size: 1.25rem;
  color: var(--accent-purple);
}
.highlight-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

/* texto interno */
.highlight-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* imagem */
.highlight-card .highlight-image img {
  width: 100%;
  height: 140px;       /* ajuste conforme necessidade */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}


/* responsividade */
@media (max-width: 768px) {
  .highlight-wrapper {
    gap: 0.75rem;
  }
  .highlight-card {
    flex: 0 0 200px;
  }
}








/* ======================
   LOGIN GAMER MODERNO
   ====================== */
   .game-login-page {
    background: linear-gradient(135deg, #0a0414 0%, #1a0b2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .game-particle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .neon-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 2;
  }
  
  .neon-purple {
    width: 300px;
    height: 300px;
    background: #6e2de5;
    top: -100px;
    right: -100px;
  }
  
  .neon-blue {
    width: 400px;
    height: 400px;
    background: #2d8ce5;
    bottom: -150px;
    left: -150px;
  }
  
  #game-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0414;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }
  
  .game-loader-content {
    text-align: center;
  }
  
  .game-loader-icon {
    font-size: 3rem;
    color: #6e2de5;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
  }
  
  .game-loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(110, 45, 229, 0.2);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .game-loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6e2de5, #e52d6e);
    animation: loading 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  @keyframes loading {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
  }
  
  .game-login-container {
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
  }
  
  .game-login-card {
    background: rgba(15, 5, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(110, 45, 229, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .game-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6e2de5, #e52d6e);
  }
  
  .game-login-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .game-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .game-logo {
    max-width: 180px;
    height: auto;
    z-index: 2;
    position: relative;
  }
  
  .game-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6e2de5, #e52d6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(110, 45, 229, 0.5);
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .game-login-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #6e2de5, #e52d6e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .game-login-subtitle {
    color: #b8a6d9;
    font-size: 0.9rem;
    font-weight: 400;
  }
  
  .game-form-group {
    margin-bottom: 1.5rem;
  }
  
  .game-input-label {
    display: block;
    color: #b8a6d9;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .game-input-label i {
    margin-right: 8px;
    color: #6e2de5;
  }
  
  .game-input-wrapper {
    position: relative;
  }
  
  .game-input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    background: rgba(10, 4, 20, 0.7);
    border: 1px solid rgba(110, 45, 229, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .game-input:focus {
    outline: none;
    border-color: #6e2de5;
    box-shadow: 0 0 0 3px rgba(110, 45, 229, 0.2);
  }
  
  .game-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6e2de5, #e52d6e);
    transition: width 0.3s ease;
  }
  
  .game-input:focus ~ .game-input-border {
    width: 100%;
  }
  
  .game-feedback {
    color: #e52d6e;
    font-size: 0.9rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(229, 45, 110, 0.1);
    border-radius: 8px;
    display: none;
  }
  
  .game-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
  }
  
  .game-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    color: #b8a6d9;
  }
  
  .game-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .game-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(10, 4, 20, 0.7);
    border: 1px solid rgba(110, 45, 229, 0.3);
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.3s ease;
  }
  
  .game-checkbox:hover .game-checkmark {
    background: rgba(110, 45, 229, 0.2);
  }
  
  .game-checkbox input:checked ~ .game-checkmark {
    background: #6e2de5;
    border-color: #6e2de5;
  }
  
  .game-checkmark i {
    font-size: 0.7rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .game-checkbox input:checked ~ .game-checkmark i {
    opacity: 1;
  }
  
  .game-forgot-password {
    color: #6e2de5;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .game-forgot-password:hover {
    color: #e52d6e;
  }
  
  .game-forgot-password i {
    margin-right: 5px;
  }
  
  .game-login-btn {
    width: 100%;
    position: relative;
    padding: 16px;
    background: linear-gradient(135deg, #6e2de5, #e52d6e);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
  }
  
  .game-btn-text {
    position: relative;
    z-index: 2;
  }
  
  .game-btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  
  .game-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e52d6e, #6e2de5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .game-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 45, 229, 0.4);
  }
  
  .game-login-btn:hover .game-btn-bg {
    opacity: 1;
  }
  
  .game-login-btn:hover .game-btn-icon {
    transform: translateX(5px);
  }
  
  .game-register-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #b8a6d9;
    font-size: 0.9rem;
  }
  
  .game-register-link {
    color: #6e2de5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .game-register-link:hover {
    color: #e52d6e;
  }
  
  /* Responsividade */
  @media (max-width: 480px) {
    .game-login-card {
      padding: 1.5rem;
    }
    
    .game-login-title {
      font-size: 1.5rem;
    }
    
    .game-input {
      padding: 12px 15px 12px 40px;
    }
  }

  /* CORREÇÕES PARA A IMAGEM DE FUNDO EM MOBILE */
.game-login-page {
  position: relative;
  background: linear-gradient(135deg, #0a0414 0%, #1a0b2e 100%) fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
  .game-login-page {
      background-attachment: scroll;
      background-size: auto 100%;
  }

  .neon-effect {
      display: none; /* Desativa os efeitos neon em mobile se estiverem causando problemas */
  }

  /* Container principal com altura mínima garantida */
  .game-login-container {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
  }

  /* Card com sombra mais suave em mobile */
  .game-login-card {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(110, 45, 229, 0.2);
  }
}

/* Correções ultra-específicas para o layout da imagem */
@media (max-width: 480px) {
  .game-login-page {
      background: linear-gradient(135deg, #0a0414 0%, #1a0b2e 100%);
  }

  .game-particle {
      opacity: 0.5; /* Reduz a intensidade das partículas */
  }

  /* Garante que o conteúdo fique sempre visível */
  .game-login-container {
      position: relative;
      z-index: 10;
  }

  /* Ajuste fino nos elementos de texto */
  .game-login-title {
      font-size: 1.6rem;
      text-align: center;
  }

  .game-login-subtitle {
      text-align: center;
      font-size: 0.9rem;
  }
}

/* Correção para o iPhone 12 Pro específico */
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) {
  
  .game-login-page {
      background-position: 35% 50%;
  }
  
  .game-login-card {
      backdrop-filter: blur(5px);
      background: rgba(15, 5, 30, 0.9);
  }
}



























/* frontend/assets/css/register.css */

/* ============== RESET E BASE ============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============== ESTRUTURA PRINCIPAL ============== */
.register-page {
  background: 
    /* Fundo gradiente escuro */
    linear-gradient(135deg, #0a0414 0%, #1a0b2e 100%),
    /* Ilustração de fundo gamer */
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080" viewBox="0 0 1920 1080"><style>.st0{fill:none;stroke:%236e2de5;stroke-width:2;stroke-opacity:0.05;}</style><path class="st0" d="M200,200c0,0 300,100 500,0s400,200 600,100 500-100 500-100"/><path class="st0" d="M300,400c0,0 200-150 400-50s300,200 500,100 400-200 400-200"/><path class="st0" d="M100,800c0,0 400-100 600,100s300,150 500-50"/><circle cx="400" cy="300" r="30" fill="%236e2de5" fill-opacity="0.05"/><circle cx="1200" cy="700" r="50" fill="%236e2de5" fill-opacity="0.05"/><circle cx="1500" cy="400" r="40" fill="%236e2de5" fill-opacity="0.05"/></svg>');
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* ============== ILUSTRAÇÃO GAMER NO FUNDO ============== */
.game-illustration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.15;
  background-image: 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="200" height="200" style="position:absolute;top:20%;left:10%"><path fill="%236e2de5" d="M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24z"/></svg>'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="150" height="150" style="position:absolute;bottom:15%;right:8%"><path fill="%23e52d6e" d="M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24z"/></svg>');
  background-repeat: no-repeat;
}

/* ============== CARD COMPACTO ============== */
.register-container {
  width: 100%;
  max-width: 360px; /* Card menor */
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(15, 5, 30, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.8rem; /* Espaçamento interno reduzido */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(110, 45, 229, 0.4);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6e2de5, #e52d6e);
}

/* ============== CABEÇALHO COMPACTO ============== */
.register-header {
  text-align: center;
  margin-bottom: 1.5rem; /* Espaçamento reduzido */
}

.register-logo {
  display: inline-block;
  margin-bottom: 1rem; /* Reduzido */
}

.register-logo img {
  width: 140px; /* Logo menor */
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(110, 45, 229, 0.5));
}

.register-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px; /* Ícone menor */
  height: 40px;
  background: linear-gradient(135deg, #6e2de5, #e52d6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem; /* Tamanho reduzido */
  box-shadow: 0 4px 15px rgba(110, 45, 229, 0.6);
  animation: float 3s ease-in-out infinite;
}

.register-title {
  color: white;
  font-size: 1.7rem; /* Fonte menor */
  font-weight: 700;
  margin-bottom: 0.3rem; /* Espaçamento ajustado */
  background: linear-gradient(45deg, #6e2de5, #e52d6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============== FORMULÁRIO COMPACTO ============== */
.form-group {
  margin-bottom: 1.2rem; /* Espaçamento reduzido */
  position: relative;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 14px;
  color: #6e2de5;
  font-size: 1rem; /* Ícone menor */
}

.form-input {
  width: 100%;
  padding: 13px 15px 13px 42px; /* Input mais compacto */
  background: rgba(10, 4, 20, 0.8);
  border: 1px solid rgba(110, 45, 229, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem; /* Fonte menor */
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #6e2de5;
  box-shadow: 0 0 0 3px rgba(110, 45, 229, 0.2);
}

/* ============== BOTÃO COMPACTO ============== */
.btn-register {
  width: 100%;
  padding: 14px; /* Botão mais fino */
  background: linear-gradient(135deg, #6e2de5, #e52d6e);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem; /* Fonte menor */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem; /* Espaçamento reduzido */
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 45, 229, 0.5);
}

/* ============== ELEMENTOS SECUNDÁRIOS ============== */
.indicador-info {
  display: none;
  margin-bottom: 1.2rem; /* Reduzido */
  padding: 8px; /* Reduzido */
  font-size: 0.9rem; /* Reduzido */
}

.login-link {
  margin-top: 1.5rem; /* Reduzido */
  font-size: 0.9rem; /* Reduzido */
}

/* ============== ANIMAÇÕES ============== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ============== RESPONSIVIDADE ============== */
@media (max-width: 480px) {
  .register-card {
    padding: 1.5rem; /* Mais compacto em mobile */
  }
  
  .register-logo img {
    width: 120px; /* Logo menor em mobile */
  }
  
  .register-title {
    font-size: 1.5rem; /* Fonte menor */
  }
  
  .form-input {
    padding: 12px 15px 12px 40px; /* Input mais compacto */
  }
}





/* frontend/assets/css/register.css */

/* ============== FUNDO GAMER ============== */
.register-page {
  background: 
    linear-gradient(135deg, #0a0414 0%, #1a0b2e 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512" opacity="0.05"><path fill="%236e2de5" d="M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24z"/><path fill="%23e52d6e" d="M256 0a256 256 0 1 0 256 256A256 256 0 0 0 256 0zm0 384a128 128 0 1 1 128-128 128 128 0 0 1-128 128z"/></svg>'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" opacity="0.03"><path fill="%23ffffff" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>');
  background-size: cover, 300px 300px, 50px 50px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* CONTROLE DE VIDEOGAME NO FUNDO */
.game-controller {
  position: absolute;
  width: 250px;
  height: 250px;
  opacity: 0.08;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="%236e2de5" d="M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 248c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm-24 56c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.controller-1 {
  bottom: -50px;
  left: -50px;
  transform: rotate(-20deg);
}

.controller-2 {
  top: -50px;
  right: -50px;
  transform: rotate(20deg);
}

/* ============== CARD ULTRA COMPACTO ============== */
.register-container {
  width: 100%;
  max-width: 320px; /* Card bem menor */
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(20, 8, 42, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.5rem; /* Espaçamento interno reduzido */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(110, 45, 229, 0.5);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6e2de5, #e52d6e);
}

/* ============== CABEÇALHO COMPACTO ============== */
.register-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.register-logo {
  display: inline-block;
  margin-bottom: 0.8rem;
  position: relative;
}

.register-logo img {
  width: 120px; /* Logo menor */
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(110, 45, 229, 0.6));
}

.register-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6e2de5, #e52d6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(110, 45, 229, 0.5);
}

.register-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(45deg, #6e2de5, #e52d6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============== FORMULÁRIO COMPACTO ============== */
.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 13px;
  color: #6e2de5;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  background: rgba(15, 5, 30, 0.8);
  border: 1px solid rgba(110, 45, 229, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #6e2de5;
  box-shadow: 0 0 0 2px rgba(110, 45, 229, 0.3);
}

/* ============== BOTÃO COMPACTO ============== */
.btn-register {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6e2de5, #e52d6e);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.8rem;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 45, 229, 0.4);
}

/* ============== ELEMENTOS SECUNDÁRIOS ============== */
.login-link {
  text-align: center;
  margin-top: 1.2rem;
  color: #b8a6d9;
  font-size: 0.85rem;
}

.login-link a {
  color: #6e2de5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-link a:hover {
  color: #e52d6e;
}

/* ============== ANIMAÇÕES ============== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}



/* RESET PARA ELIMINAR BARRAS DE ROLAGEM */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* AJUSTES POR DISPOSITIVO */
.register-page {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* TAMANHOS ESPECÍFICOS POR DISPOSITIVO */
/* Celulares pequenos (até 375px) */
@media (max-width: 375px) {
  .register-container {
      width: 95%;
      max-width: 95%;
      transform: scale(0.95);
  }
}

/* Celulares médios (376px - 414px) */
@media (min-width: 376px) and (max-width: 414px) {
  .register-container {
      width: 90%;
      max-width: 90%;
  }
}

/* Celulares grandes (415px - 576px) */
@media (min-width: 415px) and (max-width: 576px) {
  .register-container {
      width: 85%;
      max-width: 85%;
  }
}

/* Tablets pequenos (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .register-container {
      width: 80%;
      max-width: 450px;
  }
}

/* Tablets grandes (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .register-container {
      width: 75%;
      max-width: 500px;
  }
}

/* AJUSTES PARA ELEMENTOS DECORATIVOS */
.game-controller {
  display: none; /* Oculta em dispositivos muito pequenos */
}

@media (min-width: 415px) {
  .game-controller {
      display: block;
      width: 120px;
      height: 120px;
  }
}

/* GARANTE QUE O CONTEÚDO NÃO ULTRAPASSE A TELA */
.register-card {
  max-height: 95vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* REMOVE ESPAÇOS EXTERNOS */
body {
  padding: 0 !important;
  margin: 0 !important;
}

/* Deposit Card Modernizado */
.deposit-card {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: rgba(15, 5, 30, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(110, 45, 229, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.deposit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
}

.deposit-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(45deg, var(--text-light), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.deposit-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.deposit-options input[type="radio"] {
  display: none;
}

.deposit-options .option {
  background: rgba(10, 4, 20, 0.7);
  border: 1px solid rgba(110, 45, 229, 0.3);
  border-radius: 12px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.deposit-options .option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.deposit-options .option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(110, 45, 229, 0.2);
}

.deposit-options .option:hover::before {
  opacity: 1;
}

.deposit-options input[type="radio"]:checked + .option {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(10, 4, 20, 0.7));
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 2px var(--accent-purple), 0 10px 20px rgba(110, 45, 229, 0.3);
}

.deposit-options .option i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-accent);
  transition: all var(--transition-speed) ease;
}

.deposit-options input[type="radio"]:checked + .option i {
  color: var(--accent-purple);
  transform: scale(1.1);
}

.deposit-options .option span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition-speed) ease;
}

.deposit-options input[type="radio"]:checked + .option span {
  color: var(--gold-accent);
}

.btn-continue {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-continue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.7s ease;
}

.btn-continue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 45, 110, 0.4);
}

.btn-continue:hover::before {
  left: 100%;
}

/* Footer Modernizado */
.footer {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-container {
  background: rgba(15, 5, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid rgba(110, 45, 229, 0.2);
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: fixed;
    left: -100%;
    width: var(--sidebar-width);
    height: 100vh;
    z-index: 100;
    transition: all var(--transition-speed) ease;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .main-content {
    padding-top: 70px;
  }
  
  .deposit-card {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .deposit-options {
    grid-template-columns: 1fr;
  }
}

/* Animação de seleção */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110, 45, 229, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(110, 45, 229, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 45, 229, 0); }
}

.deposit-options input[type="radio"]:checked + .option {
  animation: pulse 0.7s ease;
}












/* ====== PREFIXO pix- PARA NÃO CONFLITAR ====== */
:root{
  --pix-card-max: 1024px;
}

/* Layout próprio mas respeitando a grid global */
.pix-layout{
  display:grid;
  grid-template-columns: var(--sidebar-width,300px) 1fr;
  min-height:100vh;
}

/* Topbar da página */
.pix-topbar{ margin-bottom:1.5rem; }
.pix-page-title{
  font-size:1.6rem;
  margin:0;
  color:var(--text-light,#fff);
}

/* Wrapper central do conteúdo PIX */
.pix-wrapper{
  max-width:var(--pix-card-max);
  margin:0 auto;
  width:100%;
}

/* Card principal */
.pix-card{
  background:rgba(15,5,30,.7);
  border:1px solid rgba(110,45,229,.25);
  border-radius:18px;
  padding:2rem;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
  max-width: 780px;   /* antes estava 600/1024, por ex. */
  margin: 2rem auto;
}
.pix-card::before{
  content:"";
  position:absolute;left:0;top:0;width:100%;height:4px;
  background:linear-gradient(90deg,#6e2de5,#e52d6e);
}
.pix-card-title{
  text-align:center;
  margin:0 0 1.5rem 0;
  font-size:1.6rem;
  background:linear-gradient(45deg,#ffffff,#FFD700);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.pix-cotacao,.pix-info{
  font-size:.9rem;
  color:var(--text-muted,#b8a6d9);
  margin-bottom:.8rem;
}

/* Inputs */
.pix-input{
  width:100%;
  padding:.9rem 1.1rem;
  margin-bottom:1rem;
  border-radius:10px;
  border:1px solid rgba(110,45,229,.3);
  background:rgba(26,11,46,.6);
  color:#fff;
  font-size:.95rem;
}
.pix-input::placeholder{color:var(--text-muted,#b8a6d9);}

/* Botões */
.pix-btn{
  width:100%;
  padding:1rem 1.2rem;
  border:none;border-radius:12px;
  background:linear-gradient(135deg,#6e2de5,#e52d6e);
  color:#fff;font-weight:600;cursor:pointer;
  transition:transform .2s,box-shadow .2s;
  margin-top:.5rem;
}
.pix-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(229,45,110,.35);
}

.pix-btn-outline{
  display:none;
  width:100%;
  padding:.9rem 1.2rem;
  background:transparent;
  border:1px solid rgba(110,45,229,.4);
  color:#fff;
  border-radius:10px;
  margin-top:1rem;
  cursor:pointer;
  transition:.2s;
}
.pix-btn-outline:hover{background:rgba(110,45,229,.15);}

.pix-qr{
  display:block;
  max-width:260px;
  margin:1.5rem auto 1rem;
}
.pix-code{
  display:none;
  word-break:break-all;
  background:rgba(26,11,46,.5);
  padding:.9rem 1.2rem;
  border-radius:8px;
  font-size:.8rem;
  color:var(--text-muted,#b8a6d9);
}

/* Footer */
.pix-footer{
  text-align:center;
  margin:2rem 0 1rem;
  font-size:.85rem;
  color:var(--text-muted,#b8a6d9);
}

/* Rotação do ícone da Rede */
.pix-rede-icon{
  transition:transform .25s ease;
}
.pix-rede-icon.pix-rotate{
  transform:rotate(90deg);
}

/* Mobile */
@media(max-width:768px){
  .pix-layout{ grid-template-columns:1fr; }
  .main-content{ padding-top:4.5rem; } /* igual ao seu global */
  .pix-card{ padding:1.5rem; }
}

/* estado inicial: de lado */
.pix-rede-icon{
  transform: rotate(90deg);
  transition: transform .25s ease;
}
/* aberto: apontando para baixo */
.pix-rede-icon.pix-open{
  transform: rotate(0deg);
}
@media (min-width: 1280px){
  .pix-card{
    max-width: 720px;  /* ajuste fino para desktop wide */
  }
}













/* =======================================================
   CRYPTO PAGE  (prefixo crypto- para não conflitar)
   ======================================================= */
   :root{
    --crypto-card-max: 720px;
  }
  
  /* Grid da página (usa sidebar padrão) */
  .crypto-layout{
    display:grid;
    grid-template-columns: var(--sidebar-width,300px) 1fr;
    min-height:100vh;
  }
  
  /* Topbar */
  .crypto-topbar{ margin-bottom:1.5rem; }
  .crypto-page-title{
    font-size:1.6rem;
    margin:0;
    background:linear-gradient(45deg,var(--text-light,#fff),var(--gold-accent,#FFD700));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  
  /* Card */
  .crypto-card{
    max-width:var(--crypto-card-max);
    margin:2rem auto;
    background:rgba(15,5,30,.7);
    border:1px solid rgba(110,45,229,.25);
    border-radius:18px;
    padding:2rem;
    box-shadow:0 10px 26px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
  }
  .crypto-card::before{
    content:"";
    position:absolute;left:0;top:0;width:100%;height:4px;
    background:linear-gradient(90deg,#6e2de5,#e52d6e);
  }
  .crypto-card-title{
    text-align:center;
    margin:0 0 1.8rem 0;
    font-size:1.6rem;
    background:linear-gradient(45deg,#fff,#FFD700);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  
  /* Input */
  .crypto-input{
    width:100%;
    padding:.9rem 1.1rem;
    margin-bottom:1.3rem;
    border-radius:10px;
    border:1px solid rgba(110,45,229,.3);
    background:rgba(26,11,46,.6);
    color:#fff;
    font-size:.95rem;
  }
  .crypto-input::placeholder{ color:var(--text-muted,#b8a6d9); }
  
  /* Opções */
  .crypto-options{
    display:flex;
    gap:1.5rem;
    justify-content:center;
    flex-wrap:wrap;
    margin:1.5rem 0 2rem;
  }
  .crypto-option{ flex:0 0 240px; position:relative; }
  .crypto-option input{ display:none; }
  
  .crypto-option-box{
    height:150px;
    background:rgba(10,4,20,.7);
    border:1px solid rgba(110,45,229,.3);
    border-radius:14px;
    padding:2rem 1rem;
    text-align:center;
    cursor:pointer;
    transition:.25s;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }
  .crypto-option-box i{
    font-size:2.6rem;
    margin-bottom:.6rem;
    color:var(--gold-accent,#FFD700);
    transition:.25s;
  }
  .crypto-option-box span{
    font-size:1.05rem;
    font-weight:500;
    color:#fff;
    transition:.25s;
  }
  
  .crypto-option-box:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 22px rgba(110,45,229,.25);
  }
  
  .crypto-option input:checked + .crypto-option-box{
    background:linear-gradient(135deg,rgba(110,45,229,.3),rgba(10,4,20,.7));
    border:2px solid #7c4dff;
    box-shadow:0 0 18px rgba(124,77,255,.55), inset 0 0 0 2px rgba(124,77,255,.35);
  }
  .crypto-option input:checked + .crypto-option-box i{
    color:var(--accent-purple,#6e2de5);
    transform:scale(1.08);
  }
  .crypto-option input:checked + .crypto-option-box span{
    color:var(--gold-accent,#FFD700);
  }
  
  /* Botões */
  .crypto-btn{
    width:100%;
    padding:1rem 1.2rem;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#6e2de5,#e52d6e);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:transform .2s,box-shadow .2s;
  }
  .crypto-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(229,45,110,.35);
  }
  .crypto-btn-outline{
    display:inline-block;
    margin-top:1rem;
    padding:.9rem 1.2rem;
    background:transparent;
    border:1px solid rgba(110,45,229,.4);
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    transition:.2s;
    text-decoration:none;
  }
  .crypto-btn-outline:hover{ background:rgba(110,45,229,.15); }
  
  /* Mensagens */
  .crypto-response{ margin-top:1.5rem; font-size:.9rem; }
  .crypto-success{ color:#28a745; }
  .crypto-error{   color:#e52d6e;  }
  
  /* Chevron da Rede */
  .crypto-chevron{
    font-size:.9rem;
    margin-left:auto;
    transition:transform .25s ease;
    transform:rotate(90deg);
  }
  .crypto-chevron.rotated{ transform:rotate(0deg); }
  
  /* Botão hamburguer + overlay */
  .crypto-menu-toggle{
    display:none;
    position:fixed;
    top:1.5rem;
    left:1.5rem;
    z-index:1000;
    background:linear-gradient(135deg,var(--accent-purple,#6e2de5),var(--accent-red,#e52d6e));
    border:none;color:#fff;
    width:50px;height:50px;border-radius:50%;
    font-size:1.5rem;cursor:pointer;
    box-shadow:0 5px 20px rgba(110,45,229,.5);
    transition:all .3s ease;
    align-items:center;justify-content:center;
  }
  .crypto-menu-toggle.crypto-active{
    left:calc(var(--sidebar-width,300px) + 1rem);
    transform:rotate(90deg);
  }
  
  .crypto-sidebar-overlay{
    position:fixed;top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(5px);
    z-index:900;opacity:0;visibility:hidden;
    transition:all .3s ease;
  }
 
  
  /* Responsivo */
  @media(max-width:768px){
    .crypto-layout{ grid-template-columns:1fr; }
    .crypto-menu-toggle{ display:flex; }
    .main-content{ padding-top:4.5rem; }
    .crypto-card{ padding:1.5rem; margin:1.5rem 1rem; }
    .crypto-option{ flex:0 0 100%; }
  }
  


 





/* =================== INVESTIMENTO – Gamer Limpo e Funcional =================== */
/* Escopo: só os cards dessa página */
.main-content .cards{
  display:grid;
  gap:1.8rem;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  margin-bottom:3rem;
}

/* CARD */
.main-content .cards .card{
  --c1: var(--accent-purple);
  --c2: var(--accent-red);
  --c3: #00eaff;
  background: rgba(15,5,30,.9);
  border:1px solid rgba(110,45,229,.22);
  border-radius:22px;
  padding:1.9rem 1.6rem 2.6rem;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.4);
  transition:transform .26s ease, box-shadow .26s ease;
}
.main-content .cards .card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(110,45,229,.32);
}
/* borda neon animada */
.main-content .cards .card::before{
  content:"";
  position:absolute;inset:0;
  border-radius:inherit;
  padding:1px;
  background:conic-gradient(var(--c1),var(--c3),var(--c2),var(--c1));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  animation:spinBorder 6s linear infinite;
  opacity:.6;
}
@keyframes spinBorder{
  to{transform:rotate(360deg);}
}
/* textura hex sutil */
.main-content .cards .card::after{
  content:"";
  position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 36px 30px, rgba(255,255,255,.04) 2px, transparent 3px);
  background-size:48px 48px;
  opacity:.08;
  pointer-events:none;
}

/* ÍCONE */
.main-content .cards .card .card-icon{
  width:52px;height:52px;border-radius:16px;
  background:rgba(110,45,229,.22);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;position:relative;
  box-shadow:inset 0 0 8px rgba(110,45,229,.3);
}
.main-content .cards .card .card-icon i{
  color:var(--gold-accent);
  font-size:1.5rem;
  text-shadow:0 0 9px rgba(255,215,0,.45);
}
/* badge gamer opcional */
.main-content .cards .card .card-icon[data-xp]::after{
  content:attr(data-xp);
  position:absolute;bottom:-8px;right:-8px;
  background:linear-gradient(135deg,var(--c1),var(--c2));
  color:#fff;font-size:.7rem;padding:2px 6px;
  border-radius:6px;box-shadow:0 0 8px rgba(110,45,229,.5);
}

/* TÍTULO */
.main-content .cards .card h3{
  font-size:1.12rem;font-weight:600;color:var(--text-light);
  margin-bottom:.55rem;letter-spacing:.4px;
}

/* VALOR */
.main-content .cards .card p:first-of-type{
  font-size:1.9rem;font-weight:700;
  margin:.4rem 0 1rem;
  background:linear-gradient(45deg,var(--c1),var(--c2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  position:relative;
}
.main-content .cards .card p:first-of-type::after{
  content:"";
  position:absolute;left:0;bottom:-8px;
  width:70px;height:2px;
  background:linear-gradient(90deg,var(--c1),var(--c2));
  border-radius:2px;
}

/* TEXTOS */
.main-content .cards .card p{
  font-size:.93rem;color:var(--text-muted);margin:.26rem 0;
}

/* ROI BAR (se quiser usar, injete no HTML) */
.main-content .cards .card .roi-bar{
  width:100%;height:8px;background:rgba(255,255,255,.08);
  border-radius:8px;overflow:hidden;margin:1rem 0 1.2rem;position:relative;
}
.main-content .cards .card .roi-bar span{
  display:block;height:100%;width:0%;
  background:linear-gradient(90deg,var(--c1),var(--c3),var(--c2));
  transition:width .8s ease;
}

/* BOTÃO */
.main-content .cards .card .btn-investir{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.78rem 1.4rem;border-radius:12px;
  border:1px solid rgba(110,45,229,.35);
  background:rgba(110,45,229,.2);
  font-weight:600;font-size:.92rem;color:#fff;
  cursor:pointer;position:relative;overflow:hidden;
  transition:background .18s, box-shadow .18s, transform .18s;
  margin-top:.6rem;
}
.main-content .cards .card .btn-investir:hover{
  background:rgba(110,45,229,.32);
  box-shadow:0 0 16px rgba(110,45,229,.5);
  transform:translateY(-2px);
}
/* scanline */
.main-content .cards .card .btn-investir::before{
  content:"";
  position:absolute; top:0; left:-120%;
  width:120%; height:100%;
  background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.08) 50%,transparent 100%);
  animation:scan 2.8s linear infinite;
}
@keyframes scan{
  0%{left:-120%;}
  100%{left:120%;}
}
/* linha energia */
.main-content .cards .card .btn-investir::after{
  content:"";
  position:absolute;bottom:0;left:-100%;
  width:100%;height:2px;
  background:linear-gradient(90deg,var(--c1),var(--c2),var(--c3));
  animation:barRun 2.3s infinite;
}
@keyframes barRun{
  0%{left:-100%;}
  50%{left:0;}
  100%{left:100%;}
}

/* Sem VIP/POP/NOVO */
.main-content .cards .card .ribbon{display:none!important;}

/* Tooltip opcional */
.main-content .cards .card .tooltip{
  position:absolute;bottom:110%;left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,.88);padding:.35rem .65rem;
  border-radius:6px;font-size:.7rem;color:#fff;
  opacity:0;pointer-events:none;transition:.2s;
}
.main-content .cards .card:hover .tooltip{opacity:1;}

/* Mobile */
@media(max-width:768px){
  .main-content .cards .card:hover{transform:none;}
  .main-content .cards .card .tooltip{display:none;}
}



/* Título da página */
body.invest-page .section-title{
  font-size:2.4rem;
  font-weight:700;
  margin:0 0 1.8rem 0;
  background:linear-gradient(45deg,var(--text-light),var(--gold-accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  letter-spacing:.5px;
}
@media(max-width:768px){
  body.invest-page .section-title{
    font-size:1.9rem;
    margin-bottom:1.4rem;
  }
}

/* MOBILE SIDEBAR */
@media(max-width:768px){
  body.invest-page .sidebar{
    position:fixed; top:0; left:0;
    height:100vh; width:270px;
    transform:translateX(-100%);
    transition:transform .35s cubic-bezier(.77,.2,.05,1);
    z-index:1000; overflow-y:hidden;
  }
  body.invest-page .sidebar.active{ transform:translateX(0); }

  .menu-toggle{
    position:fixed; top:1rem; left:1rem;
    width:50px; height:50px; border:none; border-radius:50%;
    background:linear-gradient(135deg,var(--accent-purple),var(--accent-red));
    color:#fff; font-size:1.4rem;
    display:flex; align-items:center; justify-content:center;
    z-index:1100; box-shadow:0 6px 18px rgba(110,45,229,.45);
    cursor:pointer; transition:transform .3s;
  }
  .menu-toggle.active{ transform:rotate(90deg); }

  .sidebar-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(4px);
    opacity:0; visibility:hidden;
    transition:.3s; z-index:900;
  }
  .sidebar-overlay.active{ opacity:1; visibility:visible; }

  body.invest-page .main-content{ margin-left:0; padding-top:5rem; }
}















/* ===================== SAQUE (isolado) ===================== */
/* Tudo só vale quando o <body> tiver class="withdraw-page"  */

.withdraw-page .section-title{
  font-size:2.4rem;
  font-weight:700;
  margin:0 0 2rem;
  background:linear-gradient(45deg,var(--text-light),var(--gold-accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.withdraw-page .wd-card{
  max-width:720px;
  margin:0 auto 3rem;
  background:rgba(15,5,30,.78);
  border:1px solid rgba(110,45,229,.25);
  border-radius:22px;
  padding:2.2rem 2rem;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.withdraw-page .wd-card::before{
  content:"";
  position:absolute;left:0;top:0;width:100%;height:4px;
  background:linear-gradient(90deg,var(--accent-purple),var(--accent-red));
}

.withdraw-page .wd-header h2{
  font-size:1.6rem;
  margin:0 0 .6rem;
  color:var(--text-light);
  display:flex; align-items:center; gap:.5rem;
}
.withdraw-page .wd-sub{
  color:var(--text-muted);
  font-size:.9rem;
  margin-bottom:1.6rem;
}

.withdraw-page .wd-form{ width:100%; }
.withdraw-page .wd-group{
  margin-bottom:1.2rem;
  display:flex; flex-direction:column;
}
.withdraw-page .wd-group label{
  font-size:.9rem;
  color:var(--text-muted);
  margin-bottom:.4rem;
  display:flex; align-items:center; gap:.4rem;
}
.withdraw-page .wd-group input,
.withdraw-page .wd-group select{
  padding:.9rem 1rem;
  background:rgba(26,11,46,.55);
  border:1px solid rgba(110,45,229,.3);
  border-radius:10px;
  color:#fff;
  font-size:.95rem;
  transition:border .2s, box-shadow .2s;
}
.withdraw-page .wd-group input:focus,
.withdraw-page .wd-group select:focus{
  outline:none;
  border-color:var(--accent-purple);
  box-shadow:0 0 0 3px rgba(110,45,229,.2);
}

.withdraw-page .wd-info{
  margin:1.2rem 0;
  background:rgba(110,45,229,.12);
  border:1px solid rgba(110,45,229,.25);
  border-radius:10px;
  padding:1rem 1.2rem;
  color:var(--text-light);
  font-size:.9rem;
}
.withdraw-page .wd-info p{ margin:.25rem 0; }

.withdraw-page .wd-msg .alert{
  margin-top:.8rem;
  font-size:.9rem;
  padding:.8rem 1rem;
  border-radius:10px;
}
.alert-info{    background:rgba(0,123,255,.15);  color:#9ecbff; }
.alert-success{ background:rgba(40,167,69,.15);  color:#7ddf9d; }
.alert-danger{  background:rgba(220,53,69,.18);  color:#ff8a9c; }
.alert-warning{ background:rgba(255,193,7,.18);  color:#ffd77c; }

.withdraw-page .wd-btn{
  width:100%;
  padding:1rem;
  border:none; border-radius:12px;
  background:linear-gradient(135deg,var(--accent-purple),var(--accent-red));
  color:#fff; font-weight:600; font-size:1rem;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(110,45,229,.3);
  transition:transform .2s, box-shadow .2s;
  display:flex; align-items:center; justify-content:center; gap:.6rem;
}
.withdraw-page .wd-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(110,45,229,.4);
}

/* Mobile tweaks */
@media(max-width:768px){
  .withdraw-page .wd-card{
    padding:1.6rem 1.2rem;
    margin:0 1rem 2.5rem;
  }
  .withdraw-page .section-title{
    font-size:1.9rem;
    margin-bottom:1.6rem;
  }
}

/* ===================== Overlay / Sidebar mobile fix ===================== */
.sidebar-overlay{
  position:fixed;
  top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,.65);      /* escurece sem blur */
  backdrop-filter:none;            /* evita ficar opaco/embaçado */
  z-index:900;
  opacity:0;visibility:hidden;
  transition:opacity .3s;
}
.sidebar-overlay.active{
  opacity:1;visibility:visible;
}
@media(max-width:768px){
  .sidebar{ z-index:1000; }        /* sidebar acima do overlay */
  .main-content{ filter:none !important; }  /* garante nada opaco */
}























/* Estilos adicionais para o histórico de investimentos*/
.card-body {
  padding: 1.5rem;
}

.game-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(26, 11, 46, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.game-table th {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
  padding: 1rem;
  text-align: left;
  color: var(--gold-accent);
  font-weight: 600;
}

.game-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(110, 45, 229, 0.1);
}

.game-table tr:last-child td {
  border-bottom: none;
}

.game-table tr:hover {
  background: rgba(110, 45, 229, 0.1);
}

.text-value {
  font-weight: 600;
  color: var(--gold-accent);
}

.status-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-active {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-completed {
  background: rgba(13, 110, 253, 0.2);
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, 0.3);
}

.status-cancelled {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-pagination {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), transparent);
  border: none;
  color: var(--text-light);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pagination:hover {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.5), transparent);
  transform: translateY(-2px);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.page-number {
  background: rgba(110, 45, 229, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}





/* Estilos específicos para a página de Historico de rendimentos */
.rendimento-card {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.7), rgba(10, 4, 20, 0.7));
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.rendimento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
}

.rendimento-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(15, 5, 30, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.rendimento-table th {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
  padding: 1rem;
  text-align: left;
  color: var(--gold-accent);
  font-weight: 600;
}

.rendimento-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(110, 45, 229, 0.1);
}

.rendimento-table tr:last-child td {
  border-bottom: none;
}

.rendimento-table tr:hover {
  background: rgba(110, 45, 229, 0.1);
}

.rendimento-value {
  font-weight: 600;
  color: var(--gold-accent);
}

.rendimento-date {
  color: var(--text-muted);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-pagination {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), transparent);
  border: none;
  color: var(--text-light);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pagination:hover {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.5), transparent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 45, 229, 0.3);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.page-number {
  background: rgba(110, 45, 229, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.total-rendimentos {
  background: rgba(26, 11, 46, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-rendimentos h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.2rem;
}

.total-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--gold-accent), var(--platinum-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}




















 /* Estilos específicos para a página de resgates */
 .resgate-card {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.7), rgba(10, 4, 20, 0.7));
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.resgate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
}

.resgate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(15, 5, 30, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.resgate-table th {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
  padding: 1rem;
  text-align: left;
  color: var(--gold-accent);
  font-weight: 600;
}

.resgate-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(110, 45, 229, 0.1);
}

.resgate-table tr:last-child td {
  border-bottom: none;
}

.resgate-table tr:hover {
  background: rgba(110, 45, 229, 0.1);
}

.resgate-value {
  font-weight: 600;
  color: var(--gold-accent);
}

.resgate-date {
  color: var(--text-muted);
}

.resgate-id {
  color: var(--platinum-accent);
}

.resgate-type {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.type-rendimento {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.type-comissao {
  background: rgba(13, 110, 253, 0.2);
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, 0.3);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-pagination {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), transparent);
  border: none;
  color: var(--text-light);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pagination:hover {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.5), transparent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 45, 229, 0.3);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.page-number {
  background: rgba(110, 45, 229, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.filter-container {
  background: rgba(26, 11, 46, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
}

.filter-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.filter-select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(10, 4, 20, 0.7);
  border: 1px solid rgba(110, 45, 229, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(110, 45, 229, 0.2);
}

/* Estilos para os contadores */
.counters-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.counter-card {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.7), rgba(10, 4, 20, 0.7));
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
  text-align: center;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.counter-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--gold-accent), var(--platinum-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Barra de rolagem horizontal só em telas pequenas */
@media (max-width: 768px){
  .table-responsive{
    overflow-x: auto;                 /* mostra a barra */
    -webkit-overflow-scrolling: touch;/* scroll suave no iOS */
  }
  .resgate-table{
    min-width: 700px;                 /* maior que a tela => força o scroll */
  }
}














/* Estilos específicos para o histórico de saques */
.saque-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.saque-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.saque-title {
  font-size: 2rem;
  font-weight: 700;
  background: #ffffff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.filtros-saques {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.filtro-btn {
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(110, 45, 229, 0.1);
  border: 1px solid rgba(110, 45, 229, 0.3);
  color: #b8a6d9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filtro-btn:hover, .filtro-btn.ativo {
  background: rgba(110, 45, 229, 0.3);
  color: white;
}

.saque-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(26, 11, 46, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.saque-table th {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
  padding: 15px;
  text-align: left;
  color: var(--gold-accent);
  font-weight: 600;
}

.saque-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(110, 45, 229, 0.1);
}

.saque-table tr:last-child td {
  border-bottom: none;
}

.saque-table tr:hover {
  background: rgba(110, 45, 229, 0.1);
}

.status-badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pendente {
  background: rgba(255, 193, 7, 0.2);
  color: #FFD700;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-aprovado {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-rejeitado {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.btn-pagination {
  background: rgba(110, 45, 229, 0.2);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pagination:hover {
  background: rgba(110, 45, 229, 0.4);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-number {
  background: rgba(110, 45, 229, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .saque-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .filtros-saques {
    flex-wrap: wrap;
  }
  
  .saque-table {
    display: block;
    overflow-x: auto;
  }
}



  /* Ajustes específicos para mobile */
  @media (max-width: 768px) {
    .saque-table {
      width: 100%;
      display: block;
      overflow-x: auto;
    }
    
    .saque-table th, 
    .saque-table td {
      white-space: nowrap;
      padding: 12px 8px;
      font-size: 0.85rem;
    }
    
    /* Ajuste específico para a coluna da carteira */
    .saque-table td:nth-child(4) {
      max-width: 120px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: inline-block;
    }
    
    /* Ajuste para a coluna de status */
    .saque-table td:nth-child(5) {
      min-width: 90px;
    }
    
    .filtros-saques {
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 10px;
    }
    
    .filtro-btn {
      flex: 0 0 auto;
    }
  }

  /* Ajustes adicionais para telas muito pequenas */
  @media (max-width: 480px) {
    .saque-table td:nth-child(4) {
      max-width: 100px;
    }
    
    .saque-table td:nth-child(5) {
      min-width: 80px;
    }
    
    .pagination-wrapper {
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .btn-pagination {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .page-number {
      padding: 6px 12px;
    }
  }



/* Força a tabela a respeitar as colunas */
.saque-table{
  width:100%;
  table-layout: fixed;           /* cada coluna mantém sua faixa */
  border-collapse: collapse;
}

/* Larguras no desktop (ajuste se quiser) */
.saque-table th:nth-child(1),
.saque-table td:nth-child(1){width:6%;}
.saque-table th:nth-child(2),
.saque-table td:nth-child(2){width:12%;}
.saque-table th:nth-child(3),
.saque-table td:nth-child(3){width:14%;}
.saque-table th:nth-child(4),
.saque-table td:nth-child(4){width:32%; max-width:360px;} /* Carteira */
.saque-table th:nth-child(5),
.saque-table td:nth-child(5){width:14%;}
.saque-table th:nth-child(6),
.saque-table td:nth-child(6){width:22%;}

.saque-table th, .saque-table td{
  vertical-align: middle;
  overflow:hidden;               /* nada passa pra cima do vizinho */
}

/* Conteúdo da carteira controlado */
.carteira-cell{
  overflow:hidden;
}
.carteira-cell span{
  display:block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Badge não pode flutuar por cima de nada */
.status-badge{
  position: static !important;
  display:inline-block;
  z-index:1;
}

/* Se apertar muito, libera quebra de linha pra não estourar */
@media (max-width: 992px){
  .saque-table{ table-layout:auto; }
  .carteira-cell span{
    white-space: normal;
    text-overflow: initial;
    overflow: visible;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/* Scroll horizontal como fallback em telas MUITO estreitas */
.table-responsive{
  overflow-x: auto;
}















   /* Estilos específicos para o histórico de depósitos */
   .deposito-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .deposito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .deposito-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
 
  
  .deposito-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(26, 11, 46, 0.5);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .deposito-table th {
    background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
    padding: 15px;
    text-align: left;
    color: var(--gold-accent);
    font-weight: 600;
  }
  
  .deposito-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(110, 45, 229, 0.1);
  }
  
  .deposito-table tr:last-child td {
    border-bottom: none;
  }
  
  .deposito-table tr:hover {
    background: rgba(110, 45, 229, 0.1);
  }
  
  .valor-deposito {
    font-weight: 600;
    color: var(--gold-accent);
  }
  
  .metodo-pix {
    color: #28a745;
  }
  
  .metodo-cripto {
    color: #17a2b8;
  }
  
  .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .btn-pagination {
    background: rgba(110, 45, 229, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-pagination:hover {
    background: rgba(110, 45, 229, 0.4);
  }
  
  .btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .page-number {
    background: rgba(110, 45, 229, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .deposito-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    
    
    
    .deposito-table {
      display: block;
      overflow-x: auto;
    }
    
    .deposito-table th, 
    .deposito-table td {
      white-space: nowrap;
      padding: 12px 8px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .pagination-wrapper {
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .btn-pagination {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .page-number {
      padding: 6px 12px;
    }
  }












  /* Estilos específicos para a rede ativa */
  .rede-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .rede-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .rede-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .filtro-nivel {
    margin-bottom: 20px;
  }
  
  .filtro-nivel label {
    display: block;
    margin-bottom: 8px;
    color: #b8a6d9;
    font-size: 0.9rem;
  }
  
  .filtro-nivel select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(110, 45, 229, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .filtro-nivel select:focus {
    outline: none;
    border-color: #6e2de5;
    box-shadow: 0 0 0 3px rgba(110, 45, 229, 0.2);
  }
  
  .rede-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(26, 11, 46, 0.5);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .rede-table th {
    background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
    padding: 15px;
    text-align: left;
    color: var(--gold-accent);
    font-weight: 600;
  }
  
  .rede-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(110, 45, 229, 0.1);
  }
  
  .rede-table tr:last-child td {
    border-bottom: none;
  }
  
  .rede-table tr:hover {
    background: rgba(110, 45, 229, 0.1);
  }
  
  .comissao-valor {
    font-weight: 600;
    color: var(--gold-accent);
  }
  
  .whatsapp-link {
display: flex;
align-items: center;
color: #25D366;
text-decoration: none;
transition: all 0.3s ease;
position: relative; /* adicione essa linha */
z-index: 10; /* e essa linha também */
}

  
  .whatsapp-link:hover {
    color: #128C7E;
  }
  
  .whatsapp-icon {
    width: 18px;
    margin-right: 8px;
  }
  
  .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .btn-pagination {
    background: rgba(110, 45, 229, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-pagination:hover {
    background: rgba(110, 45, 229, 0.4);
  }
  
  .btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .page-number {
    background: rgba(110, 45, 229, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .rede-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    
    .rede-table {
      display: block;
      overflow-x: auto;
    }
    
    .rede-table th, 
    .rede-table td {
      white-space: nowrap;
      padding: 12px 8px;
      font-size: 0.85rem;
    }
    
    .whatsapp-icon {
      width: 16px;
      margin-right: 6px;
    }
  }

  @media (max-width: 480px) {
    .pagination-wrapper {
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .btn-pagination {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .page-number {
      padding: 6px 12px;
    }
  }
















  /* ============================================
   ESTILOS ESPECÍFICOS PARA REDE PENDENTE 
   ============================================ */

/* Container do Filtro */
.filter-container {
  background: rgba(26, 11, 46, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(110, 45, 229, 0.2);
}

.filter-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-label i {
  color: var(--accent-purple);
}

/* Select do Filtro */
.filter-container select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(10, 4, 20, 0.7);
  border: 1px solid rgba(110, 45, 229, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236e2de5'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1rem;
}

.filter-container select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(110, 45, 229, 0.2);
}

/* Estilos da Tabela */
.game-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(26, 11, 46, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.game-table th {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), rgba(26, 11, 46, 0.7));
  padding: 1rem;
  text-align: left;
  color: var(--gold-accent);
  font-weight: 600;
}

.game-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(110, 45, 229, 0.1);
  color: var(--text-light);
}

.game-table tr:last-child td {
  border-bottom: none;
}

.game-table tr:hover {
  background: rgba(110, 45, 229, 0.1);
}

/* Link do WhatsApp */
.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  color: #128C7E;
  text-decoration: underline;
}

.whatsapp-link i {
  font-size: 1.1rem;
}

/* Badge de Nível */
.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(110, 45, 229, 0.2);
  color: var(--gold-accent);
  border: 1px solid rgba(110, 45, 229, 0.3);
}

/* Paginação */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-pagination {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.3), transparent);
  border: none;
  color: var(--text-light);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pagination:hover {
  background: linear-gradient(135deg, rgba(110, 45, 229, 0.5), transparent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 45, 229, 0.3);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.page-number {
  background: rgba(110, 45, 229, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .filter-container {
    padding: 1rem;
  }
  
  .game-table {
    display: block;
    overflow-x: auto;
  }
  
  .game-table th, 
  .game-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .btn-pagination {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Efeitos Especiais */
.glow-effect {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.glow-effect span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.glow-effect span:nth-child(1) {
  background: var(--accent-purple);
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}

.glow-effect span:nth-child(2) {
  background: var(--accent-red);
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: -50px;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(110, 45, 229, 0.5);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}













/* ===========================
   PERFIL - Dropx (prefixo prf-)
   =========================== */

/* Variáveis */
:root {
  --prf-primary-dark: #0a0414;
  --prf-secondary-dark: #1a0b2e;
  --prf-accent-purple: #6e2de5;
  --prf-accent-red: #e52d6e;
  --prf-text-light: #f0e6ff;
  --prf-text-muted: #b8a6d9;
  --prf-sidebar-width: 300px;
  --prf-gold-accent: #FFD700;
  --prf-platinum-accent: #E5E4E2;
  --prf-transition: 0.3s;
}

.prf-body {
  background: var(--prf-primary-dark);
  color: var(--prf-text-light);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Montserrat','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

.prf-container {
  display: grid;
  grid-template-columns: var(--prf-sidebar-width) 1fr;
  min-height: 100vh;
  transition: all var(--prf-transition) ease;
}

/* Sidebar */
.prf-sidebar {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.9), rgba(10, 4, 20, 0.95));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(110, 45, 229, 0.15);
  position: relative;
  box-shadow: 10px 0 50px rgba(0,0,0,0.5);
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  transition: all var(--prf-transition) ease;
}
.prf-sidebar.prf-active { overflow-y: auto; }

.prf-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(15, 5, 30, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(110,45,229,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--prf-transition) ease;
}
.prf-logo span {
  background: linear-gradient(45deg, var(--prf-gold-accent), var(--prf-platinum-accent), var(--prf-accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prf-nav-menu {
  list-style: none;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  padding-left: 0;
  margin: 0;
}
.prf-nav-item {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
  position: relative;
  overflow: hidden;
}
.prf-nav-item.prf-active {
  background: linear-gradient(90deg, rgba(110,45,229,0.3), transparent);
  border-left: 3px solid var(--prf-gold-accent);
  box-shadow: 5px 0 15px rgba(110,45,229,0.3);
}
.prf-nav-item a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--prf-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--prf-transition) ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}
.prf-nav-item.prf-active a,
.prf-nav-item:hover a { color: var(--prf-text-light); }

.prf-nav-item i {
  margin-right: 15px;
  font-size: 1.1rem;
  color: var(--prf-platinum-accent);
  transition: all var(--prf-transition) ease;
}
.prf-nav-item.prf-active i,
.prf-nav-item:hover i { color: var(--prf-gold-accent); }

/* Submenu Rede */
.prf-rede-submenu {
  list-style: none;
  padding-left: 2.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--prf-transition) ease;
}
.prf-rede-submenu.prf-active { max-height: 200px; }
.prf-rede-submenu li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--prf-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.prf-rede-submenu li a:hover { color: var(--prf-text-light); }

/* Footer user */
.prf-sidebar-footer {
  margin-top: 2rem;
}
.prf-user-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.prf-user-avatar {
  width: 45px;
  height: 45px;
  background: var(--prf-accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.prf-user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--prf-text-light);
}
.prf-user-role {
  font-size: 0.8rem;
  color: var(--prf-text-muted);
}

/* Main */
.prf-main-content {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.prf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.prf-welcome h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--prf-text-light), var(--prf-text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Card */
.prf-card {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.7), rgba(10, 4, 20, 0.7));
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110,45,229,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all var(--prf-transition) ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.prf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--prf-accent-purple), var(--prf-accent-red));
}
.prf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.prf-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--prf-gold-accent);
}

/* Info perfil */
.prf-profile-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.prf-info-row { display: flex; flex-direction: column; }
.prf-info-row strong {
  font-size: 0.9rem;
  color: var(--prf-text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prf-info-row p {
  font-size: 1rem;
  color: var(--prf-text-light);
  padding: 0.8rem;
  background: rgba(26, 11, 46, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(110,45,229,0.2);
}

/* Formulário */
.prf-form-group { margin-bottom: 1.5rem; }
.prf-form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--prf-text-muted);
  margin-bottom: 0.5rem;
}
.prf-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(26, 11, 46, 0.5);
  border: 1px solid rgba(110,45,229,0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--prf-transition) ease;
}
.prf-form-control:focus {
  outline: none;
  border-color: var(--prf-accent-purple);
  box-shadow: 0 0 0 3px rgba(110,45,229,0.2);
}
.prf-btn-primary {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--prf-accent-purple), var(--prf-accent-red));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--prf-transition) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.prf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229,45,110,0.4);
}

/* Alertas */
.prf-alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.prf-alert-success {
  background: rgba(40,167,69,0.2);
  color: #7ddf9d;
  border: 1px solid rgba(40,167,69,0.3);
}
.prf-alert-danger {
  background: rgba(220,53,69,0.2);
  color: #ff8a9c;
  border: 1px solid rgba(220,53,69,0.3);
}

/* Efeitos de brilho */
.prf-glow-effect {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.prf-glow-effect span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.prf-glow-effect span:nth-child(1) {
  background: var(--prf-accent-purple);
  width: 500px; height: 500px;
  top: -100px; left: -100px;
}
.prf-glow-effect span:nth-child(2) {
  background: var(--prf-accent-red);
  width: 300px; height: 300px;
  bottom: 100px; right: -50px;
}

/* Botão mobile e overlay */
.prf-menu-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  background: linear-gradient(135deg, var(--prf-accent-purple), var(--prf-accent-red));
  border: none;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(110,45,229,0.5);
  transition: all var(--prf-transition) ease;
  align-items: center;
  justify-content: center;
}
.prf-sidebar-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--prf-transition) ease;
}
.prf-sidebar-overlay.prf-active {
  opacity: 1;
  visibility: visible;
}

/* Responsividade */
@media (max-width: 768px) {
  .prf-container {
    grid-template-columns: 1fr;
  }

  .prf-sidebar {
    position: fixed;
    left: -100%;
    width: var(--prf-sidebar-width);
    height: 100vh;
    z-index: 999;
    transition: all var(--prf-transition) ease;
  }
  .prf-sidebar.prf-active { left: 0; }

  .prf-main-content { padding-top: 5rem; }

  .prf-menu-toggle { display: flex; }
}


































/* ======================================
   RECUPERAR SENHA - Dropx (prefixo rcp-)
   ====================================== */

/* Variáveis */
/* ======================================
   RECUPERAR SENHA - Dropx (prefixo rcp-)
   ====================================== */

/* Variáveis só dentro do body desta página */
.rcp-body {
  --rcp-primary-dark: #0a0414;
  --rcp-secondary-dark: #1a0b2e;
  --rcp-accent-purple: #6e2de5;
  --rcp-accent-red: #e52d6e;
  --rcp-text-light: #f0e6ff;
  --rcp-text-muted: #b8a6d9;
  --rcp-gold: #FFD700;
  --rcp-transition: 0.3s;
  --rcp-card-width: 380px;
  --rcp-radius: 16px;
  --rcp-input-bg: rgba(26, 11, 46, 0.5);
  --rcp-input-border: rgba(110,45,229,0.3);
}

.rcp-body {
  background: var(--rcp-primary-dark);
  color: var(--rcp-text-light);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Montserrat','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ... resto do arquivo igual ao anterior ... */


/* Glow background */
.rcp-glow-effect {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.rcp-glow-effect span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.rcp-glow-effect span:nth-child(1) {
  background: var(--rcp-accent-purple);
  width: 520px; height: 520px;
  top: -120px; left: -150px;
}
.rcp-glow-effect span:nth-child(2) {
  background: var(--rcp-accent-red);
  width: 320px; height: 320px;
  bottom: 100px; right: -80px;
}

/* Wrapper */
.rcp-wrapper {
  width: 100%;
  max-width: var(--rcp-card-width);
  padding: 20px;
  box-sizing: border-box;
}

/* Card */
.rcp-card {
  background: linear-gradient(135deg, rgba(26,11,46,0.7), rgba(10,4,20,0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110,45,229,0.25);
  border-radius: var(--rcp-radius);
  padding: 2.2rem 2rem 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.rcp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--rcp-accent-purple), var(--rcp-accent-red));
}
.rcp-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.rcp-logo img {
  max-width: 160px;
  height: auto;
}
.rcp-title {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(45deg, var(--rcp-text-light), var(--rcp-text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Form */
#rcp-form { width: 100%; }

.rcp-form-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.rcp-input-icon {
  display: flex;
  align-items: center;
}
.rcp-input-icon i {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  color: var(--rcp-text-muted);
}
.rcp-input-icon input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  background: var(--rcp-input-bg);
  border: 1px solid var(--rcp-input-border);
  border-radius: 10px;
  color: var(--rcp-text-light);
  font-size: 0.95rem;
  transition: border var(--rcp-transition) ease, box-shadow var(--rcp-transition) ease;
}
.rcp-input-icon input:focus {
  outline: none;
  border-color: var(--rcp-accent-purple);
  box-shadow: 0 0 0 3px rgba(110,45,229,0.25);
}

/* Botão */
.rcp-btn-primary {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--rcp-accent-purple), var(--rcp-accent-red));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--rcp-transition) ease, box-shadow var(--rcp-transition) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.rcp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(229,45,110,0.35);
}

/* Feedback */
.rcp-alert {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
}
.rcp-alert-warning {
  background: rgba(255,193,7,0.15);
  color: #ffd36a;
  border: 1px solid rgba(255,193,7,0.25);
}
.rcp-alert-success {
  background: rgba(40,167,69,0.2);
  color: #7ddf9d;
  border: 1px solid rgba(40,167,69,0.3);
}

/* Links extras */
.rcp-links {
  margin-top: 1.2rem;
  text-align: center;
}
.rcp-links a {
  color: var(--rcp-accent-purple);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--rcp-transition) ease;
}
.rcp-links a:hover {
  color: var(--rcp-gold);
}

/* Responsivo */
@media (max-width: 420px) {
  :root { --rcp-card-width: 95vw; }
  .rcp-card { padding: 2rem 1.5rem 2.3rem; }
  .rcp-title { font-size: 1.25rem; }
}























/* ======================================
   NOVA SENHA - Dropx (prefixo nsv-)
   ====================================== */

/* Variáveis escopadas só aqui */
.nsv-body {
  --nsv-primary-dark: #0a0414;
  --nsv-secondary-dark: #1a0b2e;
  --nsv-accent-purple: #6e2de5;
  --nsv-accent-red: #e52d6e;
  --nsv-text-light: #f0e6ff;
  --nsv-text-muted: #b8a6d9;
  --nsv-gold: #FFD700;
  --nsv-transition: 0.3s;
  --nsv-card-width: 380px;
  --nsv-radius: 16px;
  --nsv-input-bg: rgba(26, 11, 46, 0.5);
  --nsv-input-border: rgba(110,45,229,0.3);
}

.nsv-body {
  background: var(--nsv-primary-dark);
  color: var(--nsv-text-light);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Montserrat','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow background */
.nsv-glow-effect {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.nsv-glow-effect span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.nsv-glow-effect span:nth-child(1) {
  background: var(--nsv-accent-purple);
  width: 520px; height: 520px;
  top: -120px; left: -150px;
}
.nsv-glow-effect span:nth-child(2) {
  background: var(--nsv-accent-red);
  width: 320px; height: 320px;
  bottom: 100px; right: -80px;
}

/* Wrapper */
.nsv-wrapper {
  width: 100%;
  max-width: var(--nsv-card-width);
  padding: 20px;
  box-sizing: border-box;
}

/* Card */
.nsv-card {
  background: linear-gradient(135deg, rgba(26,11,46,0.7), rgba(10,4,20,0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110,45,229,0.25);
  border-radius: var(--nsv-radius);
  padding: 2.2rem 2rem 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.nsv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--nsv-accent-purple), var(--nsv-accent-red));
}

.nsv-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.nsv-logo img {
  max-width: 160px;
  height: auto;
}

.nsv-title {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(45deg, var(--nsv-text-light), var(--nsv-text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Form */
#nsv-form { width: 100%; }

.nsv-form-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.nsv-input-icon {
  display: flex;
  align-items: center;
}
.nsv-input-icon i {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  color: var(--nsv-text-muted);
}
.nsv-input-icon input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  background: var(--nsv-input-bg);
  border: 1px solid var(--nsv-input-border);
  border-radius: 10px;
  color: var(--nsv-text-light);
  font-size: 0.95rem;
  transition: border var(--nsv-transition) ease, box-shadow var(--nsv-transition) ease;
}
.nsv-input-icon input:focus {
  outline: none;
  border-color: var(--nsv-accent-purple);
  box-shadow: 0 0 0 3px rgba(110,45,229,0.25);
}

/* Botão */
.nsv-btn-primary {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--nsv-accent-purple), var(--nsv-accent-red));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--nsv-transition) ease, box-shadow var(--nsv-transition) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.nsv-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(229,45,110,0.35);
}

/* Feedback */
.nsv-alert {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
}
.nsv-alert-warning {
  background: rgba(255,193,7,0.15);
  color: #ffd36a;
  border: 1px solid rgba(255,193,7,0.25);
}
.nsv-alert-success {
  background: rgba(40,167,69,0.2);
  color: #7ddf9d;
  border: 1px solid rgba(40,167,69,0.3);
}

/* Links */
.nsv-links {
  margin-top: 1.2rem;
  text-align: center;
}
.nsv-links a {
  color: var(--nsv-accent-purple);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--nsv-transition) ease;
}
.nsv-links a:hover {
  color: var(--nsv-gold);
}

/* Responsivo */
@media (max-width: 420px) {
  .nsv-card { padding: 2rem 1.5rem 2.3rem; }
  .nsv-title { font-size: 1.25rem; }
}
