@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
    background: 
        url('gracieabrams.jpg') repeat;
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-position: 0 0, 50px 50px, 100px 100px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;

/* Logo centrado */
.logo {
    max-width: 350px;
    margin: 20px;
    margin-left: 60px;
    margin-right: 60px;
    filter: drop-shadow(0 0 10px gold);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px pink); }
    to { filter: drop-shadow(0 0 20px pink); }
}
.game-container {
  text-align: center;
  max-width: 600px;
  margin-top 0px;
  background-color: transparent; /* Fondo transparente */
  padding: 30px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

h1 {
  color: #ff4081;
  font-size: 3em;
  margin-bottom: 20px;
}
.buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente dentro del contenedor */
  gap: 20px;
}

.button {
  display: block;
  text-decoration: none;
}

.button img {
  display: block;
  max-width: 250px;   /* tamaño fijo más controlado */
  height: auto;
  margin: 0 auto;     /* asegura que quede centrado */
  transition: transform .15s ease, filter .15s ease;
}

.button img:hover { 
  transform: scale(1.05); 
  filter: drop-shadow(0 0 15px white);
}

/* Hover personalizado para cada botón */
.rapid img {
  content: url("botonrapid.png");
}
.rapid img:hover {
  transform: scale(1.1);
}

.daily img {
  content: url("botondaily.png");
}
.daily img:hover {
  transform: scale(1.1);
}
.instagram img {
  content: url("botoninstagram.png");
}
.instagram img:hover {
  transform: scale(1.1);
}
.x img {
  content: url("botonx.png");
}
.x img:hover {
  transform: scale(1.1);
}
.social-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.social-buttons a {
  display: inline-block;
  width: 50px;
  height: 50px;
}

.social-buttons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: transform 0.2s ease;
}

/* Efecto hover opcional */
.social-buttons img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.hidden {
    display: none !important;
}



