/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* ✅ ESTILO GENERAL + FONDO + CURSOR */
body {
  margin: 0;
  min-height: 100vh;

  background-image: url("wallpaper1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  cursor: url("cursorcosmo.png") 0 0, auto;

  color: black;
  font-family: Verdana;

  display: flex;
  justify-content: center;
  align-items: center;
}

.call-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

/* BOTÓN BASE */
.start-btn, .exit-btn {
  width: 120px;
  padding: 12px 0;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  color: #5a3b00;
  cursor: pointer;
  border: 3px solid #fff2b0;

  background: linear-gradient(
    135deg,
    #fff6a0,
    #ffd700,
    #ffb700,
    #fff6a0
  );

  box-shadow:
    0 5px 0 #9c7300,
    0 0 12px rgba(255, 215, 0, 0.9),
    inset 0 0 8px rgba(255,255,255,0.8);

  text-shadow:
    0 0 4px white,
    0 0 8px gold;

  position: relative;
  overflow: hidden;
  transition: all 0.15s ease;
}

/* EFECTO GLITTER */
.start-btn::after, .exit-btn::after {
  content: "";
  position: absolute;
  background-image: url("https://i.imgur.com/4AiXzf8.png"); /* textura glitter */
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* HOVER */
.start-btn:hover, .exit-btn:hover {
  transform: translateY(2px) scale(1.03);
  box-shadow:
    0 3px 0 #9c7300,
    0 0 20px rgba(255, 230, 120, 1);
}

/* CLICK */
.start-btn:active, .exit-btn:active {
  transform: translateY(4px);
  box-shadow:
    0 0 10px rgba(255, 200, 0, 1);
}

.call-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.start-btn, .exit-btn {
  width: 120px;
  padding: 12px 0;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  color: #5a3b00;
  cursor: pointer;
  border: 3px solid #fff2b0;

  background: linear-gradient(
    135deg,
    #fff6a0,
    #ffd700,
    #ffb700,
    #fff6a0
  );

  box-shadow:
    0 5px 0 #9c7300,
    0 0 12px rgba(255, 215, 0, 0.9),
    inset 0 0 8px rgba(255,255,255,0.8);

  text-shadow:
    0 0 4px white,
    0 0 8px gold;

  position: relative;
  overflow: hidden;
  transition: all 0.15s ease;
}

/* ✨ GLITTER */
.start-btn::after, .exit



/* ✅ BANNER (si lo usás después) */
.banner {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}




