/* ============================================================================
   Reset & Base
============================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #101119;
  color: #d0d0d8;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}
footer {
    margin-top: -15%;          /* pushes footer to bottom inside wrapper */
  width: 100%;
  flex-shrink: 0;
}
.scale-wrapper {
  transform: scale(0.85);           /* or 0.88, 0.9 — whatever you want */
  transform-origin: top left;
  width: 117.65%;                    /* 100 / 0.85 = 117.65 */
  min-height: 117.65vh;              /* prevent early cutoff */
}
.dev-link {
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.dev-link:hover {
    opacity: 0.8; /* optional subtle hover */
}

/* Glow background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(55, 55, 65, 0.18) 0%,
    rgba(45, 45, 55, 0.11) 20%,
    rgba(35, 35, 45, 0.04) 35%,
    transparent 52%
  );
  pointer-events: none;
  z-index: -1;
}

/* ============================================================================
   Reveal / Scroll Fade-in Animation
============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.9s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for children when needed */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.55s; }

/* ============================================================================
   Header
============================================================================ */
header {
background-color: #0d0e14c9;
  border-bottom: 1px solid #1a1b22;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* keep this */
  gap: 1.6rem;
  position: relative;               /* ← add */
  max-width: 1400px;
  margin: 0 auto;
  height: 64px;
  padding: 0 2rem;                  /* already have this on header, but ok to repeat */
}

/* Force nav into true center */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Optional: constrain max width so it doesn't overflow on medium screens */
  max-width: 55%;                    
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b0b0c0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease;
  padding: 0.3rem 0;
}
.nav-item:hover,
.nav-item.active {
  color: #ef4343;
}
.nav-icon {
  height: 18px;
  width: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(8%) saturate(100%) hue-rotate(180deg) brightness(90%) contrast(90%);
  transition: filter 0.18s ease;
}
.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(3000%) hue-rotate(330deg) brightness(95%) contrast(95%);
}
.auth .signin-btn {
  background-color: #ef4343;
  color: white;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease;
  text-decoration: none !important;
}
.signin-btn:hover {
  background-color: #d83535;
  text-decoration: none !important;
}

/* ============================================================================
   Hero Section
============================================================================ */
.hero {
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 0rem;
  text-align: center;
}
.hero-content {
  max-width: 900px;
  position: relative;
  text-align: center;
  top: -5rem;
}
.hero-image {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.breathing {
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1.00); }
  50% { transform: scale(1.06); }
}
.hero-promo-text {
  margin-top: 2.2rem;
}
.use-code {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  font-style: italic;
}
.use-code .highlight-san {
  font-style: italic;
  font-weight: 700;
}
.use-code .red-san {
  color: #ef4343;
}
.explore-desc {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
  color: #a0a0b0;
  letter-spacing: 0.4px;
  opacity: 0.92;
}
.hero-promo-text {
  animation: fadeInUp 1.8s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   Bonuses Section
============================================================================ */
/* ============================================================================
   Bonuses - force 4 in a row + uniform card layout
============================================================================ */
.bonuses {
  padding: 2rem 2rem 3rem;
}

.bonuses-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* force 4 columns */
  gap: 1.8rem;                             /* slightly tighter gap */
  justify-content: center;
}

.bonus-card {
    background: #15161fa6;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e1f2a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;                  /* ensure consistent flex behavior */
  height: 100%;                            /* stretch to match tallest card */
  max-width: none;                         /* remove old max-width limit */
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Uniform header height + centered logo */
.card-header {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #1e1f2a;
  height: 130px;                           /* fixed height - adjust 120-140px based on your logos */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0e14;                     /* optional subtle bg diff */
}

.casino-img {
  max-width: 90%;
  max-height: 100%;
  height: 100%;                            /* fill header height */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Body takes remaining space */
.card-body {
  padding: 1.5rem 1.6rem 2rem;
  text-align: center;
  flex: 1;                                 /* grow to fill card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;          /* space out perks / code / button */
}

/* Make sure perks don't push things unevenly */
.perks {
  list-style: none;
  margin-bottom: 1.4rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0c0;
  flex-grow: 1;                            /* optional: if you want perks to expand */
}
.perks li {
  margin-bottom: 0.4rem;
}
.perks li::before {
  content: "✓ ";
  color: #ef4343;
  font-weight: bold;
  margin-right: 0.4rem;
}
.code-section {
  margin: 1.2rem 0 1.6rem;
}
.code-label {
  font-size: 0.9rem;
  color: #a0a0b0;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-code {
  background: #1e1f2a;
  border: 1px solid #2a2b38;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4343;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 140px;
  text-align: center;
  user-select: all;
}
.claim-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #ef4343;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s ease;
}
.claim-btn:hover {
  background: #d83535;
}

/* ============================================================================
   Leaderboard Section
============================================================================ */
.leaderboard-section {
  padding: 3rem 2rem 6rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
    margin-top: -11.5%;
}
.casino-switches {
  display: flex;
  justify-content: center;
  gap: 1.5rem;               /* maybe reduce to 1.2rem if too spread out */
  margin-bottom: 3.5rem;
  margin-top: -14rem;
}

.switch-btn {
background: #1e1f2ab5;
  border: 2px solid #2a2b38;
  border-radius: 10px;
  width: 200px;
  height: 60px;              /* fixed height */
  padding: 6px;              /* slightly less padding for more logo space */
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* prevent overflow if logo is odd */
}

.switch-btn img {
  max-width: 90%;            /* prevent touching edges */
  max-height: 100%;          /* fill the button height */
  height: 100%;              /* force to use full height */
  width: auto;
  object-fit: contain;
  display: block;
}

.switch-btn.active,
.switch-btn:hover {
  border-color: #ef4343;
  transform: scale(1.05);
}
.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.podium-card {
  width: 300px;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
  border: 1px solid #1e1f2a;
  border-radius: 12px;
  padding: 1.8rem 1.6rem 2.2rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.gold {
  border: 2px solid #ffd700;
  transform: scale(1.08);
  z-index: 2;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 40%, transparent 70%), #15161f42;
}
.gold:hover {
  transform: scale(1.14) translateY(-8px);
}
.silver {
  border: 2px solid #c0c0c0;
    background: linear-gradient(to top, rgba(192, 192, 192, 0.10) 0%, rgba(192, 192, 192, 0.03) 40%, transparent 70%), #15161f33;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
}
.bronze {
  border: 2px solid #cd7f32;
background: linear-gradient(to top, rgba(205, 127, 50, 0.11) 0%, rgba(205, 127, 50, 0.035) 40%, transparent 70%), #15161f36;
backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
}
.podium-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.silver { order: 1; }
.gold { order: 2; }
.bronze { order: 3; }
.profile-pic {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 3px solid;
  background: #101119;
}
.gold .profile-pic { border-color: #ffd700; }
.silver .profile-pic { border-color: #c0c0c0; }
.bronze .profile-pic { border-color: #cd7f32; }
.username {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.gold .username { color: #ffd700; }
.silver .username { color: #c0c0c0; }
.bronze .username { color: #cd7f32; }
.label {
  font-size: 0.95rem;
  color: #a0a0b0;
  margin: 0.8rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.amount {
  font-size: 2.1rem;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 1.4rem;
      font-style: italic;
}
.reward-container {
  background: #0d0e14;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-top: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.reward-container:hover {
  background: #12141c;
}
.reward-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.gold .reward-amount { color: #ffd700; }
.silver .reward-amount { color: #e0e0e0; }
.bronze .reward-amount { color: #cd7f32; }
.countdown {
  margin: 3rem 0 4rem;
  text-align: center;
}
.countdown-label {
  font-size: 1.4rem;
  color: #a0a0b0;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.timer-group {
  display: flex;
  gap: 0.4rem;
  width: 132px;
  justify-content: center;
}
.digit-box {
  width: 58px;
  height: 78px;
    background: #0d0e1480;
  border: 2px solid #222533;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.colon {
  color: #ef4343;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  min-width: 20px;
  text-align: center;
}
.timer-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
    max-width: 684px;
}
.timer-labels span {
  width: 132px;
  text-align: center;
  color: #ef4343;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.leaderboard-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.1rem;
    background: #15161fbf;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e1f2a;
}
.leaderboard-table th,
.leaderboard-table td {
  padding: 1.2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #1e1f2a;
}
.leaderboard-table th {
  background: #0d0e14;
  color: #e0e0e8;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}
.leaderboard-table tbody tr:hover {
  background: #1e1f2a;
  transition: background 0.2s ease;
}
.leaderboard-table td {
  color: #b0b0c0;
}

.leaderboard-title,
.casino-switches,
.wager-info,
.podium,
.countdown,
.leaderboard-table {
  position: relative;
  z-index: 3;
}

/* ============================================================================
   My Socials Section
============================================================================ */
.socials-section {
  padding: 4rem 2rem 8rem;
  text-align: center;
}
.socials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ef4343;
  margin-bottom: 3rem;
  text-align: center;
}
.socials-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.8rem;
  overflow-x: visible;
  margin-bottom: 100px;
}
.social-card {
  background: rgba(21, 22, 31, 0.6);
  border: 1px solid #1e1f2a;
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  text-decoration: none;
  color: #d0d0d8;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 320px;
  position: relative;
}
.social-card:hover {
  transform: translateY(-6px);
}
.social-card.discord:hover {
  box-shadow: 0 0 28px 8px rgba(88, 101, 242, 0.55);
}
.social-card.kick:hover {
  box-shadow: 0 0 28px 8px rgba(0, 255, 140, 0.50);
}
.social-card.youtube:hover {
  box-shadow: 0 0 28px 8px rgba(255, 0, 0, 0.55);
}
.social-card.x:hover {
  box-shadow: 0 0 28px 8px rgba(255, 255, 255, 0.45);
}
.social-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.social-card:hover .social-icon {
  transform: scale(1.08);
}
.social-card.discord .social-icon {
  filter: brightness(0) saturate(100%) invert(38%) sepia(92%) saturate(7481%) hue-rotate(242deg) brightness(95%) contrast(101%);
}
.social-card.kick .social-icon {
  filter: brightness(0) saturate(100%) invert(67%) sepia(92%) saturate(747%) hue-rotate(80deg) brightness(95%) contrast(101%);
}
.social-card.youtube .social-icon {
  /* no filter */
}
.social-card.x .social-icon {
  filter: brightness(0) invert(1);
}
.social-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.social-platform {
  font-size: 1.05rem;
  font-weight: 500;
  color: #a0a0b0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.social-username {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ef4343;
  transition: color 0.25s ease;
}
.social-card.discord:hover .social-username {
  color: #5865f2;
}
.social-card.kick:hover .social-username {
  color: #00ff8c;
}
.social-card.youtube:hover .social-username {
  color: #ff0000;
}
.social-card.x:hover .social-username {
  color: #ffffff;
}

/* ============================================================================
   Footer
============================================================================ */
footer {
  background-color: #0d0e14;
  border-top: 1px solid #1a1b22;
  padding: 3.5rem 2rem 2.5rem;
  color: #b0b0c0;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: nowrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-logo img {
  height: 42px;
  width: auto;
}
.footer-logo span {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
}
.copyright {
  font-size: 0.95rem;
  color: #80808f;
  margin-top: 0.3rem;
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 6rem;
  flex-shrink: 0;
}
.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 0.7rem;
}
.footer-column a {
  color: #b0b0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.18s ease;
}
.footer-column a:hover {
  color: #ef4343;
}

/* ============================================================================
   Particles
============================================================================ */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -12%;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 10px 4px rgba(255, 77, 77, 0.75);
  opacity: 0;
  will-change: transform, opacity;
  animation: rise linear infinite;
}
@keyframes rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  45% {
    opacity: 1;
  }
  65%, 100% {
    opacity: 0;
  }
  100% {
    transform: translateY(-75vh) translateX(var(--sway, 0px));
  }
}

/* ============================================================================
   Responsive Adjustments
============================================================================ */
@media (max-width: 980px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
    gap: 1.2rem;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.6rem;
  }
  .hero {
    min-height: 50vh;
    padding: 3rem 1.5rem 2rem;
  }
  .hero-image {
    max-width: 65%;
  }
  .bonuses {
    padding: 1.5rem 1rem 2.5rem;
  }
  .bonuses-container {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .podium {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
  .podium-card {
    width: 90%;
    max-width: 340px;
  }
  .digit-box {
    width: 48px;
    height: 68px;
    font-size: 2.6rem;
  }
  .timer-group {
    width: 108px;
    gap: 0.3rem;
  }
  .colon {
    font-size: 2.6rem;
    min-width: 18px;
  }
  .timer-digits {
    gap: 0.7rem;
  }
  .timer-labels span {
    width: 108px;
    font-size: 0.95rem;
  }
  .leaderboard-table {
    font-size: 1rem;
  }
  .leaderboard-table th, .leaderboard-table td {
    padding: 1rem 0.8rem;
  }
}
@media (max-width: 768px) {
  .use-code {
    font-size: 1.65rem;
  }
  .explore-desc {
    font-size: 1.05rem;
  }
  .hero-promo-text {
    margin-top: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .socials-container {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .social-card {
    flex: 1 1 45%;
    max-width: none;
  }
}
@media (max-width: 680px) {
  .social-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
@media (max-width: 1100px) {
  :root {
    --casino-bg-offset: -18%;
    --casino-bg-scale: 0.35;
  }
}
@media (max-width: 768px) {
  :root {
    --casino-bg-offset: -12%;
    --casino-bg-scale: 0.30;
    --casino-bg-opacity: 0.65;
  }
  .casino-bg-left,
  .casino-bg-right {
    top: 8%;
    height: 88%;
  }
}

/* ============================================================================
   Leaderboard top part fades in immediately on load
============================================================================ */
.leaderboard-top {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* Very short or zero delay for top part – feels "instant but smooth" */
.reveal-delay-0 {
  transition-delay: 0.05s;   /* almost instant – adjust to 0s or 0.1s–0.2s if you want it slower */
}

/* Countdown and table keep staggered delays */
.reveal-delay-1 {
  transition-delay: 0.25s;
}

.reveal-delay-2 {
  transition-delay: 0.5s;
}


/* ============================================================================
   Floating Side Images (Hero Decorations) - Updated
============================================================================ */
/* ============================================================================
   Floating Side Images (Hero Decorations) - Faster but gentler swaying
============================================================================ */
.floating-sides {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.float-img {
  position: absolute;
  width: 140px;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.65));
  will-change: transform;
  animation-timing-function: cubic-bezier(0.42, 0.0, 0.58, 1.0);
  animation-iteration-count: infinite;
}

/* Durations stay faster, but movement is reduced */
.float-img.left.top {
  top: 10%;
  left: 12%;
  animation-name: sway-left-top;
  animation-duration: 11.5s;
  animation-delay: -0.8s;
}

.float-img.left.middle {
  top: 50%;
  left: 25%;
  animation-name: sway-left-middle;
  animation-duration: 13s;
  animation-delay: 2.1s;
}

.float-img.left.bottom {
  top: 60%;
  left: 18%;
  animation-name: sway-left-bottom;
  animation-duration: 10.2s;
  animation-delay: 4.3s;
}

.float-img.right.top {
  top: 10%;
  right: 12%;
  animation-name: sway-right-top;
  animation-duration: 12s;
  animation-delay: 0.6s;
}

.float-img.right.middle {
  top: 50%;
  right: 15%;
  animation-name: sway-right-middle;
  animation-duration: 11.2s;
  animation-delay: 3.2s;
}

.float-img.right.bottom {
  top: 60%;
  right: 25%;
  animation-name: sway-right-bottom;
  animation-duration: 13.5s;
  animation-delay: 5.4s;
}

/* Gentler keyframes – smaller translations + rotations */
@keyframes sway-left-top {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  20%        { transform: translate(14px, -18px) rotate(2.5deg); }
  40%        { transform: translate(-12px, -26px) rotate(-2.2deg); }
  60%        { transform: translate(16px, -14px) rotate(3deg); }
  80%        { transform: translate(-9px, -32px) rotate(-2.5deg); }
}

@keyframes sway-left-middle {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  25%        { transform: translate(12px, -22px) rotate(2deg); }
  50%        { transform: translate(-20px, -30px) rotate(-3.5deg); }
  75%        { transform: translate(13px, -16px) rotate(2.8deg); }
}

@keyframes sway-left-bottom {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  15%        { transform: translate(18px, -15px) rotate(3.2deg); }
  45%        { transform: translate(-14px, -34px) rotate(-2.8deg); }
  70%        { transform: translate(8px, -22px) rotate(2.4deg); }
  90%        { transform: translate(-10px, -11px) rotate(-1.8deg); }
}

@keyframes sway-right-top {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  18%        { transform: translate(-15px, -20px) rotate(-2.8deg); }
  42%        { transform: translate(13px, -28px) rotate(2.5deg); }
  65%        { transform: translate(-18px, -12px) rotate(-3.2deg); }
  82%        { transform: translate(10px, -33px) rotate(2.2deg); }
}

@keyframes sway-right-middle {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  22%        { transform: translate(-10px, -24px) rotate(-2.2deg); }
  48%        { transform: translate(21px, -32px) rotate(3.8deg); }
  72%        { transform: translate(-15px, -18px) rotate(-3deg); }
}

@keyframes sway-right-bottom {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  12%        { transform: translate(17px, -12px) rotate(3deg); }
  38%        { transform: translate(-22px, -36px) rotate(-4deg); }
  62%        { transform: translate(12px, -25px) rotate(2.8deg); }
  88%        { transform: translate(-8px, -15px) rotate(-2deg); }
}

/* Responsive adjustments (unchanged) */
@media (max-width: 1100px) {
  .float-img {
    width: 110px;
  }
  .float-img.left.top, .float-img.right.top    { top: 15%; left: 5%; right: 5%; }
  .float-img.left.middle, .float-img.right.middle { top: 42%; left: 10%; right: 10%; }
  .float-img.left.bottom, .float-img.right.bottom { top: 68%; left: 6%; right: 6%; }
}

@media (max-width: 768px) {
  .float-img {
    width: 90px;
    opacity: 0.58;
  }
  .float-img.left.top, .float-img.right.top    { top: 12%; left: 4%; right: 4%; }
  .float-img.left.middle, .float-img.right.middle { top: 38%; left: 9%; right: 9%; }
  .float-img.left.bottom, .float-img.right.bottom { top: 64%; left: 5%; right: 5%; }
}

@media (prefers-reduced-motion: reduce) {
  .float-img {
    animation: none !important;
  }
}

/* New "between" images – positioned vertically ~30%, horizontally closer to center */
.float-img.left.between {
  top: 30%;
  left: 25%;
  animation-name: sway-left-between;
  animation-duration: 10.8s;
  animation-delay: 1.4s;
}

.float-img.right.between {
  top: 30%;
  right: 25%;
  animation-name: sway-right-between;
  animation-duration: 12.3s;
  animation-delay: -1.9s;
}

/* New unique keyframes for the between images */
@keyframes sway-left-between {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  22%        { transform: translate(15px, -20px) rotate(2.8deg); }
  45%        { transform: translate(-16px, -28px) rotate(-3deg); }
  68%        { transform: translate(18px, -15px) rotate(3.5deg); }
  85%        { transform: translate(-11px, -35px) rotate(-2.6deg); }
}

@keyframes sway-right-between {
  0%, 100%   { transform: translate(0, 0) rotate(0deg); }
  20%        { transform: translate(-17px, -22px) rotate(-3.2deg); }
  42%        { transform: translate(14px, -30px) rotate(2.7deg); }
  65%        { transform: translate(-19px, -14px) rotate(-3.8deg); }
  80%        { transform: translate(12px, -36px) rotate(2.4deg); }
}


/* ============================================================================
   Podium Cards Hover Effects
============================================================================ */

/* Gold - keep the existing scale + lift effect */
.podium-card.gold:hover {
  transform: scale(1.14) translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Silver & Bronze - slide up effect (no scale) */
.podium-card.silver,
.podium-card.bronze {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.podium-card.silver:hover,
.podium-card.bronze:hover {
  transform: translateY(-25px);   /* moves the card upward */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Hide helper class for background images */
.hidden {
  display: none !important;
}

/* Optional: make background images fade when switching */
.casino-bg-left,
.casino-bg-right {
  transition: opacity 0.4s ease;
}

.casino-bg-left.hidden,
.casino-bg-right.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Make Shock logo noticeably smaller */
.switch-btn[data-casino="shock"] img {
  transform: scale(0.78);   /* ~22% smaller – adjust between 0.75–0.82 if needed */
}

/* Make Clash.gg logo moderately smaller */
.switch-btn[data-casino="clashgg"] img {
  transform: scale(0.88);   /* ~12% smaller – adjust between 0.85–0.92 */
}

/* Optional: keep Cases.gg and Juice at full size (or very slight reduction if you want) */
.switch-btn[data-casino="casesgg"] img,
.switch-btn[data-casino="juice"] img {
  transform: scale(0.95);   /* almost full size – remove this block if you want them 100% */
}

/* Reduce size of Shock and Clash.gg logos in bonus cards */

/* Shock - strongest reduction */
.bonus-card:has(.casino-img[src*="/shock.png"]) .casino-img,
.bonus-card:has(.casino-img[alt="Shock"]) .casino-img {
  transform: scale(0.78);   /* same value we used for the tabs – adjust 0.75–0.82 */
}

/* Clash.gg - moderate reduction */
.bonus-card:has(.casino-img[src*="/clashgg.png"]) .casino-img,
.bonus-card:has(.casino-img[alt="ClashGG"]) .casino-img {
  transform: scale(0.88);   /* same value we used for the tabs – adjust 0.85–0.92 */
}

/* Optional: very slight reduction for Cases.gg and Juice (if you want them a bit smaller too) */
.bonus-card:has(.casino-img[src*="/casesgg.png"]) .casino-img,
.bonus-card:has(.casino-img[alt="CasesGG"]) .casino-img,
.bonus-card:has(.casino-img[src*="/juice.png"]) .casino-img,
.bonus-card:has(.casino-img[alt="Juice"]) .casino-img {
  transform: scale(0.95);   /* almost full size – you can remove this block */
}

/* ============================================================================
   Terms of Service Section
============================================================================ */
.tos-section {
  padding: 6rem 2rem 8rem;
  background: linear-gradient(to bottom, #101119, #0d0e14);
  min-height: 80vh;
  text-align: left;
}

.tos-container {
  max-width: 900px;
  margin: 0 auto;
        margin-bottom: 25rem;
}

.tos-container h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-align: center;
}

.last-updated {
  font-size: 1rem;
  color: #a0a0b0;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.tos-container h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #ef4343;
  margin: 2.5rem 0 1.2rem;
}

.tos-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d8;
  margin-bottom: 1.4rem;
}

.tos-container ul {
  list-style: none;
  margin: 1.2rem 0 2rem;
  padding-left: 1.8rem;
}

.tos-container ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d8;
  margin-bottom: 0.8rem;
  position: relative;
}

.tos-container ul li::before {
  content: "•";
  color: #ef4343;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
  font-size: 1.6rem;
}

/* Mobile */
@media (max-width: 768px) {
  .tos-section {
    padding: 4rem 1.5rem 6rem;
  }
  .tos-container h1 {
    font-size: 2.6rem;
  }
  .tos-container h2 {
    font-size: 1.8rem;
  }
}

/* ============================================================================
   Privacy Policy Section (mirrors ToS styling)
============================================================================ */
.privacy-section {
  padding: 6rem 2rem 8rem;
  background: linear-gradient(to bottom, #101119, #0d0e14);
  min-height: 80vh;
  text-align: left;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
      margin-bottom: 25rem;
}

.privacy-container h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-align: center;
}

.privacy-container .last-updated {
  font-size: 1rem;
  color: #a0a0b0;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.privacy-container h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #ef4343;
  margin: 2.5rem 0 1.2rem;
}

.privacy-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d8;
  margin-bottom: 1.4rem;
}

.privacy-container ul {
  list-style: none;
  margin: 1.2rem 0 2rem;
  padding-left: 1.8rem;
}

.privacy-container ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d8;
  margin-bottom: 0.8rem;
  position: relative;
}

.privacy-container ul li::before {
  content: "•";
  color: #ef4343;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
  font-size: 1.6rem;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-section {
    padding: 4rem 1.5rem 6rem;
  }
  .privacy-container h1 {
    font-size: 2.6rem;
  }
  .privacy-container h2 {
    font-size: 1.8rem;
  }
}

/* ============================================================================
   Benefits Page
============================================================================ */
.benefits-hero {
  padding: 6rem 2rem 0rem;
  text-align: center;
}
.benefits-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3.2rem;
}
.benefits-hero-content .highlight-san {
  color: #ef4343;
}
.benefits-hero-content .intro-desc {
  font-size: 1.4rem;
  color: #a0a0b0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.benefits-section {
  padding: 2rem 2rem 6rem;
}
.benefits-container {
  max-width: 1300px;
  margin: 0 auto;
}
.benefit-block {
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
      margin-top: -12.5%;
}
.benefit-block h2 {
  font-size: 2.4rem;
  color: #ef4343;
  margin-bottom: 1.4rem;
  text-align: center;
}
.benefit-block p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #a0a0b0;
  text-align: center;
    margin-bottom: 10%;
}
.milestone-highlights {
  margin-top: 2rem;
  padding: 1.8rem;
}
.milestone-highlights h3 {
  font-size: 1.8rem;
  color: #ef4343;
  margin-bottom: 1.2rem;
  text-align: center;
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
      margin-top: -7.5%;
        max-width: 1300px;
}
.milestone-item {
background: #15161f94;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
  border: 1px solid #2a2b38;
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.milestone-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* Updated wagered layout - amount on top, "wagered" below */
.milestone-wager {
  margin-bottom: 1rem;
}
.wager-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #e0e0e8;
  line-height: 1;
}
.wager-label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #a0a0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}
.milestone-reward {
  font-size: 1.15rem;
  color: #d0d0d8;
  line-height: 1.7;
}
.milestone-reward .casino {
  font-weight: 500;
}
.milestone-reward .casino.cases {
  color: #2596be;
}
.milestone-reward .casino.clash {
  color: #ffa510;
}
.milestone-reward .casino.juice {
  color: #e88108;
}
.currency-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.claim-info {
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: center;
  color: #a0a0b0;
}
.claim-info a {
  color: #ef4343;
  text-decoration: underline;
}

/* Combined Stream + VIP rectangular block */
.combined-benefits {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}
.combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.combined-column {
  padding: 2.8rem 2.4rem;
background: #15161f94;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
.stream-column {
  border-right: 1px solid #1e1f2a;
}
.vip-column {
background: #15161f94;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
.combined-column h2 {
  font-size: 2.3rem;
  color: #e0e0e8;
  margin-bottom: 1.5rem;
  text-align: center;
}
.combined-column p {
  text-align: left;
  font-size: 1.12rem;
  line-height: 1.75;
      text-align: center;
}
.combined-column .small-note {
  text-align: left;
  font-size: 1rem;
  margin-top: 1.2rem;
      text-align: center;
}
.combined-column .vip-requirements {
  list-style: none;
  margin: 1.4rem 0 2rem;
  padding-left: 0;
  font-size: 1.18rem;
  line-height: 2;
  text-align: center;
}
.combined-column .vip-requirements li {
      text-align: center;
}
.combined-column .vip-requirements li::before {
  content: "★ ";
  color: #ef4343;
}
.combined-column .vip-perks {
  font-size: 1.32rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 1.6rem 0;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .combined-grid {
    grid-template-columns: 1fr;
  }
  .stream-column {
    border-right: none;
    border-bottom: 1px solid #1e1f2a;
  }
  .combined-column {
    padding: 2.4rem 2rem;
  }
}
@media (max-width: 768px) {
  .benefits-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: -7rem;
  }
  .benefits-hero {
    padding: 4rem 1.5rem 3rem;
  }
  .benefit-block {
    padding: 2rem 1.5rem;
  }
  .wager-amount {
    font-size: 2.4rem;
  }
}

/* ============================================================================
   Store Page
============================================================================ */

.store-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
}

.store-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.store-subtitle {
  font-size: 1.4rem;
  color: #a0a0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.store-section {
  padding: 1rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.store-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.search-container {
  flex: 1;
  min-width: 280px;
}

.store-search {
  width: 100%;
  padding: 0.95rem 1.4rem;
background: #15161f94;
backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  border: 1px solid #2a2b38;
  border-radius: 10px;
  color: #e0e0e8;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.store-search:focus {
  border-color: #ef4343;
  box-shadow: 0 0 0 3px rgba(239, 67, 67, 0.15);
}

.sort-container {
  min-width: 220px;
  position: relative;
}

.store-sort {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 1.2rem;
  padding-right: 2.5rem;           /* ← space for arrow + padding from right edge */
background: #15161f94;
backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  border: 1px solid #2a2b38;
  border-radius: 10px;
  color: #e0e0e8;
  font-size: 1.05rem;
  cursor: pointer;
  appearance: none;
}

/* Custom arrow with space from right edge */
.store-sort::-ms-expand {
  display: none;
}

.store-sort:after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #a0a0b0;
  font-size: 0.9rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* smaller cards → ~4 per row on wide screens */
  gap: 1.8rem;
}

.store-item-card {
background: #15161f94;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
  border: 1px solid #1e1f2a;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.store-item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.item-image-container {
  padding: 1.8rem 1.2rem 0.8rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;           /* ← removed background color */
}

.item-emoji {
  font-size: 7.5rem;                 /* slightly smaller to fit reduced card size */
  line-height: 1;
  user-select: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.store-item-card:hover .item-emoji {
  transform: scale(1.12) rotate(5deg);
}

.item-info {
  padding: 1.2rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.item-name {
  font-size: 1.38rem;                /* slightly smaller text */
  font-weight: 700;
  color: #e0e0e8;
  margin-bottom: 0.7rem;
}

.item-description {
  font-size: 0.98rem;
  color: #b0b0c0;
  line-height: 1.5;
  margin-bottom: 1.1rem;
  flex: 1;
      font-style: italic;
}

.item-stock {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #a0a0b0;
}

.item-stock.out-of-stock {
  color: #ef4343;
  font-weight: 600;
}

.redeem-btn {
  background: #ef4343;
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.redeem-btn:hover {
  background: #d83535;
  transform: translateY(-2px);
}

.redeem-btn.disabled {
  background: #444;
  cursor: not-allowed;
  opacity: 0.65;
}

.redeem-btn .points {
  font-weight: 900;
  color: #ffd700;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .store-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 980px) {
  .store-hero {
    padding: 5rem 1.5rem 2.5rem;
  }
  .store-hero-content h1 {
    font-size: 3.2rem;
  }
  .store-controls {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .item-emoji {
    font-size: 6.2rem;
  }
  .item-image-container {
    min-height: 120px;
    padding: 1.4rem 1rem 0.6rem;
  }
  .item-name {
    font-size: 1.32rem;
  }
}

@media (max-width: 680px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================================
   LEADERBOARDS PAGE - Layout & Title (buttons reuse index.html styles)
============================================================================ */
.lb-fullpage-section {
  padding: 5rem 2rem 8rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

/* Podium - exact mirror of index.html */
.lb-podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.lb-podium .podium-card {
  width: 300px;
  border: 1px solid #1e1f2a;
  border-radius: 12px;
  padding: 1.8rem 1.6rem 2.2rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.lb-podium .gold {
  border: 2px solid #ffd700;
  transform: scale(1.08);
  z-index: 2;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 40%, transparent 70%), #15161f1c;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
}

.lb-podium .silver { order: 1; border: 2px solid #c0c0c0;}
.lb-podium .gold   { order: 2; }
.lb-podium .bronze { order: 3;     border: 2px solid #cd7f32;}

.lb-podium .podium-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* Switches, countdown, table - reuse index classes */
.casino-switches {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.lb-countdown,
.leaderboard-table {
  position: relative;
  z-index: 3;
  margin-bottom: 3%;
}

/* Header & description */
.lb-header {
  position: relative;
  z-index: 3;
  margin: 2rem 0 4.5rem;
}

.lb-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.4rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  line-height: 1.15;
}

.lb-description {
  font-size: 1.4rem;
  color: #a0a0b0;
  margin: 1rem 0 3rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
      margin-bottom: -3%;
}

.desc-casino {
  font-weight: 600;
  transition: color 0.4s ease;
}

.desc-code {
  font-weight: 700;
  transition: color 0.4s ease;
}

/* Leaderboards-specific currency styling (isolated) */
.lb-currency-symbol {
  font-size: 3.5rem;
  font-weight: 700;
}

.lb-currency-icon {
  height: 3.2rem;
  width: auto;
  vertical-align: middle;
margin: 0 0.5rem 0 0;
    margin-top: -7.5px;
  
}


/* ── NEW: Smaller, cleaner reward icons & symbols ── */
.reward-currency-icon {
  width:          1.1em;       /* ≈ height of text — adjust to 0.9–1.2em */
  height:         1.1em;
  vertical-align: text-bottom; /* or middle / baseline — test what looks best */
  margin-bottom:  0.05em;      /* tiny nudge down if needed */
  display:        inline-block;
      margin-right: 5px;
}

.reward-currency-symbol {
  font-size:      1em;      /* slightly bigger than number but not huge */
  vertical-align: baseline;
  font-weight:    700;
}

/* Container for reward value */
.reward-amount {
  display:        inline-flex;
  align-items:    center;
  gap:            0.18em;
  white-space:    nowrap;
  line-height:    1.1;         /* tighter line height helps */
}

/* Size differentiation */
.podium-card .reward-amount {
  font-size:      1.5rem;      /* bigger on podium */
  font-weight:    700;
}

.leaderboard-table .reward-amount {
  font-size:      1.05rem;     /* normal table size */
  font-weight:    500;
}

/* Optional: make - look consistent */
.leaderboard-table td:last-child {
  text-align:     center;
  font-weight:    normal;
  color:          #b0b0c0;
}

/* ── Header Profile (logged-in state) ── */
.auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-user-profile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.header-profile-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #555;
  background-color: #222;
  transition: border-color 0.2s ease;
}

.header-profile-avatar:hover {
  border-color: #888;
}

.header-profile-details {
  text-align: right;
}

.header-profile-username {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.2;
}

.header-profile-points {
  font-size: 13px;
  color: #bbbbbb;
  font-weight: 400;
  line-height: 1.1;
}

/* Dropdown */
.header-profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
    background-color: #0e0e0e94;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  min-width: 160px;
  padding: 6px 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
}

.header-profile-dropdown.active {
  display: block;
}

.header-profile-dropdown-item {
  display: block;
  padding: 10px 18px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}

.header-profile-dropdown-item:hover {
  background-color: #2c2c2c;
  color: #ffffff;
}

.header-profile-dropdown-item.logout {
  color: #ff6b6b;
}

.header-profile-dropdown-item.logout:hover {
  background-color: #3f1f1f;
  color: #ff8a8a;
}

/* Responsive */
@media (max-width: 768px) {
  .header-profile-details {
    display: none;
  }
  .header-user-profile {
    gap: 8px;
  }
  .header-profile-avatar {
    width: 38px;
    height: 38px;
  }
}

/* Settings Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
    background: #1818189c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 12px;
  width: 90%;
  max-width: 580px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  color: #eee;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

.settings-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.modal-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #444;
}

.modal-user-info h2 {
  margin: 0;
  font-size: 28px;
  color: #fff;
}

.modal-user-info p {
  margin: 6px 0 0;
  color: #bbb;
  font-size: 15px;
}

.settings-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.settings-section h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #ddd;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #ccc;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 6px;
    background: #181818d9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
  color: #eee;
  font-size: 15px;
}

.form-group input::placeholder {
  color: #777;
}

.save-settings-btn {
  display: block;
  margin: 32px auto 0;
  padding: 14px 40px;
  background: #ef4343;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.save-settings-btn:hover {
  background: #c12f2f;
}

/* Locked / already-set casino ID fields */
.locked-field {
    background-color: #121212 !important;
    color: #aaaaaa !important;
    border-color: #444 !important;
    cursor: not-allowed !important;
    opacity: 0.5;
    pointer-events: none;                   /* prevents focus/typing attempts */
}

.locked-field:focus,
.locked-field:active {
    outline: none;
    box-shadow: none;
}

/* Make sure the cursor stays not-allowed even on hover/focus */
.locked-field:hover,
.locked-field:focus,
.locked-field:active {
    cursor: not-allowed !important;
}

/* Optional: small lock icon at the end of the field */
.form-group {
    position: relative;
}

.locked-field + .lock-icon::after {     /* or use ::after on .form-group if you prefer */
    content: "🔒 Already linked";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5555aa;
    font-size: 0.85em;
    pointer-events: none;
    background: rgba(0,0,0,0.4);
    padding: 2px 6px;
    border-radius: 4px;
}

/* If you want the icon only on locked fields, add this class via JS too */
.locked-field.lock-icon::after { ... }  /* adjust selector as needed */

/* ============================================================================
   Continuous left-to-right shimmer - no snap, truly seamless
============================================================================ */

.bg-glow-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1.5;
  overflow: hidden;
  background: 
    /* Layer 1 */
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.12) 45%,
      rgba(245, 245, 255, 0.25) 52%,
      rgba(255, 255, 255, 0.08) 60%,
      transparent 70%
    ),
    /* Layer 2 - slightly different timing/peak */
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(240, 245, 255, 0.15) 40%,
      rgba(230, 240, 255, 0.30) 52%,
      transparent 65%
    ),
    /* Layer 3 - warmer hint */
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 250, 240, 0.10) 48%,
      rgba(255, 245, 230, 0.22) 58%,
      transparent 70%
    );
  background-size: 
    300% 100%,   /* make each "cycle" wide enough → adjust if needed */
    350% 100%,
    400% 100%;
  background-position: 0% 0;
  background-repeat: repeat-x;   /* crucial for continuity */
  filter: blur(60px) brightness(1.6) contrast(1.3);
  mix-blend-mode: overlay;
  animation: shimmer-flow 18s linear infinite;   /* longer duration = slower/more dreamy */
}

@keyframes shimmer-flow {
  0% {
    background-position: 0% 0, 0% 0, 0% 0;
  }
  100% {
    background-position: -200% 0, -250% 0, -300% 0;   /* move more than one full cycle */
  }
}

.floating-kick-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;                /* small preview size – try 280–360px */
  height: 200px;               /* ~16:10 or 16:9 feel */
  z-index: 9999;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background: #0f0f0f;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.floating-kick-player:hover {
  width: 420px;
  height: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.player-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;     /* so clicks go through to player controls if needed */
}

.player-header span {
  pointer-events: auto;
}

.close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.close-btn:hover {
  background: rgba(255,80,80,0.8);
}

.floating-kick-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Mobile adjustments (phones, up to ~767px) === */
@media (max-width: 767px) {

  /* ── From first set: hide logo, hide icons, horizontal nav, remove floats ── */
  .logo img {
    display: none;
  }

  .nav-icon {
    display: none !important;
  }

  .float-img {
    display: none !important;
  }

  .header-container {
    height: auto;
    padding: 1rem 1.2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav {
    position: static;
    transform: none;
    left: auto;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.2rem;
    padding: 0.4rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
    flex-shrink: 1;
  }

  .auth {
    gap: 12px;
  }

  .header-user-profile {
    gap: 8px;
  }

  .header-profile-avatar {
    width: 34px;
    height: 34px;
  }

  /* ── From second set: show profile text, prevent content overlap, tighter spacing ── */
  .header-profile-details {
    display: block !important;
    text-align: left;
  }

  .header-profile-username {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-profile-points {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
  }

  .header-user-profile {
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
  }

  .header-profile-avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }


  .hero {
    padding-top: 5rem;
    min-height: 70vh;
  }

  .benefits-hero,
  .privacy-section,
  .tos-section,
  .store-hero {
    padding-top: 6rem;
  }

  /* Reduce vertical gap after explore-desc */
  .hero-content {
    margin-bottom: 1rem;
  }

  .explore-desc {
    margin-bottom: -5rem;
    line-height: 1.45;
  }

  .explore-desc + * {
    margin-top: 0.5rem !important;
  }

  .use-code {
    margin-bottom: 0.8rem;
  }

  .hero-promo-text {
    margin-top: 1.2rem;
  }
}

/* ── Very small phones (~480px and below) ── */
@media (max-width: 480px) {

  .main-nav {
    gap: 0.9rem;
  }

  .nav-item {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
  }

  .header-container {
    padding: 0.9rem 1rem;
  }

  .use-code {
    font-size: 1.9rem;
  }

  .explore-desc {
    font-size: 0.98rem;
    margin-bottom: 0.9rem;
  }

  .header-profile-username {
    font-size: 13px;
    max-width: 110px;
  }

  .header-profile-points {
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────
   Podium: horizontal on desktop, vertical on mobile
   with Gold always first (top on mobile)
   ──────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Switch to vertical stacking on mobile */
  .podium,
  .lb-podium {
    flex-direction: column !important;       /* ← vertical instead of row */
    align-items: center;                     /* center each card horizontally */
    justify-content: center;
    gap: 1.8rem;                             /* nice vertical spacing between cards */
    margin-bottom: 3rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  /* Reorder so Gold is first (top), then Silver, then Bronze */
  .podium-card.gold,
  .lb-podium .podium-card.gold {
    order: -2 !important;                    /* comes first = top */
  }

  .podium-card.silver,
  .lb-podium .podium-card.silver {
    order: -1 !important;
  }

  .podium-card.bronze,
  .lb-podium .podium-card.bronze {
    order: 0 !important;
  }

  /* Make cards full-width-ish on mobile for better readability */
  .podium-card,
  .lb-podium .podium-card {
    width: 90%;                              /* or 100% if you prefer edge-to-edge */
    max-width: 360px;                        /* don't let them get too wide */
    min-width: 280px;
    margin: 0 auto;                          /* center each card */
    padding: 1.4rem 1.2rem 2rem;             /* a bit more comfortable padding */
  }

  /* Gold still stands out (slightly larger / more prominent) */
  .podium-card.gold,
  .lb-podium .gold {
    transform: scale(1.08);
    z-index: 2;
    margin-bottom: 2rem;                     /* extra breathing room after gold */
  }

  /* Slightly smaller profile pics & text on mobile vertical layout */
  .podium-card .profile-pic {
    width: 80px;
    height: 80px;
  }

  .podium-card.gold .profile-pic {
    width: 96px;
    height: 96px;
  }

  .podium-card .username {
    font-size: 1.35rem;
  }

  .podium-card .reward-amount,
  .podium-card .amount {
    font-size: 1.9rem;
  }

  /* Optional: reduce podium card shadows/margins if it feels too spaced */
  .podium-card {
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
}

/* Optional: fine-tune for very small phones */
@media (max-width: 480px) {

  .podium,
  .lb-podium {
    gap: 1.6rem;
  }

  .podium-card,
  .lb-podium .podium-card {
    width: 95%;
    max-width: 340px;
    padding: 1.2rem 1rem 1.8rem;
  }

  .podium-card.gold {
    transform: scale(1.05);
  }

  .podium-card .profile-pic {
    width: 72px;
    height: 72px;
  }

  .podium-card.gold .profile-pic {
    width: 88px;
    height: 88px;
  }

  .podium-card .username {
    font-size: 1.25rem;
  }

  .podium-card .reward-amount {
    font-size: 1.7rem;
  }
}

/* Countdown timer fixes for mobile - make it fit, centered, scaled down */
@media (max-width: 767px) {

  .countdown {
    margin: 2rem auto 3rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  .timer {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .timer-digits {
    gap: 0.6rem;
    justify-content: center;
  }

  .timer-group {
    width: auto;                    /* remove fixed width */
    gap: 0.35rem;
    min-width: 0;
  }

  .digit-box {
    width: 42px;                    /* smaller digits */
    height: 58px;
    font-size: 2.4rem;
    border-radius: 8px;
    border-width: 1.5px;
  }

  .colon {
    font-size: 2.2rem;
    min-width: 14px;
    line-height: 1;
  }

  /* Timer labels - constrain width and center better */
  .timer-labels {
    width: 100%;
    max-width: 260px;               /* prevents stretching too wide */
    gap: 0;
    justify-content: space-between;
  }

  .timer-labels span {
    width: auto;
    flex: 1;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-align: center;
  }
}

/* Extra squeeze for very small phones */
@media (max-width: 480px) {

  .digit-box {
    width: 38px;
    height: 54px;
    font-size: 2.1rem;
  }

  .colon {
    font-size: 2rem;
    min-width: 12px;
  }

  .timer-labels {
    max-width: 220px;
  }

  .timer-labels span {
    font-size: 0.82rem;
  }
}


/* ============================================================================
   Minimal Mobile Footer: Hide branding + FORCED horizontal two-column layout
============================================================================ */

@media (max-width: 767px) {

  /* Hide logo, brand text, and copyright */
  .footer-logo,
  .footer-logo span,
  .copyright {
    display: none !important;
  }

  footer {
    padding: 2rem 1.5rem 1.5rem;
    margin-top: -25rem;           /* your requested value */
  }

  .footer-container {
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
  }

  .footer-left {
    display: none !important;   /* empty now anyway */
  }

  /* ─── Force .footer-right to behave as horizontal container ─── */
  .footer-right {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: row !important;         /* must be row */
    flex-wrap: nowrap !important;           /* prevent early wrapping */
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }

  /* Make columns behave nicely side-by-side */
  .footer-column {
    flex: 1 1 45% !important;               /* grow + shrink, target ~half each */
    max-width: 48% !important;              /* prevent overflow */
    min-width: 0 !important;                /* allow shrinking below content size */
    box-sizing: border-box !important;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-column ul {
    padding-left: 0;
  }

  .footer-column a {
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 0;
  }

  /* Fallback: if screen is really narrow (< ~480–500px), stack them */
  @media (max-width: 520px) {
    .footer-right {
      gap: 2.5rem !important;
    }
    .footer-column {
      max-width: 100% !important;
      flex: 1 1 100% !important;
    }
  }
}

/* ============================================================================
   Center floating Kick player on mobile / small screens
============================================================================ */

@media (max-width: 767px) {  /* Phones & small tablets — common breakpoint; covers ~90%+ of mobiles in 2026 (360–430px wide viewports) */

  .floating-kick-player {
    /* Center horizontally */
    left: 50% !important;
    right: auto !important;          /* override the original right: 20px */
    transform: translateX(-50%);     /* key: centers based on element's own width */

    /* Optional mobile tweaks for better fit/touch */
    bottom: 35px;                    /* slightly less margin from bottom edge */
    width: 90vw;                     /* fluid width: takes most of screen but leaves breathing room */
    max-width: 360px;                /* don't get too wide on bigger phones */
    height: 56.25vw;                 /* maintain ~16:9 aspect if you want (or keep fixed 200px) */
    max-height: 240px;
    border-radius: 16px;             /* softer corners on mobile */
    box-shadow: 0 10px 30px rgba(0,0,0,0.7); /* deeper shadow for floating feel */
  }

  .floating-kick-player:hover {
    /* Optional: reduce/enhance hover effect on touch devices (hover is less relevant on mobile) */
    width: 94vw;
    max-width: 380px;
    height: 58vw;
    max-height: 260px;
  }

  /* Make close button bigger/easier to tap on mobile */
  .close-btn {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  /* Optional: reduce header font for small screens */
  .player-header {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Extra-small phones (very narrow, e.g. <400px) – make even more compact if needed */
@media (max-width: 400px) {
  .floating-kick-player {
    width: 94vw;
    height: 52vw;   /* tighter aspect */
    bottom: 12px;
  }
}

/* ============================================================================
   Leaderboard section – Responsive negative margin
============================================================================ */

/* Desktop/large screens keep your original -11.5% */
.leaderboard-section {
  margin-top: -12rem;   /* this is already in your code – no need to repeat unless you want to change it */
}

/* Phones & small tablets – override ONLY the margin-top */
@media (max-width: 767px) {   /* ← classic mobile breakpoint; change to 900px / 1024px if you want tablets included */

  .leaderboard-section {
    margin-top: -3rem;          /* ← your new value for mobile – adjust this number */
    /* Optional common mobile improvements (add only if needed) */
    padding: 2rem 1.5rem 4rem;   /* less side/bottom padding */
  }
}

/* Optional: even smaller phones – make negative margin smaller or zero */
@media (max-width: 480px) {
  .leaderboard-section {
        margin-top: -3rem;     /* or -3rem, -20px, 0 — whatever looks best */
  }
}

/* ============================================================================
   VIP Program Details (new section below combined grid)
============================================================================ */
.vip-details-section {
  padding: 4rem 2rem;
}
.vip-details-container {
  max-width: 1800px;          /* or 1600px–2000px — test what looks balanced */
  margin: 0 auto;
  width: 100%;                /* makes sure it can expand fully */
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
.vip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.vip-card {
background: #15161f94;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
  border: 1px solid #252636;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ef4343, #c9302c);
  opacity: 0.7;
}
.vip-card h3 {
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-align: center;
  letter-spacing: 0.5px;
  font-style: italic;
}
.vip-card h4 {
  font-size: 1.35rem;
  color: #ef4343;
  margin: 1.6rem 0 0.9rem;
  font-weight: 600;
}
.vip-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #d0d0d8;
}
.vip-card ul li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.5rem;
}
.vip-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ef4343;
  font-weight: bold;
}
.vip-card .qualification ul li::before {
  content: "✓";
  color: #4ade80;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .vip-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 600px) {
  .vip-card h3 {
    font-size: 1.75rem;
  }
  .vip-card {
    padding: 1.6rem 1.4rem;
  }
}

/* ============================================================================
   Casino-specific colors for VIP card headers
============================================================================ */

/* Reuse existing milestone colors where possible + your requested Shock color */
.vip-card h3.shock {
  color: #0559f3;           /* Shock.com - bright blue as requested */
}

.vip-card h3.clash {
  color: #ffa510;           /* Matches .casino.clash */
}

.vip-card h3.cases {
  color: #2596be;           /* Matches .casino.cases */
}

.vip-card h3.juice {
  color: #e88108;           /* Matches .casino.juice */
}

/* Optional: slight hover enhancement on the colored titles */
.vip-card:hover h3 {
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

/* Video background - full screen, behind everything */
.video-bg {
  position: fixed;
  inset: 0;                    /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;           /* scales to cover screen, may crop edges */
  z-index: -3;                 /* behind glow layer and content */
  pointer-events: none;        /* clicks go through to content */
  opacity: 0.25;  /* ← Reduced from 0.35—try 0.2 or 0.3 for even subtler effect */

mix-blend-mode: color-dodge;
opacity: 0.28;
filter: brightness(1.8) contrast(2.4) saturate(3);
}

/* Optional: make it cover better on mobile / different aspect ratios */
@media (max-aspect-ratio: 1/1) {
  .video-bg {
    object-fit: contain;       /* or experiment with cover vs contain */
  }
}