/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --neon-gold: #06FFA5;
  --neon-gold-glow: #00D9A5;
  --neon-cyan: #00FFFF;
  --neon-pink: #FF00FF;
  --neon-purple: #9D4EDD;
  --neon-blue: #4361EE;
  --neon-green: #06FFA5;
  --neon-red: #FF006E;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-gold: rgba(6, 255, 165, 0.4);
  --shadow-gold: 0 0 25px rgba(6, 255, 165, 0.6);
  --shadow-gold-strong: 0 0 40px rgba(6, 255, 165, 0.9);
  --shadow-cyan: 0 0 25px rgba(0, 255, 255, 0.5);
  --shadow-purple: 0 0 25px rgba(157, 78, 221, 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Matrix Background Effect */
.matrix-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.1;
}

.matrix-column {
  position: absolute;
  top: -100%;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--neon-gold);
  text-shadow: 0 0 5px rgba(6, 255, 165, 0.8);
  white-space: nowrap;
  line-height: 1.2;
  animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(6, 255, 165, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: background-shift 10s ease-in-out infinite;
}

@keyframes background-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease-in;
}

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

.splash-content {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}

.logo-container {
  position: relative;
  margin-bottom: 3rem;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--neon-gold) 0%, transparent 70%);
  opacity: 0.3;
  animation: pulse-glow 2s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.logo-text {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
}

.logo-subtitle {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}

.splash-description {
  margin-bottom: 3rem;
}

.splash-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.splash-highlight {
  font-size: 1.3rem;
  color: var(--neon-gold);
  font-weight: 700;
  margin-top: 1rem;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
}

.btn-primary:active {
  transform: translateY(0);
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 255, 165, 0.5); }
  50% { box-shadow: 0 0 40px rgba(6, 255, 165, 0.8); }
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-gold);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
}

.btn-secondary:hover {
  background: rgba(6, 255, 165, 0.1);
  border-color: var(--neon-gold);
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.3);
}

.btn-install {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-pink) 100%);
  color: var(--text-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  overflow-y: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

/* PIX Payment Modal */
.pix-modal {
  max-width: 500px;
  width: 100%;
}

.pix-content {
  padding: 2rem;
}

.pix-amount {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid var(--neon-gold);
}

.pix-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pix-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

.pix-info-container {
  margin-bottom: 2rem;
}

.pix-info-box {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--neon-gold);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: left;
}

.pix-info-box h3 {
  color: var(--neon-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.pix-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.pix-steps li {
  counter-increment: step-counter;
  color: var(--text-primary);
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(6, 255, 165, 0.2);
}

.pix-steps li:last-child {
  border-bottom: none;
}

.pix-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--neon-gold);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.pix-steps li strong {
  color: var(--neon-gold);
  font-weight: 700;
}

.pix-copy-container {
  margin-bottom: 2rem;
}

.pix-copy-container label {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pix-copy-box {
  display: flex;
  gap: 0.5rem;
}

#pix-copy-code {
  flex: 1;
  padding: 0.8rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border-gold);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: monospace;
}

.btn-copy {
  padding: 0.8rem 1.5rem;
  background: var(--neon-gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-copy:hover {
  background: var(--neon-gold-glow);
  transform: scale(1.05);
}

.pix-status {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(6, 255, 165, 0.1);
  border-radius: 10px;
  border: 1px solid var(--neon-gold);
}

#pix-status-message {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
}

#pix-countdown {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 1.8rem;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Install Modal */
.install-modal-content {
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.install-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  border-bottom: 2px solid var(--bg-secondary);
}

.install-tab {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.install-tab.active {
  color: var(--neon-gold);
  border-bottom-color: var(--neon-gold);
}

.install-tab:hover {
  color: var(--neon-gold);
}

.install-platform-content {
  display: none;
  margin-top: 1.5rem;
}

.install-platform-content.active {
  display: block;
}

.browser-instruction {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gold);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.browser-icon {
  font-size: 1.5rem;
}

.browser-header h3 {
  color: var(--neon-gold);
  font-size: 1.2rem;
  margin: 0;
}

.browser-visual {
  margin: 1.5rem 0;
  position: relative;
}

.browser-address-bar {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  box-shadow: var(--shadow-gold);
}

.address-field {
  flex: 1;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.url-text {
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

.menu-dots {
  color: var(--text-secondary);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.menu-dots-highlight {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--neon-gold);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  animation: pulse-glow 2s infinite;
  cursor: pointer;
}

.three-dots {
  color: var(--bg-primary);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.menu-dropdown {
  margin-top: 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: var(--shadow-gold);
}

.menu-item {
  padding: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(6, 255, 165, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  position: relative;
}

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

.menu-item.highlight-menu-item {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.2) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--neon-gold);
  border-radius: 8px;
  margin: 0.5rem 0;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.4);
}

.menu-icon {
  font-size: 1.2rem;
}

.arrow-pointer-menu {
  position: absolute;
  right: 1rem;
  color: var(--neon-gold);
  font-size: 1.5rem;
  font-weight: bold;
  animation: bounce-arrow-right 1s infinite;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

@keyframes bounce-arrow-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

.note-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.note-box strong {
  color: var(--neon-gold);
}

.install-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--neon-gold);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  animation: pulse-glow 2s infinite;
}

.browser-address-bar .share-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--neon-gold);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(6, 255, 165, 0.9);
  }
}

.share-icon,
.install-icon {
  width: 24px;
  height: 24px;
  color: var(--bg-primary);
}

.arrow-pointer {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--neon-gold);
  font-size: 1.5rem;
  font-weight: bold;
  animation: bounce-arrow 1s infinite;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* Safari Bottom Bar (Mobile) */
.safari-bottom-bar {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.safari-nav-icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
  position: relative;
}

.nav-icon-placeholder {
  color: var(--text-secondary);
  font-size: 1.2rem;
  opacity: 0.4;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-icon-container {
  position: relative;
  padding: 0.5rem;
  background: var(--neon-gold);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  animation: pulse-glow 2s infinite;
}

.share-icon-container .share-icon {
  width: 24px;
  height: 24px;
  color: var(--bg-primary);
}

.share-icon-container .arrow-pointer {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--neon-gold);
  font-size: 1.5rem;
  font-weight: bold;
  animation: bounce-arrow-up 1s infinite;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

@keyframes bounce-arrow-up {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.instruction-steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.instruction-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(6, 255, 165, 0.2);
}

.instruction-steps li:last-child {
  border-bottom: none;
}

.step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.instruction-steps li strong {
  color: var(--neon-gold);
  font-weight: 700;
}

/* App Container */
.app-container {
  min-height: 100vh;
  padding-bottom: 80px;
  position: relative;
  z-index: 10;
  background: transparent;
}

/* Page Header */
.page-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  background: var(--bg-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-header h1 {
  font-size: 1.8rem;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.3);
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.user-status {
  margin-top: 0.5rem;
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.free {
  background: rgba(128, 128, 128, 0.2);
  color: var(--text-secondary);
  border: 1px solid rgba(128, 128, 128, 0.5);
}

.status-badge.pro {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 100%);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
}

/* Pages */
.page {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.page.active {
  display: block;
}

/* AI Analysis Container */
.ai-analysis-container {
  padding: 1.5rem;
  background: var(--bg-secondary);
  margin: 1rem;
  border-radius: 15px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.1);
}

.analysis-status {
  text-align: center;
  margin-bottom: 1.5rem;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: var(--neon-gold);
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

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

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
}

#analysis-text {
  color: var(--neon-cyan);
  font-size: 1rem;
  font-weight: 600;
}

.countdown-container {
  text-align: center;
}

.countdown-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.countdown {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-gold);
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
  letter-spacing: 0.1em;
}

/* Sites Grid */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.site-card {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 15px;
  padding: 1.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
}

.site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-card:hover::before {
  opacity: 1;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(6, 255, 165, 0.4);
}

.site-card.hot {
  border-color: var(--neon-gold);
  box-shadow: var(--shadow-gold);
  animation: hot-pulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, var(--bg-card) 100%);
}

@keyframes hot-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 255, 165, 0.5); }
  50% { box-shadow: 0 0 40px rgba(6, 255, 165, 0.8); }
}

.hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 100%);
  color: var(--bg-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.8);
  animation: badge-pulse 1.5s ease-in-out infinite;
}

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

.site-logo {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.site-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.site-status {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  line-height: 1.3;
}

.site-status.hot-text {
  color: var(--neon-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.site-explanation {
  font-size: 0.75rem;
  color: var(--neon-cyan);
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--neon-cyan);
  line-height: 1.4;
}

.site-click-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--neon-gold);
  font-weight: 600;
  text-align: center;
  opacity: 0.8;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.6);
}

.pro-prompt-small {
  font-size: 0.75rem;
  color: var(--neon-purple);
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(157, 78, 221, 0.1);
  border-radius: 8px;
  border: 1px solid var(--neon-purple);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pro-prompt-small:hover {
  background: rgba(157, 78, 221, 0.2);
  transform: scale(1.02);
}

/* Sites Info Banner */
.sites-info-banner {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: 15px;
  padding: 1rem;
  margin: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-text {
  flex: 1;
}

.info-text strong {
  color: var(--neon-cyan);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.info-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.info-text p strong {
  color: var(--neon-gold);
  display: inline;
  font-size: 0.9rem;
}

/* PRO Banner Grid */
.pro-banner-grid {
  margin: 1.5rem;
  margin-top: 2rem;
}

.pro-banner-content {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(6, 255, 165, 0.15) 100%);
  border: 2px solid var(--neon-purple);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.3);
  animation: pro-banner-pulse 3s ease-in-out infinite;
}

@keyframes pro-banner-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(157, 78, 221, 0.3); }
  50% { box-shadow: 0 0 35px rgba(157, 78, 221, 0.5); }
}

.pro-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pro-banner-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.pro-banner-text strong {
  color: var(--neon-gold);
  font-weight: 700;
}

.pro-banner-btn {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-gold) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.pro-banner-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.7);
}

/* Bonus Page */
.bonus-list {
  padding: 1rem;
}

.bonus-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
}

.bonus-logo {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
}

.bonus-info {
  flex: 1;
}

.bonus-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

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

.bonus-badge {
  display: inline-block;
  background: rgba(6, 255, 165, 0.2);
  color: var(--neon-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.bonus-btn {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.bonus-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

/* Subscription Page */
.subscription-container {
  padding: 1.5rem;
}

.price-card {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(0, 217, 165, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid var(--border-gold);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neon-gold);
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
  line-height: 1;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.comparison-table {
  margin-bottom: 2rem;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table th {
  background: var(--bg-secondary);
  color: var(--neon-gold);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border-gold);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(6, 255, 165, 0.1);
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.pro-feature {
  color: var(--neon-gold) !important;
  font-weight: 700;
}

.pro-info {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-gold);
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pro-info.ai-powered {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--neon-gold);
  padding: 2rem;
}

.pro-info.ai-powered h3 {
  color: var(--neon-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
}

.pro-info.ai-powered ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.pro-info.ai-powered li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.pro-info.ai-powered strong {
  color: var(--neon-gold);
}

.ai-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 0, 110, 0.1);
  border-left: 4px solid var(--neon-red);
  border-radius: 8px;
  color: var(--text-primary);
}

.pro-info strong {
  color: var(--neon-cyan);
}

/* AI Hero Section */
.ai-hero-section {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
  border-radius: 20px;
  border: 2px solid var(--neon-gold);
  box-shadow: var(--shadow-gold);
}

.ai-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: ai-pulse 2s ease-in-out infinite;
}

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

.ai-title {
  font-size: 1.8rem;
  color: var(--neon-gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
  font-weight: 900;
}

.ai-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* AI Features Grid */
.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ai-feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.ai-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--neon-gold);
}

.ai-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.ai-feature-card h3 {
  color: var(--neon-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ai-feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Site Images */
.site-logo {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-gold);
  overflow: hidden;
  position: relative;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.site-logo-fallback {
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.site-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-gold);
  margin: 0.5rem 0;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-gold) 100%);
  color: var(--bg-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.8);
  animation: featured-pulse 2s ease-in-out infinite;
}

@keyframes featured-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.site-card.featured {
  border-color: var(--neon-purple);
  border-width: 3px;
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.6), 0 0 50px rgba(6, 255, 165, 0.3);
  position: relative;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(6, 255, 165, 0.1) 50%, var(--bg-card) 100%);
  animation: featured-glow 3s ease-in-out infinite;
}

@keyframes featured-glow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6), 0 0 50px rgba(6, 255, 165, 0.3);
    border-color: var(--neon-purple);
  }
  50% { 
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.8), 0 0 60px rgba(6, 255, 165, 0.5);
    border-color: var(--neon-gold);
  }
}

.bonus-selo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 50%, var(--neon-purple) 100%);
  color: var(--bg-primary);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  animation: bonus-selo-pulse 2s ease-in-out infinite;
  z-index: 10;
  line-height: 1.2;
}

@keyframes bonus-selo-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
  50% { 
    transform: scale(1.03); 
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
  }
}

/* Bonus Page Images */
.bonus-logo {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
  overflow: hidden;
  position: relative;
}

.bonus-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.bonus-logo-fallback {
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bonus-item.featured-bonus {
  border: 2px solid var(--neon-purple);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(6, 255, 165, 0.1) 100%);
}

.bonus-badge.featured {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-gold) 100%);
  color: var(--bg-primary);
  margin-right: 0.5rem;
}

.recommendation-logo {
  width: 100px;
  height: 100px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--neon-gold);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  position: relative;
}

.recommendation-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.btn-subscribe {
  width: 100%;
  font-size: 1.2rem;
  padding: 1.5rem;
}

/* Profile Page */
.profile-container {
  padding: 1.5rem;
}

.profile-card {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.1);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--border-gold);
}

.profile-card h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.profile-actions {
  display: flex;
  flex-direction: column;
}

/* Admin Page */
.admin-container {
  padding: 1.5rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.admin-recent {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-recent h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.activities-list {
  max-height: 400px;
  overflow-y: auto;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(6, 255, 165, 0.2);
  transition: background 0.3s ease;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item:hover {
  background: rgba(6, 255, 165, 0.05);
}

.activity-icon {
  font-size: 1.5rem;
}

.activity-info {
  flex: 1;
}

.activity-type {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.activity-details {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.activity-time {
  font-size: 0.75rem;
  color: var(--neon-cyan);
}

.no-activities {
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem;
}

.admin-loading {
  text-align: center;
  padding: 3rem;
  color: var(--neon-gold);
  font-size: 1.2rem;
}

.admin-error {
  text-align: center;
  padding: 3rem 1rem;
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.admin-error h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.admin-error p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-gold);
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.nav-item {
  background: none;
  border: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

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

.nav-item.active .nav-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(6, 255, 165, 0.6));
  stroke-width: 2.5;
}

.nav-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Rotating Raspadinhas Text */
.rotating-raspadinhas {
  display: inline-block;
  height: 1.5em;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  min-width: 200px;
}

.raspadinha-text {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  color: var(--neon-gold);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
  animation: rotate-text 8s infinite;
  opacity: 0;
  transform: translateY(100%);
  white-space: nowrap;
}

.raspadinha-text:nth-child(1) {
  animation-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.raspadinha-text:nth-child(2) {
  animation-delay: 2s;
}

.raspadinha-text:nth-child(3) {
  animation-delay: 4s;
}

.raspadinha-text:nth-child(4) {
  animation-delay: 6s;
}

@keyframes rotate-text {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  25% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Analysis Complete */
.analysis-complete {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInScale 0.5s ease-out;
}

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

.complete-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--bg-primary);
  font-weight: 900;
  box-shadow: 0 0 30px rgba(6, 255, 165, 0.6);
  animation: complete-pulse 2s ease-in-out infinite;
}

@keyframes complete-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(6, 255, 165, 0.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(6, 255, 165, 0.8); }
}

.complete-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
}

.complete-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Recommendation Page */
.back-btn {
  background: transparent;
  border: 2px solid var(--border-gold);
  color: var(--neon-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(6, 255, 165, 0.1);
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.3);
}

.recommendation-container {
  padding: 1.5rem;
}

.recommendation-card {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--neon-gold);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-gold);
  animation: slideInUp 0.5s ease-out;
}

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

.recommendation-header {
  text-align: center;
  margin-bottom: 2rem;
}

.recommendation-logo {
  width: 100px;
  height: 100px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--neon-gold);
  box-shadow: var(--shadow-gold);
}

.recommendation-title {
  font-size: 1.8rem;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
}

.recommendation-info {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gold);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 255, 165, 0.1);
}

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

.info-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

.info-value {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.deposit-amount {
  font-size: 2.5rem !important;
  color: var(--neon-gold) !important;
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.6) !important;
}

.recommendation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Slots Page */
.slots-container {
  padding: 1.5rem;
}

.slots-warning {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-purple);
}

.warning-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: lock-pulse 2s ease-in-out infinite;
}

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

.slots-warning h3 {
  font-size: 1.8rem;
  color: var(--neon-purple);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.slots-warning p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.slot-card {
  background: var(--bg-card);
  border: 2px solid var(--neon-purple);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-card:hover::before {
  opacity: 1;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-purple);
}

.slot-card.hot {
  border-color: var(--neon-gold);
  box-shadow: var(--shadow-gold);
  animation: slot-hot-pulse 2s ease-in-out infinite;
}

@keyframes slot-hot-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 255, 165, 0.5); }
  50% { box-shadow: 0 0 40px rgba(6, 255, 165, 0.8); }
}

.slot-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slot-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.slot-signal {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

.slot-time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.time-icon {
  font-size: 1rem;
}

/* Slots Info Header */
.slots-info-header {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.slots-info-content h3 {
  color: var(--neon-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.slots-info-content p {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.slots-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Slot Card Enhancements */
.slot-probability {
  margin: 1rem 0;
  padding: 0.75rem;
  background: rgba(6, 255, 165, 0.1);
  border-radius: 10px;
  border: 1px solid var(--neon-gold);
}

.probability-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.probability-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.6);
}

.slot-analysis {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.75rem 0;
  line-height: 1.4;
  font-style: italic;
}

.slot-multiplier {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  font-weight: 600;
  margin: 0.5rem 0;
}

.slot-play-btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-cyan) 100%);
  border: none;
  border-radius: 10px;
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
}

.warm-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.slot-card.warm {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

/* Slot Details Modal */
.slot-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.slot-details-content {
  background: var(--bg-card);
  border: 2px solid var(--neon-gold);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
}

.slot-details-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-gold);
}

.slot-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.slot-details-header h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.slot-probability-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.probability-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.8);
}

.slot-details-body {
  margin-bottom: 2rem;
}

.detail-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(6, 255, 165, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--neon-gold);
}

.detail-item strong {
  display: block;
  color: var(--neon-gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.detail-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.signal-text.hot {
  color: var(--neon-gold);
  font-weight: 700;
}

.signal-text.warm {
  color: var(--neon-cyan);
  font-weight: 600;
}

.signal-text.normal {
  color: var(--text-secondary);
}

.slot-play-btn-modal {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Login Screen (Fullscreen) */
.login-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem 1.5rem;
}

.login-screen-content {
  width: 100%;
  max-width: 450px;
}

.login-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.login-logo-text {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
  margin-bottom: 0.5rem;
}

.login-logo-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  letter-spacing: 0.2rem;
}

/* Login Page */
.login-container {
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.login-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-gold);
}

.login-tab {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.login-tab.active {
  color: var(--neon-gold);
  border-bottom-color: var(--neon-gold);
}

.login-form-container {
  display: none;
}

.login-form-container.active {
  display: block;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.form-group input:focus {
  outline: none;
  border-color: var(--neon-gold);
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.3);
}

.login-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Install Suggestion (Suave) */
.install-suggestion {
  margin: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border: 2px solid var(--border-gold);
  border-radius: 15px;
  padding: 1rem;
  animation: slideDown 0.5s ease;
}

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

.install-suggestion-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.install-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.install-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.install-text strong {
  color: var(--neon-gold);
}

.install-suggestion-btn {
  padding: 0.5rem 1rem;
  background: var(--neon-gold);
  border: none;
  border-radius: 8px;
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.install-suggestion-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.5);
}

.install-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: rgba(255, 0, 0, 0.2);
  border: none;
  color: var(--text-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.install-close:hover {
  background: rgba(255, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Profile Page */
.profile-header {
  text-align: center;
  padding: 2rem 1.5rem;
  border-bottom: 2px solid var(--border-gold);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin: 0 auto 1rem;
  box-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
}

.profile-header h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.profile-email {
  color: var(--text-secondary);
  font-size: 1rem;
}

.profile-info {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-gold);
}

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

.profile-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.profile-empty h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-empty p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Enhanced Colors */
.btn-primary {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-glow) 50%, var(--neon-cyan) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.site-card.hot {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.15) 0%, rgba(0, 217, 165, 0.1) 50%, var(--bg-card) 100%);
}

/* Responsive */
@media (min-width: 768px) {
  .sites-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .modal-content {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .sites-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

