/* HOME: solo estilos de contenido (no html/body/header/footer/nav) */

.home-main{
  width:100%;
  padding: 0; /* el padding ya lo pone .site-main */
  display:flex;
  flex-direction:column;
  gap: 2rem;
  align-items:center;
  align-content:flex-start;
}

/* Secciones de la home */
.home-section{
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 1200px;
  border: 1px solid #00f0ff33;
  margin-bottom: 1rem;
}

.section-title{
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.cards-grid{
  display:flex;
  flex-wrap:wrap;
  gap: 1rem;
  justify-content:center;
}

.option-box{
  background-color:#1a1a1a;
  border:1px solid #00f0ff;
  border-radius:10px;
  padding:1rem 1.5rem;
  width:260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
  flex: 0 0 auto;
}
.option-box:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00f0ff;
}

.option-box h3{ margin:0 0 .5rem 0; color:#00f0ff; font-size:1.1rem; }
.option-box p{ margin:.2rem 0; font-size:.9rem; }

.option-box a{
  color:#00f0ff;
  text-decoration:none;
  font-weight:bold;
  font-size:.9rem;
}
.option-box a:hover{ text-decoration: underline; }

.game-img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:.5rem;
  display:block;
}