@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --fs: 0.75vw;
    font-size: var(--fs);
    font-family: "Oswald", sans-serif;
}
@media (max-width: 1279px) {
    :root {
        --fs: 1.5vw;
    }
}
@media (max-width: 767px) {
    :root {
        --fs: 2vw;
    }
}
@media (max-width: 639px) {
    :root {
        --fs: 2.75vw;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.wager-site-card__logo.w-full.rounded-lg.p-2.mb-4.inline-block {
  background-color: rgb(60, 60, 60);
}













.elite-casino-section {
  padding: 50px 20px;
  background: #1c2526;
  color: #e0e0e0;
  font-family: 'Cinzel', serif;
  overflow: hidden;
  position: relative;
}

.elite-casino-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

.elite-casino-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.5;
}

.cards-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 25px;
}

.elite-casino-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(0, 28, 46, 0.85) 0%, rgba(0, 12, 26, 0.85) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  animation: luxuriousEntrance 0.8s ease-out forwards;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.elite-casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.elite-casino-card:hover::before {
  opacity: 1;
}

.elite-casino-card:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.elite-casino-card.vip-elite-card .elite-badge {
  background: linear-gradient(90deg, #001a2e, #000c1a, #001a2e);
  box-shadow: 0 3px 6px rgba(255, 255, 255, 0.4);
  animation: vipGlow 2s ease-in-out infinite;
}

.casino-info-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.elite-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #001a2e, #000c1a, #001a2e);
  color: #ffffff;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 25px;
  margin-bottom: 12px;
  gap: 8px;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, background 0.4s ease;
  letter-spacing: 1px;
}

.elite-badge:hover {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(90deg, #003c38, #004d47, #003c38);
}

.icon {
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.icon-jackpot::before {
  content: '\1F3C6';
  animation: jackpotSpin 1.5s linear infinite;
}

.icon-win::before {
  content: '\1F3C6';
  color: #ffffff;
}

.brand-link {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.casino-brand {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.brand-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.brand-link:hover::after {
  left: 100%;
}

.brand-link:hover .casino-brand {
  transform: scale(1.08) rotate(3deg);
  filter: brightness(1.15) contrast(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.metrics-block {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
}

.rating-metrics {
  align-items: center;
}

.score-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.score-panel h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.score-panel h3 span {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stars-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars-array {
  display: flex;
  gap: 4px;
}

.star-element {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: starShine 2s infinite alternate;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.star-element:nth-child(even) {
  animation-delay: 0.5s;
}

.stars-panel:hover .star-element {
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.stars-panel p {
  margin: 0;
  font-size: 12px;
  color: #b3b3b3;
  font-style: italic;
}

.details-metrics {
  justify-content: space-around;
}

.withdraw-metrics,
.rtp-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: linear-gradient(180deg, #001a2e, #000c1a);
  border-radius: 10px;
  width: 48%;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdraw-metrics:hover,
.rtp-metrics:hover {
  background: linear-gradient(180deg, #003c38, #004d47);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
}

.withdraw-metrics p,
.rtp-metrics p {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #e0e0e0;
  font-weight: 500;
}

.withdraw-metrics h3,
.rtp-metrics h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.bonus-panel {
  padding: 25px;
  background: linear-gradient(180deg, rgba(0, 26, 46, 0.85) 0%, rgba(0, 12, 26, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.bonus-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0.7;
}

.bonus-caption {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.2);
  font-family: 'Cinzel', serif;
}

.bonus-detail {
  display: block;
  background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
  color: #000000;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 3px 6px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.bonus-detail:hover {
  background: linear-gradient(90deg, #e0e0e0, #ffffff, #e0e0e0);
  transform: scale(1.06);
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.5);
}

.claim-offer-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
  color: #000000;
  font-weight: 800;
  padding: 12px 0;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 3px 6px rgba(255, 255, 255, 0.3);
  animation: offerPulse 1.8s infinite;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.claim-offer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.claim-offer-btn:hover::after {
  opacity: 1;
}

.claim-offer-btn:hover {
  background: linear-gradient(90deg, #e0e0e0, #ffffff, #e0e0e0);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes luxuriousEntrance {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes starShine {
  0% { opacity: 0.7; box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
  100% { opacity: 1; box-shadow: 0 0 10px rgba(255, 255, 255, 1); }
}

@keyframes offerPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes jackpotSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes vipGlow {
  0% { box-shadow: 0 3px 6px rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 3px 6px rgba(255, 255, 255, 0.8); }
  100% { box-shadow: 0 3px 6px rgba(255, 255, 255, 0.4); }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Stagger animation for cards */
.elite-casino-card:nth-child(1) { animation-delay: 0.15s; }
.elite-casino-card:nth-child(2) { animation-delay: 0.3s; }
.elite-casino-card:nth-child(3) { animation-delay: 0.45s; }
.elite-casino-card:nth-child(4) { animation-delay: 0.6s; }
.elite-casino-card:nth-child(5) { animation-delay: 0.75s; }
.elite-casino-card:nth-child(6) { animation-delay: 0.9s; }

/* Media Query for Desktop (>1280px) */
@media (min-width: 1280px) {
  .cards-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .elite-casino-card {
    width: calc(50% - 12.5px);
    flex-direction: row;
    align-items: stretch;
    max-width: none;
    animation: eliteSlideIn 0.8s ease-out forwards;
    transform: translateX(-30px);
  }

  @keyframes eliteSlideIn {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .casino-info-panel {
    width: 55%;
    padding: 25px;
  }

  .bonus-panel {
    width: 45%;
    padding: 25px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
  }

  .elite-casino-section {
    padding: 60px 40px;
  }
}

/* Media Query for Mobile (<1280px) */
@media (max-width: 1279px) {
  .elite-casino-card {
    max-width: 420px;
    margin: 0 auto;
  }
}