  
      .game-list-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.game-list-card h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.game-list-card small {
  font-size: 13px;
  color: #ccc;
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* ✅ Active Card Styling */
.active-card {
  background:var(--background-colo3);
  color: #fff;
}

.active-card .game-btn {
background-image: var(--blue-gradient-ligh2);
  color: #000;
}

/* ❌ Closed Card Styling */
.closed-card {
  background-image: var(  --blue-gradient-ligh3);
  color: var(--closed);
  opacity: 0.9;
}

.closed-card .game-btn {
  background: #333;
  color: #999;
  pointer-events: none;
  cursor: not-allowed;
}

.closed-card .fa-play {
  opacity: 0.5;
}

  