/* Game Table Games Block Styles */
.wp-block-spinbit-game-table .games {
  background: #1a0d2e;
  padding: 0 0 40px 0;
}

.wp-block-spinbit-game-table .games__headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}

.wp-block-spinbit-game-table .games__title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}



.wp-block-spinbit-game-table .games__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.wp-block-spinbit-game-table .games__item {
  background: #2a1b3d;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.wp-block-spinbit-game-table .games__item:hover {
  transform: translateY(-5px);
}

.wp-block-spinbit-game-table .games__item-top {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.wp-block-spinbit-game-table .games__item-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wp-block-spinbit-game-table .games__item-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wp-block-spinbit-game-table .games__item:hover .games__item-info {
  opacity: 1;
}

.wp-block-spinbit-game-table .btn--play {
  background: #7c3aed;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.wp-block-spinbit-game-table .btn--play:hover {
  background: #6d28d9;
}

.wp-block-spinbit-game-table .games__item-info span {
  color: #fff;
  font-size: 12px;
}

.wp-block-spinbit-game-table .games__item-content {
  padding: 15px;
}

.wp-block-spinbit-game-table .games__item-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.wp-block-spinbit-game-table .games__item-provider {
  color: #9ca3af;
  font-size: 12px;
  text-transform: capitalize;
}

.wp-block-spinbit-game-table .games__load-more {
  text-align: center;
}

.wp-block-spinbit-game-table .btn--load-more {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wp-block-spinbit-game-table .btn--load-more:hover {
  background: #7c3aed;
  color: #fff;
}

@media (max-width: 768px) {
  .wp-block-spinbit-game-table .games__catalog {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .wp-block-spinbit-game-table .games__title {
    font-size: 20px;
  }
}


.games__headline--popular h3 {
  color: #ffffff !important;
}

.games__headline h3{
color: #ffffff !important;
}

.welcome__inner.has-game-filter  .games{
padding-top:0px;
padding-bottom:0px;
}