/* ============================================================================
   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;
}
/* 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: #0d0e14;
  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;
}
.signin-btn:hover {
  background-color: #d83535;
}

/* ============================================================================
   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: #15161f;
  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: -13.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: #1e1f2a;
  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;
  background: #15161f;
  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%
  ), #15161f;
}
.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%
  ), #15161f;
}
.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%
  ), #15161f;
}
.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: #0d0e14;
  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: #15161f;
  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;
}

.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;
}

.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: 1.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: 1100px;
  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%;
}
.milestone-item {
  background: #1e1f2a;
  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: #15161f;
}
.stream-column {
  border-right: 1px solid #1e1f2a;
}
.vip-column {
  background: linear-gradient(to right, #15161f, #181a28);
}
.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;
  }
  .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: #1e1f2a;
  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: #1e1f2a;
  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: #15161f;
  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;
  background: #15161f;
  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;
}

.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%), #15161f;
}

.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;
}