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

[v-cloak] {
  display: none !important;
}

body {
  font-family: 'Satoshi', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  background: #0A040F;
  overflow-x: hidden;
  color: #EDE8FF;
}

:root {
  --brand-primary: #5B30FF;
  --brand-secondary: #1AE2E0;
  --brand-dark: #0A040F;
  --brand-surface: #11131A;
  --brand-accent: #7D5CFF;
  --brand-text: #EDE8FF;
  --brand-glow: rgba(91, 48, 255, 0.5);
  --brand-glow-cyan: rgba(26, 226, 224, 0.4);
}

@media (max-width: 1024px) {
  body {
    cursor: auto;
  }

  /* Volta ao normal no mobile */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.hero-bg-gold {
  background:
    radial-gradient(circle at top, rgba(91, 48, 255, 0.1), transparent 45%),
    radial-gradient(circle at bottom, rgba(26, 226, 224, 0.05), transparent 40%),
    linear-gradient(180deg, #0A040F 0%, #11131A 45%, #0A040F 100%);
}

.glass {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: all 0.3s ease;
}

.glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.neon-text-gold {
  text-shadow:
    0 0 10px rgba(91, 48, 255, .5),
    0 0 25px rgba(26, 226, 224, .2);
}

.glow-button {
  box-shadow:
    0 0 20px rgba(91, 48, 255, .2),
    0 0 45px rgba(26, 226, 224, .1);
}

.gradient-border {
  position: relative;
  overflow: hidden;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #333, #666, #333);
  z-index: -1;
  border-radius: inherit;
  opacity: .8;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

.pulse-border {
  animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.blur-ball {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  /* Filtro de blur reduzido para performance mobile */
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -100%;
  width: 60%;
  height: 350%;
  background: rgba(255, 255, 255, .15);
  transform: rotate(25deg);
  animation: shine 5s infinite;
}

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

  100% {
    left: 180%;
  }
}

/* --- V7: SCARCITY BAR --- */
.scarcity-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, #5B30FF, #1AE2E0);
  box-shadow: 0 0 15px rgba(91, 48, 255, 0.4);
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- V7: RECOVERY COUPON POPUP --- */
.coupon-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  max-width: 320px;
}

@media (max-width: 768px) {
  .coupon-popup {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

.video-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.video-progress-filled {
  height: 100%;
  background: linear-gradient(90deg, #5B30FF, #1AE2E0);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s linear;
}

.video-thumb {
  width: 14px;
  height: 14px;
  background: #1AE2E0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(26, 226, 224, 0.8);
}

/* Action Loader */
.action-loader-overlay {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
}

.play-button-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.play-button-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* --- V10: SURREAL NOTIFICATIONS (Holographic & Physics) --- */
.holographic-card {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.holographic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.05) 70%,
      transparent 100%);
  background-size: 200% 200%;
  animation: holoShift 3s linear infinite;
  pointer-events: none;
}

@keyframes holoShift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 200%;
  }
}

/* Física de Colisão (Smooth Move) */
.list-move {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.list-enter-active {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.list-leave-active {
  transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  position: absolute;
  /* Necessário para o smooth move funcionar */
  width: 100%;
  max-width: 290px;
}

.list-enter-from {
  opacity: 0;
  transform: translateY(-30px) scale(0.8) rotateX(45deg);
}

.list-leave-to {
  opacity: 0;
  transform: scale(0.5) translateY(50px);
  filter: blur(10px);
}

/* --- V10.1: QUIZ TRANSITION (Stable Out-In) --- */
.quiz-fade-enter-active,
.quiz-fade-leave-active {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-fade-enter-from {
  opacity: 0;
  transform: translateX(30px);
}

.quiz-fade-leave-to {
  opacity: 0;
  transform: translateX(-30px);
}

/* --- V11.7: WIDTH LOCKDOWN --- */
#quiz-section,
#quiz-section>*,
.quiz-fade-enter-active,
.quiz-fade-leave-active {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

#checkout-box>div {
  width: 100% !important;
}

/* --- V11: GOD MODE DESIGN (Cleaned Up) --- */
.premium-border {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0.05) 55%,
      transparent 100%);
  background-size: 200% 100%;
  animation: borderSlide 6s linear infinite;
  /* Mais lento e elegante */
  border-radius: inherit;
  pointer-events: none;
}

@keyframes borderSlide {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Clique Fantasma (Suave) */
.cursor-clicking {
  transform: scale(0.85) !important;
}

.cursor-clicking::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: clickRipple 0.4s ease-out;
}

@keyframes clickRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.ghost-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
  transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.7;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 300px);
  }
}

.bento-item {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  background: #111;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.bento-item img,
.bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

/* --- V8.1: REJECTION MODAL --- */
.rejection-overlay {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
}

.rejection-content {
  border: 2px solid #ef4444;
  box-shadow: 0 0 50px rgba(239, 68, 68, 0.3);
}

.rejection-icon {
  background: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.shake-once {
  animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Bento Span Helpers */
.col-span-2 {
  grid-column: span 2;
}

.row-span-2 {
  grid-row: span 2;
}

/* Utils */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* --- V15.1: THE SINGULARITY CURSOR (Stable) --- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 0 15px #fff;
  mix-blend-mode: difference;
  /* INVERSÃO NO PONTO TAMBÉM */
  transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cursor-follower {
  width: 35px;
  height: 35px;
  background-color: #fff !important;
  /* BRANCO PURO PARA INVERSÃO MÁXIMA */
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 99999999 !important;
  /* Z-INDEX SUPREMO */
  pointer-events: none;
  mix-blend-mode: difference !important;
  /* FORÇA INVERSÃO EM TUDO */
  transition: width 0.3s, height 0.3s, border-radius 0.3s, transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse Animation */
@keyframes pulseScreen {
  0% {
    transform: scale(0);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  100% {
    transform: scale(150);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

/* Particle Trail */
.cursor-trail {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  animation: trailFade 0.6s ease-out forwards;
}

@keyframes trailFade {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* Elasticity Classes (Injected via JS) */
.cursor-fast .cursor-dot {
  transform: scaleX(2.5) scaleY(0.5);
}

.cursor-fast .cursor-follower {
  transform: scaleX(1.3) scaleY(0.8);
}

.cursor-active .cursor-follower {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* --- V13.1: CLICK & INTERACTION EFFECTS --- */
.cursor-clicked .cursor-dot {
  transform: scale(3);
  background-color: white !important;
}

.cursor-clicked .cursor-follower {
  transform: scale(0.8);
  border-color: white !important;
}

/* Ripple on Click */
.cursor-double-clicked::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  animation: cursorRipple 0.5s ease-out forwards;
  z-index: 999997;
}

@keyframes cursorRipple {
  0% {
    opacity: 1;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Magnetic Elements Stability */
.magnetic {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Hover Glow for Cards */
.bento-item:hover,
.glass:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1) !important;
}

.cursor-results .cursor-follower {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  width: 100px;
  height: 100px;
}

/* Interação de Cores nos Elementos (Magnetic Glow) */
button:hover,
a:hover,
.quiz-option:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cursor-gold button:hover,
.cursor-gold a:hover {
  box-shadow: 0 0 40px rgba(234, 179, 8, 0.4) !important;
  border-color: rgba(234, 179, 8, 0.5) !important;
}

/* --- NEW TECH: MULTIPLAYER CURSORS --- */
.ghost-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
  transition: all 4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.6;
  display: none;
}

@media (min-width: 1024px) {
  .ghost-cursor {
    display: block;
  }
}

.cursor-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  color: #fff;
}

.cursor-label {
  position: absolute;
  left: 12px;
  top: -5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- NEW TECH: ACTIVITY TERMINAL --- */
/* --- HAPTIC FEEDBACK VISUAL --- */
.haptic-pulse {
  animation: hapticPulse 0.3s ease-out;
}

@keyframes hapticPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.98);
    filter: brightness(1.2);
  }

  100% {
    transform: scale(1);
  }
}