.casino-card-inner {
  position: relative;
}
.casino-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  z-index: 2;
}
.casino-logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.btn--visit {
  background: #f4b911;
  color: #1a0a00;
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
}
.btn--visit:hover {
  background: #ffd022;
  color: #1a0a00;
}
.btn--review {
  background: transparent;
  border: 1.5px solid #66cc39;
  color: #66cc39;
  padding: 7px 14px;
  font-size: 0.78rem;
  border-radius: 8px;
}
.btn--review:hover {
  background: #66cc39;
  color: #fff;
}

.casino-load-more-btn {
  background: transparent;
  border: 2px solid #f4b911;
  color: #f4b911;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.casino-load-more-btn:hover {
  background: #f4b911;
  color: #1a0a00;
}
.casino-load-more-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.rating-stars-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-bar {
  flex: 1;
  height: 6px;
  background: #e0d0c0;
  border-radius: 3px;
  overflow: hidden;
  max-width: 120px;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f4b911, #ffd022);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.game-info-item {
  background: #fdf8f4;
  border: 1px solid #e8d5c4;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.game-info-label {
  font-size: 0.72rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.game-info-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #400d00;
}

.jackpot-banner {
  background: linear-gradient(135deg, #f4b911 0%, #ff8c00 100%);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
  overflow: hidden;
  position: relative;
}
.jackpot-banner::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.jackpot-banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  z-index: 1;
}
.jackpot-banner-text {
  z-index: 1;
}
.jackpot-banner-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #400d00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.jackpot-banner-val {
  font-size: 2rem;
  font-weight: 800;
  color: #400d00;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.jackpot-banner-sub {
  font-size: 0.78rem;
  color: #5c1200;
  font-weight: 500;
}
.jackpot-tiers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.jackpot-tier {
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.jackpot-tier-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.04em;
}
.jackpot-tier-val {
  font-size: 1rem;
  font-weight: 800;
  color: #400d00;
  font-variant-numeric: tabular-nums;
}
.jackpot-tier.grand .jackpot-tier-name {
  color: #f4b911;
}
.jackpot-tier.grand .jackpot-tier-val {
  color: #f4b911;
  font-size: 1.2rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
