/* CSS for mobile carousel - 2 rows layout using widthGame structure */
@media (max-width: 450px) {
  .grilla-juegos.owl-carousel {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .widthGame {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 120px !important;
    padding-right: 5px !important;
    padding-bottom: 5px !important;
  }
  
  .widthGame .juego {
    flex: 1 !important;
    margin-bottom: 5px !important;
  }
  
  .widthGame .juego:last-child {
    margin-bottom: 0 !important;
  }
  
  .widthGame .juego .picture img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
  }
  
  .widthGame .juego .info {
    padding: 5px !important;
  }
  
  .widthGame .juego .title {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  
  .widthGame .juego .data {
    font-size: 10px !important;
  }
  
  .widthGame .juego .btn {
    font-size: 11px !important;
    padding: 4px 8px !important;
  }
}

/* CSS for desktop carousel - 2 rows layout with better visibility */
@media (min-width: 1200px) {
  .widthGame {
    display: flex !important;
    flex-direction: column !important;
    width: 240px !important;
    padding-right: 5px !important;
    padding-bottom: 5px !important;
  }
  
  .widthGame .juego {
    margin-bottom: 8px !important;
  }
  
  .widthGame .juego:last-child {
    margin-bottom: 0 !important;
  }
  
  .widthGame .juego .picture img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
  }
  
  .widthGame .juego .info {
    padding: 10px !important;
  }
  
  .widthGame .juego .title {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
  
  .widthGame .juego .data {
    font-size: 12px !important;
  }
  
  .widthGame .juego .btn {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }
}