/* =====================================================
   GAME MODE SELECTOR
===================================================== */

.game-mode-panel{
  margin-top:22px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,248,232,.68);
  border:1px solid rgba(217,173,66,.38);
}

.game-mode-panel.locked{
  opacity:.55;
  pointer-events:none;
}

.game-mode-kicker{
  margin:0 0 8px;
  color:#9b742b;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.game-mode-header h3{
  margin:0 0 16px;
  color:#0f3d2a;
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.55rem;
  line-height:1;
}

.game-mode-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.game-mode-card{
  display:grid;
  gap:10px;
  align-content:start;
  min-height:150px;
  padding:18px;
  border:1px solid rgba(15,61,42,.12);
  border-radius:20px;
  background:#fff8e8;
  color:#0f3d2a;
  text-align:left;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(15,61,42,.07);
  transition:.18s ease;
}

.game-mode-card:hover{
  transform:translateY(-3px);
  border-color:rgba(217,173,66,.72);
  box-shadow:0 18px 34px rgba(15,61,42,.12);
}

.game-mode-card.active{
  background:linear-gradient(135deg, #0f3d2a, #245b3f);
  color:#fff8e8;
  border-color:#d9ad42;
}

.game-mode-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(217,173,66,.18);
  font-size:1.3rem;
}

.game-mode-card.active .game-mode-icon{
  background:#d9ad42;
}

.game-mode-content strong{
  display:block;
  font-size:1rem;
  font-weight:900;
}

.game-mode-content span{
  display:block;
  margin-top:6px;
  color:inherit;
  font-size:.82rem;
  line-height:1.45;
  opacity:.86;
}

.game-mode-content em{
  color:#9b742b;
  font-style:normal;
  font-weight:900;
}

.game-mode-card.disabled{
  opacity:.46;
  cursor:not-allowed;
}

.game-mode-card.disabled:hover{
  transform:none;
  box-shadow:0 12px 26px rgba(15,61,42,.07);
}

.game-mode-status{
  margin:14px 0 0;
  color:#5d665f;
  font-size:.86rem;
  font-weight:800;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:760px){
  .game-mode-panel{
    padding:18px;
  }

  .game-mode-grid{
    grid-template-columns:1fr;
  }

  .game-mode-card{
    min-height:0;
    grid-template-columns:46px 1fr;
    align-items:center;
  }

  .game-mode-icon{
    grid-row:1 / span 2;
  }
}