/* -------- Home page basic styles -------- */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

.home-body {
  margin: 0;
  padding: 0;
  font-family: 'Special Elite', 'Courier New', Courier, monospace;
  background: #ffffff;
  color: #000000;
}

.home-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.home-card {
  background: #ffffff;
  border-radius: 0;
  border: 3px solid #000000;
  box-shadow: 8px 8px 0 #000000;
  max-width: 700px;
  width: 100%;
  padding: 2rem 2.5rem;
}

.home-logo-container {
  text-align: center;
  margin-bottom: 1rem;
}

.home-logo {
  max-width: 160px;
}

.home-title {
  text-align: center;
  margin: 0;
  font-size: 2rem;
}

.home-subtitle {
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #444444;
  font-style: italic;
}

.home-text p {
  margin: 0.4rem 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem 0;
}

/* Style générique des boutons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: 'Special Elite', 'Courier New', Courier, monospace;
}

.home-text {
  color: #000000;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 #444444;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 #000000;
}

.home-links {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.home-link {
  display: block;
  color: #000000;
  text-decoration: underline;
  margin: 0.3rem 0;
}

.home-link-disabled {
  opacity: 0.6;
  cursor: default;
}

/* --- Beta Warning Banner --- */
.beta-banner {
  width: 100%;
  background: #f8c146; /* orange doux */
  color: #3a2a00;
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid #d9a32d;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Décale le contenu pour éviter qu’il soit caché sous le bandeau */
.home-wrapper {
  margin-top: 60px; /* ajuste si nécessaire */
}
