body {
  border: 8px solid #ffffff;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #0a0604;
  color: #e8dcc4;
  font-family: 'Orbitron', sans-serif;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e8dcc4;
  margin-bottom: 2rem;
}


.btn-explore {
  display: block;              /* ou inline-block si text-align est géré */
  margin: 0 auto;              /* <-- centre le bouton horizontalement */
  width: 300px;            /* ta largeur exacte */
  max-width: 250px;
  height: 56.5px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #D97742 0%, #FF8243 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 56.5px;         /* vertical centering if needed */
  transition: transform 0.3s ease;
}
.btn-explore:hover {
  transform: scale(1.05);
}

.hero-info-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  color: #e8dcc4;
  font-size: 14px;
  text-align: center;
  background-color: rgba(10, 6, 4, 0.7);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
}

.hero-title {
   color: #D97742;
text-align: center;
font-family: Orbitron;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
letter-spacing: 3.6px;
text-transform: uppercase;
}