/* Hide/show utility */
.hidden {
    display: none;
  }
  
  /* Full screen scroll view */
  .screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background: #0a0a0a;
    padding: 2vh 4vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }
  
  /* Glowing scroll container */
  .game-scroll {
    width: 100%;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 10px #00ffff80, 0 0 30px #00ffff20 inset;
    border-radius: 16px;
    padding: 2vh;
    background: #111;
  }
  
  .game-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b1b1b;
    border-radius: 12px;
    padding: 1vh 2vw;
    margin-bottom: 1.5vh;
    box-shadow: 0 0 8px #00f2ff40;
    transition: transform 0.2s;
    min-height: 60px;
  }
  
  
  .game-row:hover {
    transform: scale(1.01);
  }
  
  /* 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;
  }
  */

  .row-button {
    flex: 2;
    color: #fff;
    padding: 0.8em 1.2em;
    margin: 0; /* Remove bottom margin */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-align: center;
    user-select: none;
    background-color: transparent;
  }
  
  

  
  /* Two small animated boxes */
  .row-animations {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    justify-content: center;
    align-items: flex-end;
    padding-left: 1vw;
  }
  
  .animation-box {
    width: 40px;
    height: 40px;
    background: #222;
    border: 1px solid #00f2ff;
    border-radius: 6px;
    box-shadow: 0 0 4px #00f2ff80;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .animation-label {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 0.4vh;
  }


  