@font-face {
  font-family: "Anisette";
  src: url("fonts/Anisette Bold Regular.ttf") format("truetype");
}
body {
  margin: 0;
  font-family: "Anisette", sans-serif;
  background: #000000;
  color: white;
  text-align: center;
}
h1, h2 {
  color: #ff4fc3;
}
a {
  color: white;
  text-decoration: none;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(#111111, #000000);
}
.btn-entradas {
  background: #ff4fc3;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-entradas:hover {
  background: #fff;
  color: #ff4fc3;
}
.logo-x {
  width: 180px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.promo img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 20px auto;
}
.carrusel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px auto;
}
.carrusel img {
  width: 100%;
  border: 3px solid #ff4fc3;
}
.artista img {
  width: 100%;
  max-width: 1280px;
  margin: 20px auto;
}
.grid-sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.grid-sponsors img {
  width: 100%;
  max-width: 180px;
  margin: auto;
}
footer {
  padding: 20px;
  border-top: 2px solid #ff4fc3;
}
.logo-footer {
  width: 100px;
  display: block;
  margin: auto;
}

/* Estilo para selección de texto */
::selection {
  background-color: #ff69b4; /* rosado */
  color: #ffffff; /* texto blanco */
}

/* Para compatibilidad con Firefox */
::-moz-selection {
  background-color: #ff69b4;
  color: #ffffff;
}