.fish-games-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.28), transparent 35%),
    linear-gradient(135deg, #020617 0%, #071b3a 45%, #0f3b82 100%);
  color: #ffffff;
  overflow: hidden;
}

.fish-games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fish-games-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.fish-games-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 18px;
  border: 1px solid rgba(96, 165, 250, 0.45);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.fish-games-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  color: #ffffff;
}

.fish-games-heading p {
  margin: 0;
  color: #c7d2fe;
  font-size: 16px;
  line-height: 1.8;
}

.fish-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fish-game-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 45, 95, 0.76));
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fish-game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.25);
}

.fish-game-card.featured {
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.95), rgba(2, 6, 23, 0.9));
}

.fish-game-img {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  font-size: 38px;
  box-shadow: 0 16px 35px rgba(56, 189, 248, 0.25);
}

.fish-game-provider {
  display: inline-block;
  margin-bottom: 10px;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
}

.fish-game-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #ffffff;
}

.fish-game-content p {
  margin: 0 0 18px;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.7;
}

.fish-game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fish-game-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.24);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 600;
}

.fish-game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fish-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.4);
}

@media (max-width: 992px) {
  .fish-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fish-games-section {
    padding: 70px 16px;
  }

  .fish-games-heading {
    text-align: left;
    margin-bottom: 32px;
  }

  .fish-games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fish-game-card {
    padding: 20px;
    border-radius: 20px;
  }

  .fish-game-img {
    width: 66px;
    height: 66px;
    font-size: 32px;
  }

  .fish-game-content h3 {
    font-size: 20px;
  }

  .fish-game-content p {
    font-size: 14px;
  }
}