
.title-game{
    display: flex;
    height: 100px;
    width: auto;
    border-radius: 12px;
    background: var(--brand);
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--dark);
    align-items: center;
    margin-top: 10px;
}
.h3-game{
    padding: 10px;
    color:var(--accent);
    font-size: xx-large;
}

.bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 15%);
  gap: 12px;
  width: 80vw;
  padding-top: 10px;
  padding-bottom: 10px;
}
.item {
    position: relative;
    border-radius: 12px;
    background: var(--brand);
    overflow: hidden;
    cursor: pointer;
    
}
.item p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px 15px; 
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  margin: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-size: xx-large;
  overflow: hidden;
  box-sizing: border-box;
}
.item h3 {
  position: absolute;
  bottom: 1;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px 15px; 
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-size: xx-large;
  box-sizing: border-box;
}
.item:hover p {
  opacity: 1;
}

.img-item
{
    width: 100%;
    height: 100%;
    object-fit: cover;
  transition: transform 500ms ease-in-out;      
}
.img-item:hover{
    transform:scale(1.1);
}

.v-game{
    border-radius: 12px;
}
.bg-desc
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--dark);     
}
.cellview{
    display: none;

}
.slider{
    margin: 5px;
    width: auto;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 0;
    cursor: grab;
    gap: 10px;
}
.slider img {
    width: 100%;
    flex-shrink: 0;
    height: 350px;;
    left: 0;
    position: relative;
    object-fit: cover;
    border-radius: 5px;
    scroll-snap-align: center;
}
.slider::-webkit-scrollbar {
    display: none;
}
.slider:active {
    cursor: grabbing;
}
.img-steam{
    min-width: 96px;
    min-height: 96px;
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-steam img{
    max-width: 100%; 
    height: auto;
}
.div-game
{
    position: relative;       
    overflow: hidden;         
    border-radius: 0.75rem;
    padding: 20px;
    width: 80vw;
}
.img-game
{
    display: block;
    width: 80vw;
    max-width: 80vw;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: height 0.8s ease-in-out;
    margin: 10px auto;
    border-radius: 15px;
}

.img-game:hover {
    height: 50vh;
}


.a {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.b {
  grid-column: 3 / 6;
  grid-row: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.c {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

.e {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.f {
  grid-column: 3 / 6;
  grid-row: 1 / 2;
}

.g {
  grid-column: 5 / 6;
  grid-row: 4 / 6;
}



.i {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.j {
  grid-column: 3 / 5;
  grid-row: 4 / 6;
}