* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', 'Roboto', sans-serif;
  background: linear-gradient(90deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative; /* Required for the pseudo-element positioning */
}

body::before {
  content: "";
  position: fixed; /* Keeps background fixed while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1; /* Your desired opacity */
  z-index: -1;  /* Places it behind all other content */
  pointer-events: none; /* Ensures it doesn't interfere with clicks */
}


header, footer {
background: rgb(10 10 10 / 30%);
  backdrop-filter: blur(12px);
  border-top: 1px solid #222;
  z-index: 1000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
}

footer {
  padding: 60px 5% 40px;
  border-top: 1px solid #222;
}

.header-container, .footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  min-width: 260px;
  gap: 12px;
}

.logo-img-header {
  height: 52px;
  width: auto;
  display: block;
}

.logo-text {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #00e5ff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease;
      margin-bottom: 4px;
}

.nav-links a:hover {
  color: #b3faff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: #00e5ff;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-icon {
  width: 24px;
  height: 24px;
filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(2000%) hue-rotate(160deg) brightness(100%) contrast(105%);
  transition: filter 0.25s ease;
}

.nav-links a:hover .nav-icon {
filter: brightness(0) saturate(100%) invert(90%) sepia(50%) saturate(1500%) hue-rotate(170deg) brightness(110%) contrast(105%);
}

.right-spacer {
  min-width: 260px;
}

/* ────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.copyright {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
}

.credit {
  font-size: 0.95rem;
  color: #aaa;
}

.credit a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.credit a:hover {
  color: #00e5ff;
}

.blessings {
  font-size: 1rem;
  color: #888;
}

.footer-nav {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-menu-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.footer-menu a {
  color: #00e5ff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-menu a:hover {
  color: #b3faff;
}

/* ────────────────────────────────────────
   Main content
───────────────────────────────────────── */
main {
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 5% 80px;
}

.side-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.side-img {
  position: absolute;
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  will-change: transform;
}

#left1  { --size: 333px; --left: 14%; top: 0%; }
#left2  { --size: 200px; --left: 8%;  top: 36%; }
#left3  { --size: 200px; --left: 12%; top: 72%; }
#right1 { --size: 225px; --right: 14%; top: 5%; }
#right2 { --size: 200px; --right: 8%;  top: 36%; }
#right3 { --size: 200px; --right: 12%; top: 72%; }

.side-img { width: var(--size); }
#left1, #left2, #left3  { left: var(--left); }
#right1, #right2, #right3 { right: var(--right); }

.hero-logo-container {
  position: relative;
  margin: 10px 0 40px;
  z-index: 3;
}

.hero-logo {
  height: 480px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(0, 229, 255, 0.4));
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1.00); }
  50%      { transform: scale(1.06); }
}

#particles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 2;
}

.hero-text {
  max-width: 880px;
  padding: 0 30px;
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: -20px;
}

h1 {
  font-size: 2.6rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
  line-height: 1.1;
}

h1 span {
  color: #00e5ff;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: #9a9a9a;
  line-height: 1.5;
}

.bonuses-section {
  padding: 100px 5% 140px;
  position: relative;
}

.bonuses-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 1.5px;
}

.section-title span {
  color: #00e5ff;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;       /* Allows cards to move to the next line */
  justify-content: center; /* This centers the cards on every row */
  gap: 32px;
}

.bonus-card {
  /* Set a base width so they don't stretch too much or shrink too small */
  width: 100%;
  max-width: 420px; 
  
  /* The rest of your existing bonus-card styles... */
    background: rgb(20 20 20 / 38%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.bonus-card:hover {
  box-shadow: 0 24px 48px rgba(0, 229, 255, 0.2);
  border-color: #00e5ff44;
}

.card-banner-wrapper {
  height: 140px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  box-sizing: border-box;
}

.card-banner {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.card-content {
  padding: 28px 20px 32px;
  text-align: center;
}

.perks-list {
  list-style: none;
  margin: 0 auto 36px;
  padding: 0;
  max-width: 90%;
}

.perks-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.4;
}

.perks-list li::before {
  content: "✔";
  color: #00e5ff;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.perks-list .highlight {
  font-size: 1.28rem;
  font-weight: 600;
  color: #00e5ff;
}

.claim-btn {
  display: inline-block;
background: linear-gradient(135deg, #00e5ff, #0099ff);
color: #0f0f0f;
  color: #0f0f0f;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 14px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 179, 255, 0.25);
}

.claim-btn:hover {
  background: linear-gradient(135deg, #b3faff, #00e5ff);
  box-shadow: 0 16px 40px rgba(201, 179, 255, 0.45);
}

/* ────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2.8rem; }
  .footer-nav { gap: 50px; }
}

@media (max-width: 768px) {
  .side-img { display: none; }
  .hero-logo { height: 260px; }
  #particles { width: 260px; height: 260px; }
  h1 { font-size: 2rem; }
  .subtitle { font-size: 0.98rem; }
  main { padding-top: 100px; }
  .nav-links { gap: 40px; }
  .hero-logo-container { margin: 10px 0 30px; }
  .hero-text { margin-top: -10px; }
  .bonuses-section { padding: 80px 5% 100px; }
  .section-title { font-size: 2.4rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-banner-wrapper { height: 110px; padding: 15px 12px; }

  .header-container,
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-container {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-column {
    align-items: center;
  }

  nav {
    justify-content: center;
  }
}

/* ────────────────────────────────────────
   Terms of Service Page
───────────────────────────────────────── */
.tos-section {
  padding: 25px 5% 140px;
  position: relative;
}

.tos-container {
  max-width: 900px;
  margin: 0 auto;
}

.tos-section .section-title {
  margin-bottom: 24px;
}

.last-updated {
  color: #9a9a9a;
  font-size: 1.05rem;
  margin-bottom: 48px;
  text-align: center;
  font-weight: 400;
}

.tos-content {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #d0d0d0;
}

.tos-content h2 {
  color: #00e5ff;
  font-size: 1.55rem;
  font-weight: 600;
  margin: 48px 0 16px;
}

.tos-content p {
  margin-bottom: 1.4em;
}

@media (max-width: 768px) {
  .tos-section {
    padding: 100px 5% 100px;
  }
  .last-updated {
    margin-bottom: 36px;
  }
  .tos-content h2 {
    margin: 36px 0 12px;
  }
}

/* Leaderboards – Prize colors per casino + Dust particles */
.leaderboards-section {
  padding: 25px 5% 120px;
  position: relative;
  text-align: center;
}
.leaderboards-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#dust-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* behind content but above background */
}
.leaderboard-header {
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.header-amount {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  vertical-align: middle;
}
.currency-icon {
  height: 42px;
  width: auto;
  vertical-align: middle;
}
.casino-name {
  font-weight: 700;
}
.disclaimer-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 25px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.disclaimer-text .highlight {
  font-weight: 600;
}
.disclaimer-text .affiliate-note {
  color: #b0b0b0;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}
.casino-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.casino-tab {
  width: 250px;
  height: auto;
  background: rgba(30, 30, 30, 0.7);
  border: 2px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 20px;
  box-sizing: border-box;
}
.casino-tab img {
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.casino-tab.active,
.casino-tab:hover {
  border-color: #00e5ff;
  background: rgba(40, 40, 40, 0.9);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 179, 255, 0.22);
}
.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin: 0 0 60px;
  flex-wrap: wrap;
  position: relative;
}
.podium-item {
  text-align: center;
  width: 320px;
    background: linear-gradient(to top, #0f0f0f87 0%, rgb(25 25 25 / 24%) 60%, rgb(35 35 35 / 79%) 100%);
  border-radius: 20px;
  padding: 28px 20px 32px;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.podium-item.rank-1 {
  transform: scale(1.12) translateY(-30px);
  z-index: 10;
}
.podium-item.rank-2 {
}
.podium-item.rank-3 {
}
.podium-item:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.podium-item.rank-1:hover {
  transform: scale(1.14) translateY(-45px);
}
.podium-item.rank-2:hover,
.podium-item.rank-3:hover {
  transform: scale(1.05);
}
.podium-place-label {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.25;
  color: #ffffff;
  letter-spacing: 1px;
  pointer-events: none;
}
.podium-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background: #1a1a1a;
  border: 3px solid #2a2a2a;
}
.podium-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
}
.podium-wager-label {
  font-size: 1.05rem;
  color: #9a9a9a;
  margin-bottom: 4px;
}
.podium-wager {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 18px;
}
.podium-prize {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}
.podium-item.rank-1 .podium-prize { border-color: #ffd700; color: #ffd700; }
.podium-item.rank-2 .podium-prize { border-color: #c0c0c0; color: #c0c0c0; }
.podium-item.rank-3 .podium-prize { border-color: #cd7f32; color: #cd7f32; }
.prize-icon {
  height: 24px;
  width: auto;
}
.countdown-wrapper {
  margin: 40px 0 60px;
}
.countdown-label {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 12px;
}
#countdown {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  font-family: 'Roboto', monospace;
  transition: color 0.4s ease; /* smooth color change */
}
.leaderboard-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
    background: rgb(20 20 20 / 47%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.leaderboard-table tbody tr {
  transition: all 0.2s ease;
}
.leaderboard-table tbody tr:hover {
  background: rgba(50, 50, 50, 0.6);
  transform: translateY(-2px);
}
.leaderboard-table th,
.leaderboard-table td {
  padding: 16px 24px;
  text-align: center;
}
.leaderboard-table th {
  background: rgba(35, 35, 35, 0.9);
  color: #00e5ff;
  font-weight: 600;
  font-size: 1.15rem;
}
.leaderboard-table td {
  font-size: 1.1rem;
  color: #d0d0d0;
}
.leaderboard-table tr:last-child td {
  border-bottom: none;
}
.leaderboard-table .rank {
  font-weight: 600;
  color: #00e5ff;
}
.prize-cell {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ────────────────────────────────────────
   Responsive adjustments
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .leaderboard-header { font-size: 2.6rem; }
  .podium { gap: 28px; }
  .podium-item { width: 280px; padding: 24px 16px; }
  .podium-item.rank-1 { transform: scale(1.08) translateY(-20px); }
  .podium-avatar { width: 120px; height: 120px; }
  #countdown { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .leaderboards-section { padding: 80px 5% 80px; }
  .casino-tabs { gap: 20px; margin-bottom: 80px; }
  .casino-tab { width: 180px; }
  .podium { gap: 24px; flex-direction: column; align-items: center; }
  .podium-item { width: 90%; max-width: 320px; }
  .podium-item.rank-1 { transform: scale(1.05) translateY(-15px); }
  #countdown { font-size: 2.2rem; letter-spacing: 4px; }
  .leaderboard-table th, .leaderboard-table td { padding: 12px 16px; font-size: 1rem; }
}

/* Right-side social icons – mirror left logo style */
.right-spacer {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;     /* push to right edge */
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;                     /* space between Kick & Discord icons */
}

.social-icon-link {
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icon-link:hover {
  transform: scale(1.12);
  opacity: 0.92;
}

.social-icon {
  width: 28px;                   /* similar visual weight to header logo height ~52px */
  height: 28px;
  object-fit: contain;
    filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(2000%) hue-rotate(160deg) brightness(100%) contrast(105%);
  /* ^ same purple tint filter as your nav icons for brand consistency */
  transition: filter 0.25s ease;
}

.social-icon-link:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(2000%) hue-rotate(160deg) brightness(100%) contrast(125%);
  /* brighter/lighter purple on hover – matches nav hover */
}

/* ────────────────────────────────────────
   Mobile header: center nav only, hide logo & socials
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hide left logo + text */
  .logo-area {
    display: none;
  }

  /* Hide right social icons completely */
  .right-spacer {
    display: none;
  }

  /* Make header container stack vertically if needed, but mainly center nav */
  .header-container {
    justify-content: center;
    padding: 0 5%;
  }

  /* Center and expand the nav area */
  nav {
    flex: none;               /* stop it from being pushed by other elements */
    width: 100%;
    max-width: 420px;         /* optional: prevent it from becoming too wide on larger phones */
    margin: 0 auto;
  }

  .nav-links {
    justify-content: center;
    gap: 50px;                /* adjust spacing between Home and Leaderboards */
    width: 100%;
  }

  /* Optional: make nav icons + text a bit larger/more touch-friendly */
  .nav-links a {
    font-size: 1.25rem;
    gap: 12px;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
  }

  /* Make sure the header doesn't have unnecessary left/right padding when logo & socials are gone */
  header {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .podium {
    flex-direction: column;
    align-items: center;
    gap: 32px;          /* ← increased + made consistent */
  }

  /* Reorder: gold (#1) first (top), then silver (#2), then bronze (#3) */
  #podium-1 { order: 1; }
  #podium-2 { order: 2; }
  #podium-3 { order: 3; }

  /* Make sure gold still looks like the winner even when stacked */
  .podium-item.rank-1 {
    transform: scale(1.08) translateY(-10px); /* slightly smaller lift on mobile */
    margin-bottom: 16px; /* breathing room under gold */
  }

  .podium-item {
    width: 90%;
    max-width: 340px;   /* slightly wider cards feel better on phones */
  }
}

/* Fix Player header alignment to match left-aligned content below */
.leaderboard-table th:nth-child(2) {
  padding-left: 24px; /* matches the visual left padding of the avatar+name cells */
}

/* Change flex-direction to column to force the new line */
.leaderboard-header {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between the casino name and the word Leaderboard */
  line-height: 1.15;
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.header-amount {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  margin-bottom: 7.5px;
}

/* Optional: style the bottom word specifically */
.title-suffix {
  display: block;
  letter-spacing: 2px;
  font-size: 2.6rem; /* Slightly smaller for better hierarchy */
  color: #00e5ff;    /* Cyan accent to match your theme */
}

.currency-icon {
  height: 48px;          /* slightly larger to better match text height */
  width: auto;
  margin-top: -4px;      /* tiny nudge up if still slightly low — try -2px / -6px */
}

/* RustMagic coloring – both in header and disclaimer */
.casino-rust {
  color: #ffffff;
  font-weight: 700;
}

.casino-magic {
  color: #d80056;
  font-weight: 700;
}

#code-highlight {
  color: #00e5ff;             /* Vibrant Light Blue */
  font-weight: 800;           /* Extra bold */
  text-transform: uppercase;  /* Makes "Flow" look like a formal code */
}

.logo-area {
  display: flex;
  align-items: center;          /* vertically centers image with the text block */
  gap: 12px;                    /* keep your original spacing */
  min-width: 260px;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;       /* stacks Flow and USE CODE FLOW vertically */
  justify-content: center;      /* helps vertical balance */
  line-height: 1.15;            /* tighter line spacing between the two texts */
}

.logo-text {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

.promo-code-text {
  font-size: 0.78rem;           /* noticeably smaller than main Flow text */
  font-weight: 500;
  color: #aaaaaa;               /* muted gray for "USE CODE ..." */
  letter-spacing: 0.8px;
  white-space: nowrap;
  margin-top: 2px;              /* tiny breathing room between lines */
}

.promo-code-text .code-highlight {
  color: #00e5ff;               /* your accent cyan/blue */
  font-weight: 700;
  letter-spacing: 1.2px;
}

/* Optional: subtle hover for the whole promo line */
.logo-text-wrapper:hover .promo-code-text {
  color: #cccccc;
}

.logo-text-wrapper:hover .code-highlight {
  color: #b3faff;               /* matches your other hover states */
}

/* ────────────────────────────────────────
   Mobile header: hide logo + text completely, center nav only
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hide the entire left logo area (image + both text lines) */
  .logo-area {
    display: none !important;
  }

  /* Also make sure the wrapper doesn't cause any ghost space */
  .logo-text-wrapper {
    display: none;
  }

  /* Force header container to center its only remaining child (nav) */
  .header-container {
    justify-content: center;
    padding: 0 5%;
  }

  /* Remove any forced min-width that might push things */
  .right-spacer {
    display: none;           /* already in your code – just confirming */
  }

  /* Make nav take natural space and stay centered */
  nav {
    flex: none;
    width: auto;
    max-width: 420px;        /* prevents it from stretching too wide on big phones */
    margin: 0 auto;
  }

  .nav-links {
    justify-content: center;
    gap: 50px;               /* nice spacing between Home and Leaderboards */
    width: 100%;
    max-width: 380px;        /* optional – keeps it compact */
  }

  /* Slightly larger tap targets on mobile */
  .nav-links a {
    font-size: 1.22rem;
    gap: 10px;
    padding: 6px 10px;       /* optional: bigger touch area */
  }

  .nav-icon {
    width: 26px;
    height: 26px;
  }

  /* Remove unnecessary padding around header content */
  header {
    padding: 0;
  }
}