.row-block{
  margin-top: 30px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(16, 22, 58, 0.4);
  box-shadow: 0 0 15px rgba(0, 219, 222, 0.3);
  border: 1px solid rgba(0, 219, 222, 0.2);
  transition: all 0.3s ease;
}

.row-block:hover {
  box-shadow: 0 0 25px rgba(0, 219, 222, 0.6);
  transform: translateY(-5px);
}

.block-title{
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 5px solid var(--accent-color-2);
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.block-body{
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 10px;
  padding: 15px;
  background: rgba(15, 52, 96, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.row-block:nth-of-type(2) .block-body{
  box-shadow: 0 0 15px rgba(167, 79, 238, 0.4);
}

.row-block:nth-of-type(3) .block-body{
  box-shadow: 0 0 15px rgba(144, 1, 159, 0.4);
}

.row-block:nth-of-type(4) .block-body{
  box-shadow: 0 0 15px rgba(129, 55, 2, 0.4);
}

.row-block:nth-of-type(5) .block-body{
  box-shadow: 0 0 15px rgba(245, 36, 140, 0.4);
}

@media screen and (max-width: 575px){
  .row-block {
    padding: 10px;
  }
  
  .block-body{
    flex-direction: column;
    height: 420px;
  }
  
  .block-body .row-head{
    width: 100%;
    max-width: unset;
    margin-right: unset;
    height: 40%;
  }
  
  .game-list{
    width: 100%;
    overflow-x: scroll;
    height: 60%;
  }
  
  .game-item{
    width: 150px;
    height: 90%;
    min-width: 130px;
    font-size: 0.9rem;
  }
  
  .game-item .name{
    font-size: .8rem;
  }
}