/* ============================================
   SPORTING BET SIGNALS - PWA STYLES
   Tema: Sporting Bet - Azul e Branco (Verde → Vermelho/Branco)
   ============================================ */

:root {
  --bg-primary: #0a1628;
  --bg-secondary: #1a2332;
  --bg-card: #1f2a3a;
  --bg-card-hover: #253040;
  --text-primary: #ffffff;
  --text-secondary: #b0b8c0;
  --accent-blue: #0066cc;
  --accent-red: #ff3333;
  --accent-white: #ffffff;
  --accent-neon: #ff3333;
  --accent-electric: #0066cc;
  --border-color: #2a3440;
  --shadow-neon: 0 0 20px rgba(255, 51, 51, 0.4);
  --shadow-blue: 0 0 20px rgba(0, 102, 204, 0.3);
  --shadow-red: 0 0 25px rgba(255, 51, 51, 0.5);
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #ffffff 100%);
  --gradient-red: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
  --gradient-card: linear-gradient(135deg, #1f2a3a 0%, #2a3440 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px; /* Espaço para menu inferior */
}

/* ============================================
   SPLASH SCREEN / LANDING
   ============================================ */

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0a1628 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 40px 20px;
  overflow: hidden;
  pointer-events: auto;
}

.splash-screen.hidden {
  display: none;
}

.splash-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 204, 102, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
  animation: particlesMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particlesMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.splash-content {
  text-align: center;
  max-width: 600px;
  width: min(600px, 100%);
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  margin: 0 20px;
  pointer-events: auto;
}

.splash-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.splash-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 255, 136, 0.2);
  border: 2px solid var(--accent-neon);
  border-radius: 30px;
  color: var(--accent-neon);
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  letter-spacing: 1px;
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: scale(1.05);
  }
}

.splash-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
  line-height: 1.1;
}

@keyframes titleGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
  }
  50% { 
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.8));
  }
}

.splash-highlight {
  margin-bottom: 25px;
}

.highlight-text {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 168, 255, 0.2) 100%);
  border: 2px solid var(--accent-neon);
  border-radius: 10px;
  color: var(--accent-neon);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
  animation: highlightShine 3s ease-in-out infinite;
}

@keyframes highlightShine {
  0%, 100% { 
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
  }
  50% { 
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.7);
  }
}

.splash-subtitle {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.splash-features {
  background: rgba(31, 31, 31, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
}

.feature-item {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 10px;
  font-weight: 500;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.splash-install-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-style: italic;
}

.btn-splash {
  padding: 18px 50px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  animation: buttonPulse 2s ease-in-out infinite;
  cursor: pointer;
  position: relative;
  z-index: 10002;
  pointer-events: auto;
}

@keyframes buttonPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  }
  50% { 
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.8);
  }
}

.btn-arrow {
  font-size: 1.5rem;
  animation: arrowMove 1.5s ease-in-out infinite;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
  pointer-events: auto !important;
  position: relative;
  z-index: 10003 !important;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* ============================================
   SEÇÃO DE INSTALAÇÃO (A2HS GATE)
   ============================================ */

.install-section {
  width: 100%;
  background: rgba(12, 12, 12, 0.85);
  border-radius: 25px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 255, 136, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  animation: fadeInUp 0.6s ease;
  text-align: left;
  backdrop-filter: blur(12px);
  margin-top: 10px;
}

.install-section h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  color: var(--accent-neon);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.install-header {
  text-align: center;
  margin-bottom: 35px;
}

.install-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.install-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.install-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.2);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.install-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.install-steps {
  background: rgba(20, 20, 20, 0.85);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 168, 255, 0.18);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
}

.install-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.install-step:hover {
  border-color: var(--accent-neon);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
  transform: translateX(5px);
}

.install-step:last-child {
  margin-bottom: 0;
}

.install-step-divider {
  height: 1px;
  background: var(--border-color);
  margin: 20px 0;
  opacity: 0.5;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-details {
  color: var(--text-secondary);
}

.step-details p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.step-action {
  color: var(--accent-neon) !important;
  font-weight: 600;
  margin-top: 5px;
}

.install-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.install-note {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 168, 255, 0.2) 100%);
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.note-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.note-text {
  color: var(--accent-neon);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.note-text strong {
  color: var(--text-primary);
}

.btn-install {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-check {
  font-size: 1.3rem;
  animation: checkBounce 2s ease-in-out infinite;
}

.btn-install-secondary:hover {
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

@media (min-width: 768px) {
  .install-section {
    text-align: center;
    padding: 42px 48px;
  }

  .install-intro {
    margin: 0 auto;
  }

  .install-actions {
    flex-direction: row;
    justify-content: center;
  }

  .install-actions .btn-primary,
  .install-actions .btn-secondary {
    width: auto;
    min-width: 220px;
  }

  .install-steps {
    text-align: left;
  }
}

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

/* ============================================
   MODAL DE INSTALAÇÃO
   ============================================ */

.install-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  overflow-y: auto;
  padding: 20px;
  animation: fadeIn 0.3s ease-in;
  pointer-events: auto;
}

.install-modal.active {
  display: flex;
}

.install-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease-out;
}

/* ============================================
   LOGIN / CADASTRO
   ============================================ */

.auth-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.auth-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.auth-card h2 {
  text-align: center;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-secondary);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-tab.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-neon);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-neon);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: white;
  color: #333;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.error-message {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  border: 1px solid #ff4444;
}

/* ============================================
   DASHBOARD / APP PRINCIPAL
   ============================================ */

.app-container {
  display: none;
}

.app-container.active {
  display: block;
}

/* Header */
.app-header {
  background: var(--bg-secondary);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header h1 {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sinal em Destaque */
.featured-signal {
  background: var(--gradient-card);
  margin: 20px;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid var(--accent-neon);
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.featured-signal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

.featured-signal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.featured-signal-header h2 {
  font-size: 1.3rem;
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.signal-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.signal-logos {
  display: flex;
  align-items: center;
  gap: 15px;
}

.signal-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-neon);
  box-shadow: var(--shadow-neon);
}

.signal-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.signal-info {
  flex: 1;
}

.signal-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.signal-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.confidence-level {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.confidence-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.countdown-timer {
  text-align: center;
  margin-bottom: 20px;
}

.countdown-timer h4 {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.timer-display {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-neon);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  font-variant-numeric: tabular-nums;
}

.btn-play-now {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
}

.btn-play-now:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

/* Lista de Sinais */
.signals-list {
  padding: 0 20px 20px;
}

.signals-list h3 {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1.2rem;
}

.signal-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.signal-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

.signal-card.active {
  border-color: var(--accent-neon);
  box-shadow: var(--shadow-neon);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
}

.signal-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.signal-card-header img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.signal-card-header > div:first-child img {
  width: 50px;
  height: 50px;
}

.signal-card-header > div:first-child img + div + img {
  width: 40px;
  height: 40px;
}

.signal-card-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.signal-card-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.signal-time {
  margin-left: auto;
  color: var(--accent-blue);
  font-weight: bold;
}

/* Menu Inferior */
.bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border-color) !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  padding: 8px 0 4px 0 !important;
  z-index: 10000 !important;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.4) !important;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item.active {
  color: var(--accent-neon);
}

.nav-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Páginas */
.page {
  display: none;
  min-height: calc(100vh - 80px);
  padding-bottom: 20px;
}

.page.active {
  display: block;
}

/* Jogos Page */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.game-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

.game-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.game-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.game-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Raspadinhas Page */
.scratch-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.scratch-card {
  background: var(--gradient-card);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--accent-neon);
  box-shadow: var(--shadow-neon);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.lock-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0.7;
}

.scratch-card:hover {
  transform: scale(1.05);
}

.scratch-card.locked {
  opacity: 0.5;
  filter: grayscale(100%);
  cursor: not-allowed;
}

.scratch-card.locked::after {
  content: '🔒 PRO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--accent-neon);
  font-weight: bold;
}

/* Bônus Page */
.bonus-list {
  padding: 20px;
}

.bonus-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 20px;
}

.bonus-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
}

.bonus-info {
  flex: 1;
}

.bonus-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.bonus-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.btn-bonus {
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
}

.btn-bonus:hover {
  transform: scale(1.05);
}

/* Perfil / PRO Page */
.profile-page {
  padding: 20px;
}

.profile-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.profile-card h3 {
  margin-bottom: 15px;
  color: var(--accent-neon);
}

.plan-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-badge.free {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.pro-upgrade-card {
  background: var(--gradient-card);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--accent-neon);
  box-shadow: var(--shadow-neon);
  text-align: center;
  margin-top: 30px;
}

.pro-upgrade-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-neon);
}

.pro-features {
  text-align: left;
  margin: 20px 0;
}

.pro-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-features li::before {
  content: '✓';
  color: var(--accent-neon);
  font-weight: bold;
  font-size: 1.2rem;
}

.pro-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-neon);
  margin: 20px 0;
}

.btn-upgrade {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
}

.btn-upgrade:hover {
  transform: scale(1.02);
}

.btn-logout {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 480px) {
  .games-grid,
  .scratch-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .splash-screen h1 {
    font-size: 2rem;
  }
  
  .featured-signal {
    margin: 15px;
    padding: 20px;
  }
}

/* Scrollbar customizado para seção PRO */
#proBenefitsCarousel::-webkit-scrollbar {
  width: 8px;
}

#proBenefitsCarousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

#proBenefitsCarousel::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 10px;
}

#proBenefitsCarousel::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Garantir que botão Jogar Agora não fique sobre o menu */
#btnPlayNow {
  position: relative !important;
  z-index: 1 !important;
  margin-bottom: 20px !important;
}

.featured-signal {
  margin-bottom: 100px !important;
}

