 
/* =========================
   BASE GAMENEST (FUNDO AAA)
========================= */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  overflow-x: hidden;
  
  
 /* background:
    radial-gradient(circle at 50% 30%, rgba(168,85,247,0.25), transparent 60%),
    radial-gradient(circle at 50% 70%, rgba(255,0,255,0.15), transparent 70%),
    linear-gradient(180deg, #140a2e 0%, #05010f 100%); */
 
   
    
background-image: 
  linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
  url('https://gamenest.com.br/checkout/imagens/bg.jpg');

background-repeat: repeat;



 
}




/* ESTRELAS ANIMADAS */
body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;

  background:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(2px 2px at 70% 60%, #fff, transparent),
    radial-gradient(1px 1px at 40% 80%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, #fff, transparent),
    radial-gradient(2px 2px at 60% 40%, #fff, transparent);

  opacity: 0.35;
  animation: starsMove 60s linear infinite;
  z-index: -3;
}

/* GLOW CENTRAL */
body::after {
  content: "";
  position: fixed;
  width: 900px;
  height: 900px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 70%);
  filter: blur(90px);
  z-index: -2;
}

@keyframes starsMove {
  from { transform: translateY(0); }
  to { transform: translateY(200px); }
}

/* =========================
   WAVES (EFEITO FUNDO)
========================= */
.light-wave {
  position: fixed;
  width: 120%;
  height: 350px;
  left: -10%;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(circle at 50% 80%, rgba(168,85,247,0.35), transparent 60%),
    radial-gradient(circle at 30% 100%, rgba(255,0,255,0.25), transparent 70%),
    radial-gradient(circle at 70% 100%, rgba(0,255,255,0.15), transparent 70%);

  filter: blur(60px);
  animation: waveMove 8s ease-in-out infinite alternate;
}

.wave1 {
  bottom: 0%;
}

.wave2 {
  bottom: 15%;
  opacity: 0.5;
  animation-duration: 12s;
}

@keyframes waveMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

/* =========================
   TIPOGRAFIA
========================= */
h1 {
  font-size: 42px;
  background: linear-gradient(90deg, #00ffe1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  font-size: 24px;
  margin: 20px 0;
  color: #fff;
}

.highlight-strong {
  font-size: 52px;
  color: #ffd700;
  text-shadow: 0 0 25px #ffd700;
}

/* =========================
   CTA (BOTÃO INSANO)
========================= */
.cta {
  display: inline-block;
  padding: 18px 42px;
  font-size: 18px;
  color: #000;
  background: linear-gradient(90deg, #7c3aed, #00ffe1);
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(168,85,247,0.6);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cta::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 3s infinite;
}

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

.cta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(168,85,247,0.9);
}

/* =========================
   HERO VISUAL (CARDS)
========================= */
.hero-visual {
  position: relative;
  margin-top: 60px;
  height: 440px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(168,85,247,0.4), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

/* IMAGENS */
.char {
  position: absolute;
  transition: 0.4s;
  filter: drop-shadow(0 0 30px rgba(168,85,247,0.7));
}

/* ESQUERDA */
.char.left {
  left: 5%;
  width: 260px;
  transform: rotate(-10deg) scale(0.95);
  opacity: 0.85;
}

/* CENTRO */
.char.center {
  left: 50%;
  transform: translateX(-50%) scale(1.05);
  width: 300px;
  z-index: 2;
}

/* DIREITA */
.char.right {
  right: 5%;
  width: 260px;
  transform: rotate(10deg) scale(0.95);
  opacity: 0.85;
}

/* HOVER DINÂMICO */
.hero-visual:hover .left {
  transform: rotate(-14deg) scale(1.05);
}

.hero-visual:hover .right {
  transform: rotate(14deg) scale(1.05);
}

.hero-visual:hover .center {
  transform: translateX(-50%) scale(1.12);
}

/* =========================
   CONTADOR
========================= */
.counter {
  font-size: 20px;
  margin-top: 25px;
  color: #00ffe1;
}

/* =========================
   SEÇÕES
========================= */
.section {
  margin-top: 80px;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARDS */
.box {
  position: relative;
  background: rgba(20, 10, 50, 0.6);
  padding: 22px;
  border-radius: 18px;
  margin: 12px;
  width: 260px;
   
  border: 1px solid rgba(168,85,247,0.2);
  backdrop-filter: blur(12px);

  transition: all 0.3s ease;
  overflow: hidden;
  color: #fff;
}

/* glow interno */
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(168,85,247,0.25), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}

/* borda neon animada */
.box::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, #7c3aed, #00ffe1, #7c3aed);
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: 0.3s;
}

/* hover absurdo */
.box:hover {
  transform: translateY(-10px) scale(1.03);
  border: 1px solid rgba(168,85,247,0.6);
  box-shadow: 0 0 35px rgba(168,85,247,0.4);
 color: #050505;
  text-shadow: 0 0 8px rgba(255,255,255,0.2);
  
}

/* ativa glow */
.box:hover::before {
  opacity: 1;
}

/* ativa borda neon */
.box:hover::after {
  opacity: 1;
}

/* =========================
   MOBILE (PERFEITO)
========================= */
@media (max-width: 768px) {

  h1 {
    font-size: 28px;
  }

  .sub {
    font-size: 16px;
  }

  .highlight-strong {
    font-size: 36px;
  }

  .hero-visual {
    height: 280px;
  }

  .char.left,
  .char.right {
    width: 120px;
    opacity: 0.5;
  }

  .char.center {
    width: 170px;
  }

  .cta {
    width: 90%;
    padding: 16px;
  }

}

.tab-content {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  display: none;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.box.active {
  background: linear-gradient(135deg, #7c3aed, #00ffe1);
  color: #050505;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(168,85,247,0.6);
}
/* domínio */
.domain {
  margin-top: 12px;
  font-size: 18px;
  color: #fff;
}

.domain span {
  color: #00ffe1;
}
 

.app-text {
  font-size: 18px;
  color: #fff;
  max-width: 250px;
}

.qr {
  width: 110px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(168,85,247,0.4);
  transition: 0.3s;
}

.qr:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .qr {
    display: none;
  }

  .app-btn {
    margin-left: 0 !important;
    margin-top: 10px;
    display: block;
  }
}
.domain a {
  color: #00ffe1;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.domain a:hover {
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7;
}

.qr-box {
  display: inline-block;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 
  0 0 15px rgba(168,85,247,0.35),
  0 0 25px rgba(0,255,255,0.15);	
  margin-top: 10px; 
}

 

.qr-box img {
  width: 140px;
  border-radius: 10px;
}
/* QR aparece só no desktop */
@media (max-width: 768px) {
  .qr-box {
    display: none;
  }
}

.app-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

 


@media (max-width: 768px) {
  .app-box {
    flex-direction: column;
    text-align: center;
  }
}


.app-box-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.app-col {
  text-align: center;
  max-width: 220px;
}

@media (max-width: 768px) {
  .app-box-grid {
    flex-direction: column;
    gap: 25px;
  }
}