/* =========================
   FUENTE
========================= */
@font-face {
  font-family: "Branding";
  src: url("../fonts/branding-bold.ttf");
}

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

/* =========================
   BASE
========================= */
body {
  font-family: "Branding", sans-serif;
  background: #1c1c1c;
  color: #ffffff;
}

/* =========================
   HEADER PRINCIPAL
========================= */
.main-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Logo general */
.logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================
   MAIN
========================= */
main {
  padding: 20px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

/* =========================
   CONTENEDORES (CENTRADOS)
========================= */
.opciones,
.clubs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center; /* 👈 centrado */
}

/* =========================
   BOTONES
========================= */
button {
  width: 80%;
  max-width: 300px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #2a2a2a;
  color: white;
  font-family: "Branding";
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;

  text-align: center; /* 👈 centrado */
}

button:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

/* Botón volver */
.volver {
  margin-top: 20px;
  background: transparent;
  border: 1px solid #555;
}

/* =========================
   OCULTAR
========================= */
.hidden {
  display: none;
}

/* =========================
   IMÁGENES SEGURAS
========================= */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 600px) {
  .opciones,
  .clubs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; /* 👈 centrado también en desktop */
  }

  button {
    width: 200px;
  }
}