/* === RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

html {
  background: #000;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;
  background-color: #000;
  background-image: url("imagenes/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Desktop background */
@media (min-width: 1024px) {
  body {
    background-image: url("imagenes/desktop-bg.png");
  }
}

/* === CONTENEDOR PRINCIPAL === */
.gn-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.65);
}

/* === WRAP === */
.gn-wrap {
  position: relative;
  display: inline-block;
  width: min(92vw, 520px);
  margin-inline: auto;
}

/* === CARD PRINCIPAL (gris oscuro elegante) === */
.gn-card {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 28px;
  padding: 70px 24px 28px;
  text-align: center;
  background: linear-gradient(160deg, #1a1a1a, #111);
  border: 1.5px solid #2b2b2b;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* === LOGO DE ASES (sobresaliente) === */
.gn-logo {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 180px;
  max-width: 60%;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.65));
  pointer-events: none;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 480px) {
  .gn-logo {
    top: -50%;
    width: 150px;
  }
}

/* === TÍTULOS Y TEXTOS === */
h4 {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

p {
  text-align: center;
  color: #ccc;
  line-height: 1.5;
}

/* === BOTONERA === */
.gn-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 220px;
  margin: 20px auto;
}

/* === BOTONES BASE === */
.gn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.25s ease, filter 0.15s ease;
}

.gn-btn:active {
  transform: scale(0.985);
}

.gn-btn img {
  width: 20px;
  height: 20px;
}

/* === VERDE (WhatsApp) === */
.gn-btn-solid {
  color: #000;
  background: linear-gradient(135deg, #22ff8f, #14dc6d);
  box-shadow: 0 0 16px rgba(32, 224, 124, 0.45);
}

.gn-btn-solid:hover {
  filter: saturate(1.05);
  box-shadow: 0 0 22px rgba(32, 224, 124, 0.6);
}

/* === NEGRO (JUGAR AHORA) === */
.gn-btn-outline {
  color: #fff;
  background: linear-gradient(160deg, #000, #1a1a1a);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
  border: 1.5px solid #333;
}

.gn-btn-outline:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

/* === CELESTE (Telegram) === */
.gn-btn-telegram {
  color: #fff;
  background: linear-gradient(135deg, #37aee2, #1e96c8);
  box-shadow: 0 0 16px rgba(80, 190, 255, 0.45);
}

.gn-btn-telegram:hover {
  filter: saturate(1.08);
  box-shadow: 0 0 22px rgba(80, 190, 255, 0.7);
}

/* === ICONOS === */
.wa-ic {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* === ANIMACIONES === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* === ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
  .gn-btn {
    transition: none;
  }
  .gn-logo {
    animation: none;
  }
}
