* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.bangers-regular {
  font-family: "Bangers", system-ui;
  font-weight: 400;
  font-style: normal;
}


h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}
h1 {
  font-family: "Bangers";
  letter-spacing: 4px;
  font-size: 46px;
  text-transform: uppercase;
}
.header {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  width: 100px;
  filter: drop-shadow(0 0 8px #86df0098);
}

@media (max-width: 768px) {
  .logo {
    width: 80px;
  }
}


.bg-logo {
  position: fixed;
  inset: 0;
  background-image: url("images/logo.png"); /* ajuste o caminho */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.04; /* bem discreto */
  z-index: 0;
  pointer-events: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  position: relative;
}

.page {
  min-height: calc(100vh - 220px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =====================
   GLOW BACKGROUND (RED) — AJUSTADO
===================== */

body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;          /* 🔥 MAIOR */
  height: 600px;         /* 🔥 MAIOR */
  filter: blur(160px);   /* mais suave mesmo sendo grande */
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* Glow superior esquerdo */
body::before {
  top: 200px;
  left: -280px;
  background: radial-gradient(circle, #99ff00 0%, transparent 70%);
  animation: floatGlow1 14s ease-in-out infinite alternate;
}

/* Glow inferior direito (MAIS PRA BAIXO) */
body::after {
  bottom: -150px;   /* ⬇️ mais pra baixo */
  right: -280px;
  background: radial-gradient(circle, #64a700 0%, transparent 95%);
  animation: floatGlow2 16s ease-in-out infinite alternate;
}

/* Animações */
@keyframes floatGlow1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(160px, 120px);
  }
}

@keyframes floatGlow2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-140px, -100px);
  }
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1;
}


h1 {
  margin-bottom: 15px;
}

.wheel-wrapper {
  position: relative;
}

canvas {
  width: 100%;
  border-radius: 50%;
  border: 8px solid rgba(32, 32, 32, 0.8);
  box-shadow: 0 0 40px #4e7e068e;
}

.pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid #87df00;
  filter: drop-shadow(0 0 6px rgba(136, 255, 0, 0.404));
}

.saldo {
  margin: 15px 0;
  font-size: 18px;
}

input, button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
}

button {
  background: linear-gradient(135deg, #87df00, #467500);
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px #86df0098;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px #87df00;
}

input {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #467500;
  outline: none;
}

input:focus {
  border-color: #87df00;
  box-shadow: 0 0 8px #467500;
}

.whatsapp {
 display: inline-block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, #87df00, #467500);
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px #86df00af;
}
.whatsapp:hover {
   transform: scale(1.05);
   box-shadow: 0 0 22px #87df00;
}
/* =====================
   INPUT + BOTÃO AVIÃO
===================== */

.redeem-wrapper {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

/* sobrescreve o input global */
.redeem-wrapper input {
  padding-right: 52px;
  border-radius: 10px;
}

/* botão avião */
.redeem-wrapper button {
  position: absolute;
  right: 3px;
  top: 59%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  border-radius: 8px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ícone */
.redeem-wrapper .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}

/* hover mais suave */
.redeem-wrapper button:hover {
  transform: translateY(-50%) scale(1.08);
}
/* =====================
   AJUSTE MOBILE
===================== */
@media (max-width: 768px) {
.whatsapp{
  width: 80%;
}
input, button {
  width: 80%;
}
.redeem-wrapper button {
  right: 41px;
}
}


/* =====================
   POPUPS (SEU CÓDIGO ORIGINAL)
===================== */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  width: 90%;
  max-width: 360px;
  background: linear-gradient(145deg, #111, #050505);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  color: #fff;
  animation: popIn 0.3s ease-out;
}

.popup .close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}
.popup .close:hover {
  opacity: 1;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* =====================
   POPUP SUCESSO (CÓDIGO)
===================== */
.popup.sucesso {
  border: 2px solid #25D366;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.8);
}

.popup.sucesso h2 {
  color: #25D366;
}
/* =====================
   POPUP ERRO / AVISO
===================== */
.popup.erro {
  border: 2px solid #ff3b3b;
  box-shadow: 0 0 16px rgba(255, 59, 59, 0.8);
}

.popup.aviso {
  border: 2px solid #ffcc33;
  box-shadow: 0 0 16px rgba(255, 204, 51, 0.8);
}

.popup.erro h2 {
  color: #ff3b3b;
}

.popup.aviso h2 {
  color: #ffcc33;
}

.popup.buy {
  border: 2px solid #87df00;
  box-shadow: 0 0 20px #87df00;
}

.popup-logo {
  width: 90px;
  margin: 10px auto 15px;
  display: block;
  filter: drop-shadow(0 0 8px #61a002);
}

.popup button.whatsapp {
  margin-top: 10px;
}


/*.whatsapp {
  margin-top: 20px;
  text-align: center;
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: pre-line;
}
  .whatsapp:hover {
  color: red;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  font-size: 16px
}*/

/* =====================
   VIDEO REVEAL OVERLAY
===================== */
#videoOverlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: none;
}

#videoOverlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.footer {
  width: 100%;
  margin-top: 60px;
  padding: 25px 15px;
  background: rgba(0, 0, 0, 0.65);
  border-top: 1px solid rgba(115, 255, 0, 0.35);
  display: flex;
  justify-content: center;
}

.footer-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.footer-inner strong {
  color: #fff;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #87df00;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-whatsapp:hover {
  color: #87df00;
}
