body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: white;
  text-align: center;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 20px auto;
}

.item img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: 2px solid #444;
  border-radius: 8px;
  transition: transform 0.2s, border-color 0.2s;
}

.item img:hover {
  transform: scale(1.1);
  border-color: gold;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}



.modal-content img {
  width: 64px;
  height: 64px;
}
/* Contenedor del modal */
#itemModal {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #1e1e1e;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

#closeModal {
  font-size: 34px;
  cursor: pointer;
  color: red;
  
}

/* Título */
#itemName {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4db6ff;
  text-align: center;
}

/* Imagen centrada */
#itemImage {
  display: block;
  margin: 10px auto 15px auto;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid #4db6ff;
  background: #0a0a0a;
}

/* Descripción */
#itemDescription {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
  text-align: justify;
  line-height: 1.3;
}

/* Costo en oro */
#itemGold {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #ffd54f;
  margin: 8px 0 16px 0;
}

/* Sección de eficiencia */
#item-stats h4 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffb347;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tabla de stats */
#item-stats table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 0.9rem;
}

#item-stats th {
  background: #2a2a2a;
  color: #f5f5f5;
  font-weight: 600;
  padding: 8px;
  border-bottom: 2px solid #4db6ff;
}

#item-stats td {
  padding: 8px;
  text-align: center;
  border-bottom: 1px solid #333;
}

/* Filas alternas */
#item-stats tr:nth-child(even) {
  background: #252525;
}

/* Total destacado */
#item-stats .total {
  background: #333;
  font-weight: bold;
  color: #ffd54f;
  font-size: 1rem;
}

/* Animación modal */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: red;
}

.volver {
  display: block;
  margin: 40px auto;   /* ← CENTRADO REAL */
  
  background: linear-gradient(145deg, #1c2733, #121a22);
  border: 1px solid #2f3f50;
  font-size: 18px;
  color: #FFD700;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  text-align: center;
  padding: 8px 18px;
  transition: all 0.25s ease;
}
.volver:hover {
  text-shadow: 0 0 8px #ffcc00;
  background: linear-gradient(145deg, #27374a, #1a2533);
  transform: translateY(-2px);
}
.contenedor-boton {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

