
  /* Large button (e.g. category name) */
  /*
  .row-button {
    flex: 2;
    background: linear-gradient(to right, #00f2ff, #0ff);
    color: #000;
    padding: 1.2vh 2vw;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-right: 2vw;
    white-space: nowrap;
  }
  */

 




  #categorySearch {
  width: 90%;
  padding: 10px;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.1rem;
  text-align: center;
}

#gameScroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 10px;
  max-height: 70vh;
  overflow-y: auto;
}

.game-row {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  background: linear-gradient(145deg, #112, #224);
}

.game-row:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.cat-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.cat-meta {
  margin-top: 6px;
  font-size: 0.95rem;
  opacity: 0.85;
}



  
