/* ============================
   GENERAL
============================ */
body {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

h1,h2,h3,p {
  text-shadow: 2px 2px #000;
}

.container {
  max-width: 1100px;
  margin: 120px auto 80px;
  padding: 0 20px;
}

/* ============================
   HUD SUPERIOR
============================ */
.hud {
  display: flex;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(0,0,0,0.7);
  border-bottom: 4px solid #2c2c2c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  color: #fff;
  font-size: 14px;
}

.hud-item {
  display: flex;
  align-items: center;
}

/* ============================
   LIBRO DE MISIONES
============================ */
.book {
  display: flex;
  gap: 30px;
  background: #d6c29f;
  border: 8px solid #5c4832;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px #000;
  margin-bottom: 60px;
}

.pagina {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px #5c4832;
}

.page-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.page-desc {
  margin-bottom: 25px;
}

/* Botones de días */
.day-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  background: #8b6d4c;
  color: #fff;
  border: 3px solid #5c4832;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.day-btn:hover {
  background: #a9825a;
  transform: translateY(-2px);
}

.mission-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.mission-text {
  font-size: 10px;
  line-height: 1.6;
}

.mission-mood {
  margin-top: 14px;
  padding: 6px 10px;
  background: #c9a66c;
  border: 3px solid #5c4832;
  width: max-content;
  border-radius: 6px;
}

/* ============================
   INVENTARIO
============================ */
.inventory h2 {
  margin-bottom: 10px;
}

.item-grid {
    min-height: 150px;
    margin-top: 20px;
    background: #3b3b3b;
    border: 6px solid #232323;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    border-radius: 10px;
}

.item {
  background: #2a2a2a;
  border: 4px solid #111;
  padding: 18px;
  text-align: center;
  border-radius: 6px;
  transition: 0.15s;
}

.item:hover {
  background: #444;
  transform: scale(1.05);
}
/* ============================
   MODAL — INVENTARIO
============================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #e6e2c7;
  border: 6px solid #3a2d17;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
}

.close-btn{
  float: right;
  cursor: pointer;
  font-weight: bold;
  color: #3a2d17;
}

/* Clase que sí oculta el modal */
.hidden {
  display: none !important;
}

/* ============================
   FOOTER
============================ */
.footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  margin-top: 60px;
  border-top: 4px solid #333;
}
@media(max-width:575.98px){
    .body {
        font-family:roboto;
    }
    .mission-mood{
        width:100%;
    }
    .item{
        width:100%;
    }
    .hud{
        flex-direction:column;
    align-items:center;}
    
    .book {
    flex-direction:column;
    }
}

h4{
    font-size:18px;
}