/* Center the gray card */
.info-box{
  background: #f0f0f0;           
  color: #222;
  max-width: 640px;              
  margin: -70px auto 32px auto;   /* 🔥 moved upward (top margin reduced!) */
  padding: 28px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-align: center;

  /* Gaming font */
  font-family: "Orbitron", sans-serif;
}

/* Styling inside the box (optional) */
.info-box .info-section{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dotted #d1d1d1;
}

.info-box .info-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box .info-list li{
  margin: 4px 0;
}

.info-box h2, 
.info-box h3{
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}