/* Casino table styles */

.casinos-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.1);
}

.casinos-table thead {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.casinos-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casinos-table tbody tr {
  min-height: 120px;
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
  transition: background-color 0.3s ease;
}

.casinos-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

.casinos-table tbody tr:last-child {
  border-bottom: none;
}

.casinos-table td {
  padding: 20px 15px;
  vertical-align: middle;
  text-align: center;
}

.casino-logo {
  height: 45px;
  width: 140px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.casino-logo:hover {
  transform: scale(1.05);
}

.bonus-badge {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.bonus-amount {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 5px;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rating-number {
  font-size: 20px;
  font-weight: bold;
  color: #1e3a8a;
}

.stars {
  font-size: 18px;
  color: #3b82f6;
  letter-spacing: 2px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.payment-label {
  font-size: 12px;
  color: rgba(30, 58, 138, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-icons img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.cta-link {
  display: inline-block;
  text-decoration: none;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(30, 58, 138, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

