:root {
  --bg:#0b1020;
  --card:#0f1724;
  --accent1:#ff5a7a;
  --accent2:#7b6cff;
  --muted:#98a0b3;
  --glass:rgba(255,255,255,0.04);
  --radius:14px;
  --container:1100px;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
}

/* Reset */
* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html, body { height:100%; }

body {
  background:
    linear-gradient(rgba(11,16,32,0.85), rgba(11,16,32,0.85)),
    radial-gradient(1200px 600px at 10% 10%, rgba(123,108,255,0.08), transparent),
    radial-gradient(1000px 400px at 90% 90%, rgba(255,90,122,0.05), transparent),
    url('https://luckgames.club/wp-content/uploads/2025/10/ChatGPT-Image-12-de-out.-de-2025-13_25_02.png')
    center center / cover no-repeat fixed;
  color:#e6eef8;
  line-height:1.45;
  font-size:16px;
}

/* Layout geral */
.container {
  max-width:var(--container);
  margin:0 auto;
  padding:1rem;
}

/* HEADER */
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,16,32,0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.logo {
  height:42px;
  width:auto;
}

.brand {
  font-weight:700;
  font-size:1rem;
  color:#6eb7f3;
  white-space:nowrap;
}

/* Ajuste do botão Login */
header .cta {
  background: linear-gradient(90deg, #0d09f1, #5449f5);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(112, 208, 253, 0.445);
}

header .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(77, 249, 255, 0.6);
}

/* Centralizar verticalmente na header */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* HERO */
.hero { padding:3.5rem 0; }
.hero-grid {
  display:grid;
  grid-template-columns:1fr 350px;
  gap:1rem;
  align-items:center;
}
.eyebrow {
  display:inline-block;
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  padding:0.2rem 0.6rem;
  border-radius:999px;
  font-weight:700;
  color:white;
  font-size:0.75rem;
  margin-bottom:0.75rem;
}
h1 {
  font-size:2.2rem;
  letter-spacing:-0.02em;
  margin-bottom:0.6rem;
}
.lead {
  color:var(--muted);
  margin-bottom:1rem;
}

/* Botões principais */
.button.gradient {
  display:inline-block;
  text-decoration:none;
  padding:0.7rem 1.4rem;
  border-radius:12px;
  font-weight:700;
  font-size:1rem;
  color:#fff;
  background:linear-gradient(90deg, #ff5a7a 0%, #7b6cff 100%);
  box-shadow:0 4px 12px rgba(123,108,255,0.4);
  transition:all 0.2s ease;
}
.button.gradient:hover {
  transform:translateY(-3px);
  box-shadow:0 6px 16px rgba(123,108,255,0.6);
}

/* Hero vídeo */
.device-mock video {
  width:100%;
  height:auto;
  border-radius:12px;
}

/* Como jogar */
.how-to { padding:2.4rem 1rem; }
.steps {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:1rem;
  margin-top:1rem;
}
.step {
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:1rem;
  border-radius:12px;
}

/* CTA inferior */
.cta-strip { padding:2rem 0; }
.cta-strip .container {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.cta-strip h3 { margin:0; }

/* Footer */
.site-footer {
  padding:1.4rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
  color:var(--muted);
}
.footer-grid {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.footer-links a {
  color:var(--muted);
  margin-left:10px;
  font-size:1rem;
  transition:color 0.3s;
}
.footer-links a:hover {
  color:white;
}

/* RESPONSIVO */
@media (max-width:960px) {
  .hero-grid { grid-template-columns:1fr; text-align:center; }
  .brand { font-size:1rem; }
  .cta { font-size:0.9rem; }
  .logo { height:36px; }
  .hero-text { text-align:center; }
  .cta-strip .container { flex-direction:column; }
}


  .star {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #ffd700 40%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: fadeOut 0.8s linear forwards;
    z-index: 9999;
  }

  @keyframes fadeOut {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(0);
      opacity: 0;
    }
  }
.promo-code {
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff5a7a 0%, #7b6cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 90, 122, 0.6), 0 0 20px rgba(123, 108, 255, 0.6);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bonus-title {
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ff5a7a, #7b6cff, #ff5a7a);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
  text-align: center;
  font-weight: 600;
}

@keyframes gradientShift {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

.promo-text {
  text-align: center;
  margin-top: 8px;
  font-size: 1.1rem;
}

.promo-code {
  font-weight: bold;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ff5a7a, #7b6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(123, 108, 255, 0.6);
  letter-spacing: 1px;
}

.button.large.pulse {
  display: inline-block;
  margin: 20px auto 0;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px #7b6cff, 0 0 40px #ff5a7a; }
  50% { box-shadow: 0 0 40px #ff5a7a, 0 0 80px #7b6cff; }
}

/* ==== Popup ==== */
.bonus-popup {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(11,16,32,0.95);
  border: -2px solid rgba(123,108,255,0.4);
  border-radius: 14px;
  padding: 10px 10px;
  box-shadow: 0 0 25px rgba(123,108,255,0.5);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  z-index: 9999;
}

.bonus-popup.visible {
  opacity: 1;
  transform: translateY(0);
}

.popup-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.popup-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, #ff5a7a, #7b6cff);
  padding: 8px 18px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.popup-btn:hover {
  transform: scale(1.05);
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeSlideUp 1.2s ease forwards;
}

/* ==== Efeito de brilho neon intermitente nos botões ==== */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(123,108,255,0.6),
                0 0 20px rgba(255,90,122,0.5),
                0 0 40px rgba(123,108,255,0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(123,108,255,0.9),
                0 0 40px rgba(255,90,122,0.8),
                0 0 60px rgba(123,108,255,0.6);
  }
}

/* Aplicando o brilho pulsante aos botões principais */
.button.gradient {
  animation: neonPulse 2.5s infinite alternate;
  transition: all 0.3s ease;
}

/* Efeito adicional no hover */
.button.gradient:hover {
  transform: translateY(-3px) scale(1.05);
  animation-duration: 1.2s;
}
#stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
  pointer-events: none;
}
.cta-strip {
  text-align: center;
  margin-top: 40px;
}

.cta-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Alinhamento lado a lado no desktop */
.bonus-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.bonus-message {
  color: #ffffff;
  font-weight: 600;
}

.bonus-code {
  color: #f8f8f8;
  font-weight: 700;
}

/* ======= CTA BONUS SECTION (NOVO BLOCO) ======= */

/* Botão com gradiente igual ao tema */
.button.gradient.large {
  background: linear-gradient(90deg, #ff5a7a 0%, #7b6cff 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(123,108,255,0.5);
  transition: all 0.3s ease;
}

.button.gradient.large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,90,122,0.8);
}
/* ======= Animação RGB para o Código Promocional ======= */
.promo-code strong {
  background: linear-gradient(90deg, #ff5a7a, #7b6cff, #ff5a7a);
  background-size: 300%;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rgbShift 4s ease infinite;
  text-shadow: 0 0 15px rgba(255, 90, 122, 0.5), 0 0 25px rgba(123, 108, 255, 0.5);
}

@keyframes rgbShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ======= Animação RGB para o código promocional (corrigido) ======= */
.promo-code strong,
.bonus-code strong {
  /* degradê animado */
background: linear-gradient(
  90deg,
  #b88900 0%,
  #ffd700 25%,
  #fff4b1 50%,
  #ffd700 75%,
  #b88900 100%
);
background-clip: text; /* se quiser usar em texto */
-webkit-background-clip: text;
color: transparent;

  /* glow */
  text-shadow: 0 0 10px rgba(255,90,122,0.45), 0 0 18px rgba(123,108,255,0.35);

  /* animação */
  animation: rgbShift 4s linear infinite;
  display: inline-block; /* necessário para alguns navegadores aplicarem o clip/anim */
}

/* fallback se alguma regra anterior estiver forçando cor sólida:
   use somente se realmente necessário (tente sem !important antes) */
.promo-code strong,
.bonus-code strong {
  /* se o texto continuar aparecendo sólido, descomente a linha abaixo */
  /* color: transparent !important; */
}

@keyframes rgbShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.button.gradient.no-shadow {
  box-shadow: none !important;
  animation: none !important;
}

.button.gradient.no-shadow:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* Popup */
.bonus-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.bonus-popup.hidden {
  display: none;
}

.popup-content {
  background: #1c0033;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Botões sociais */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-links .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}