/* ===== Base / existing ===== */
:root {
  --page-max: 1920px; /* give enough width for 5x 320px + gaps */
  --gap: 40px;
}

/* container for all sections */
.tiers {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 32px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* generic grid */
.tier-grid {
  display: grid;
  gap: var(--gap);
  align-items: start;
  justify-content: center; /* center the fixed-width columns */
}

/* exactly 3 across (Core: Bronze/Silver/Gold) */
.tier-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: 120px; 
}


/* exactly 5 across (Platinum/Diamond) */
.tier-grid.five {
  grid-template-columns: repeat(5, 320px);
}

/* keep your card size */
.card-wrap { width: 320px; height: 400px; }

/* responsive fallbacks (optional) */
@media (max-width: 1750px) {
  .tier-grid.five { grid-template-columns: repeat(4, 320px); }
}
@media (max-width: 1400px) {
  .tier-grid.five { grid-template-columns: repeat(3, 320px); }
  .tier-grid.three { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}
@media (max-width: 980px) {
  .tier-grid.five { grid-template-columns: repeat(2, 320px); }
  .tier-grid.three { grid-template-columns: repeat(2, 320px); }
}
@media (max-width: 700px) {
  .tier-grid.five,
  .tier-grid.three { grid-template-columns: 320px; }
}

.header {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0px;
    background-color: #101010;
    position: fixed;
    width: 100%;
    height: 100px; 
    top: 0;
    left: 0;
    z-index: 1000;
}


.logo {
    position: absolute; /* Position the logo absolutely */
    left: 20px; /* Adjust this value as needed */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100; /* Ensure the logo is above other elements */
}

.logo img {
    height: 100px; /* Adjust this value to your desired height */
    width: auto;
}

.nav {
    flex-grow: 1; /* Allow the nav to take available space */
    display: flex;
    justify-content: center; /* Center the nav content */
    z-index: 1000;
   
}

.nav a.nav-red  { color: #ff2b2b; }   /* Points Store */
.nav a.nav-blue { color: #2a4bdf; }   /* Shock Rewards */

.txtt {
    background: linear-gradient(to right, #2a75ff, #014bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* shock logo in nav */
.shock-logo {
  width: 22px;                 /* adjust size as needed */
  height: auto;
  margin-left: 6px;            /* small gap from text */
  vertical-align: middle;
  transform: translateY(-1px); /* nudges it visually centered */
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover .shock-logo {
  opacity: 1;
  transform: translateY(-1px) scale(1.05);
}

.nav a {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-right: 35px;
  text-decoration: none;
  color: #2a4bdf;   
         
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 45%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: #014bd4;
    border-radius: 2px;
    
}

.nav a:hover {
    filter: brightness(1.3);
}

.gradient {
    background: linear-gradient(to right, #2a75ff, #014bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

html {
  scroll-behavior: smooth;

  
}

body {
   font-family: "Poppins", sans-serif;
  font-weight: 500;
  background: #101010;
  color: #fff;
  margin: 0;
  min-height: 100vh;

  
  
}

/* ===== Sticky tier nav ===== */
.tier-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(18, 22, 26, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-nav a {
  color: #cfd6e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 8px;
}

.tier-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Sections / headers ===== */
.tiers {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 32px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tier {
  scroll-margin-top: 72px; /* offset for sticky nav */
}

.tier-heading {
  text-align: center;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #d7d7d7;
  opacity: .95;
}

.back-to-top {
  display: inline-block;
  margin-top: 18px;
  color: #a9c7ff;
  text-decoration: none;
  font-size: 13px;
}
.back-to-top:hover { text-decoration: underline; }

/* ===== Grids ===== */
.tier-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
  justify-items: center;
}

.tier-grid.single {
  grid-template-columns: 1fr;
}

/* ===== Your existing card styles (kept) ===== */

.card-wrap {
  position: relative;
  width: 320px;
  height: 400px;
}

.rank-glow {
  position: absolute;
  inset: 0;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  background: radial-gradient(circle at top left, #1c77ff88 10%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 1;
  pointer-events: none;
}

.corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid #1c77ff;
  border-left: 2px solid #1c77ff;
  border-top-left-radius: 60px;
  filter: drop-shadow(0 0 6px #1c77ff) drop-shadow(0 0 18px rgba(28,119,255,0.6));
}

.corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 6px solid #1c77ff;
  border-bottom: 6px solid #1c77ff;
  border-bottom-right-radius: 60px;
  filter: drop-shadow(0 0 20px #1c77ff) drop-shadow(0 0 10px rgba(28,119,255,0.6));
}

.card {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 400px;
  background: #12161a;
  border-radius: 6px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: visible;
}

.rank-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  isolation: isolate;
}

.rank-image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  filter:
    drop-shadow(0 0 2px  #1c77ff)
    drop-shadow(0 0 50px rgba(28,119,255,0.6))
    drop-shadow(0 0 100px rgba(28,119,255,0.4));
}

.rank-line {
  position: absolute;
  top: 60px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 15px;
  color: #a5a3a3;
  font-weight: 500;
}
.rank-line::before,
.rank-line::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 0.5px;
  background: #ffffff50;
  vertical-align: middle;
}

.wager-box {
  position: absolute;
  top: 100px;
  left: 15px;
  right: 15px;
  background: #020d18;
  border: 1px solid #1c77ff;
  border-radius: 2px;
  padding: 10px 0;
  text-align: center;
}

.wager-title { color: #a5a3a3; font-size: 12px; letter-spacing: 1px; margin-bottom: 5px; }
.wager-value { color: #fff; font-size: 18px; }

.reward-box {
  position: absolute;
  top: 190px;
  left: 15px;
  right: 15px;
  background: #020d18;
  border: 1px solid #1c77ff;
  border-radius: 2px;
  padding: 10px 0;
  text-align: center;
}
.reward-title { color: #a5a3a3; font-size: 12px; letter-spacing: 1px; margin-bottom: 5px; }
.reward-value { color: #fff; font-size: 18px; }

.claim-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  font-size: 14px;
  padding: 14px 28px;
  background: #0343a3;
  border: 2px solid transparent;
  border-radius: 6px;
  color: #12161a;
  font-weight: 1000;
  cursor: pointer;
  transition: 0.3s;
}


.claim-btn i { vertical-align: middle; position: relative; bottom: 2px; }
.claim-btn:hover { border: 2px solid #0343a3; background: transparent; color: white; }

/* Optional popup (unchanged) */
.popup { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; z-index: 999; }
.popup-content { position: relative; background: #102b46; padding: 20px; border-radius: 8px; width: 300px; text-align: center; color: white; }
.close-btn { position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 20px; }

/* ===== Responsive tweaks ===== */
@media (max-width: 640px) {
  .tier-nav { gap: 10px; padding: 10px 8px; }
  .tier-nav a { font-size: 13px; padding: 6px 8px; }
}


/* Per-rank variables + overrides */
.card-wrap {
  /* keep existing layout styles here... */
  /* We'll use CSS variables to let each rank override the accent color easily */
  --accent: #1c77ff;           /* default/blue (existing) */
  --accent-glow: rgba(0, 0, 0, 0.45);
  --accent-strong: #1c77ff;
}

/* Bronze */
.card-wrap.rank-bronze {
  --accent: #b46a17;
  --accent-glow: rgba(0, 0, 0, 0.5);
  --accent-strong: #c57a2a;
}

/* Silver */
.card-wrap.rank-silver {
  --accent: #bfc3c8;
  --accent-glow: rgba(0, 0, 0, 0.45);
  --accent-strong: #d7dbe0;
}

/* Gold */
.card-wrap.rank-gold {
  --accent: #f5c542;
  --accent-glow: rgba(0, 0, 0, 0.45);
  --accent-strong: #ffcc33;
}

/* Platinum (cyan-ish) */
.card-wrap.rank-platinum {
  --accent: #34d1d6;
  --accent-glow: rgba(0, 0, 0, 0.45);
  --accent-strong: #00d3d9;
}

/* Diamond (purple) */
.card-wrap.rank-diamond {
  --accent: #a78bfa;
  --accent-glow: rgba(0, 0, 0, 0.45);
  --accent-strong: #9b59ff;
}

/* Elite (royal gold / magenta tint) */
.card-wrap.rank-elite {
  --accent: #1c77ff;;
  --accent-glow: #000000;
  --accent-strong: #1c77ff;;
}

/* ---------- apply those variables to the visual pieces ---------- */

/* Glow behind the card */
.card-wrap .rank-glow {
  /* keep existing positioning and radius */
  background: radial-gradient(circle at top left,
                              var(--accent) 10%,
                              transparent 60%),
              radial-gradient(circle at bottom right,
                              var(--accent-glow) 2%,
                              transparent 60%);
  filter: blur(36px);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

/* Corner accents */
.card-wrap .corner--tl {
  border-top: 2px solid var(--accent-strong);
  border-left: 2px solid var(--accent-strong);
  filter: drop-shadow(0 0 6px var(--accent-strong)) drop-shadow(0 0 18px var(--accent-glow));
}

.card-wrap .corner--br {
  border-right: 6px solid var(--accent-strong);
  border-bottom: 6px solid var(--accent-strong);
  filter: drop-shadow(0 0 20px var(--accent-strong)) drop-shadow(0 0 10px var(--accent-glow));
}

/* Badge image glow / larger colored shadows */
.card-wrap .rank-image {
  filter:
    drop-shadow(0 0 2px var(--accent-strong))
    drop-shadow(0 0 48px var(--accent-glow))
    drop-shadow(0 0 90px rgba(0,0,0,0)); /* keep layout stable */
}

/* Make the wager/reward border use the rank accent */
.card-wrap .wager-box,
.card-wrap .reward-box {
  border: 1px solid var(--accent-strong);
  background: linear-gradient(180deg, rgba(2,13,18,0.8), rgba(2,13,18,0.6));
}

/* Tweak claim button accent (optional) */
.card-wrap .claim-btn {
  background: linear-gradient(180deg, var(--accent-strong), color-mix(in srgb, var(--accent-strong) 75%, #0343a3 25%));
  border-color: transparent;
}
.card-wrap .claim-btn:hover {
  background: transparent;
  border: 2px solid var(--accent-strong);
}

/* Small fallback: if you want a glowing outline around the whole card */
.card-wrap .card {
  box-shadow: 0 6px 30px rgba(0,0,0,0.6), 0 0 120px var(--accent-glow);
}


/* CLAIM BONUS POPUP */

.claim-bonus-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.claim-bonus-content {
  background: #131313;
  border-radius: 10px;
  max-width: 600px;
  height: 400px;
  position: relative;
  border: 1px solid #444;
  width: 100%;
  margin: 10px 0;
  text-align: left;
}

.claim-bonus-content h2 {
  font-size: 18px;
  margin-left: 20px;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.claim-bonus-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.claim-bonus-content a {
  color: #4f9eed;
  text-decoration: none;
}

.claim-bonus-content a:hover {
  text-decoration: underline;
}

.claim-bonus-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.claim-bonus-button {
  font-size: 18px;
  margin-top: 20px;
  color: #f8d406;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  z-index: 2;
}

.claim-bonus-text {
  color: white;
}

.claim-bonus-button i {
  margin-right: 8px;
  z-index: 2;
}



.footer {
    margin-top: 100px;
    background: #101010;
    color: #ccc;
    padding: 40px 20px;
    width: 100%;
    border-top: 1px solid rgb(197, 196, 196);
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    
    
}

.footer-logo img {
    width: 100px;
    margin-bottom: -32px;
}


.footer-column h3 {
    color: #fff;
    margin-bottom: 10px;
    color:#3b4248;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
    
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    color:#3b4248;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 10px;
    
}

.footer-social .social-icon {
    color: #ccc;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
    color:#212529;
}

.footer-social .social-icon img {
    vertical-align: middle;
}

.copy-cc {
    text-align: center;
    font-size: 14px;
    color: #3b4248;
    margin-bottom: -20px;
    margin-top: 50px;
}

.gamble-aware {
    font-size: 14px;
    color:#767777;
    background-color: #111111;
    padding: 16px 32px;
    border: 1px solid rgb(155, 152, 152);
    border-radius: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
    
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
    color:#444b52;
}

  #discord:hover {
    color: rgb(98, 87, 253);
}
#youtube:hover {
    color: red;
}
#fa-twitter:hover {
    color: rgb(13, 181, 233);
}

#kick .kick-img {
    transition: opacity 0.3s;
}

#kick .kick-img {
    content: url('kick-footer.png');
}

#kick:hover .kick-img {
    content: url('kick-green.png');
}



.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup-content {
    background: #131313;
    border-radius: 10px;
    max-width: 600px;
    height: 400px;
    position: relative;
    border: 1px solid #444;
    width: 100%;
    margin: 10px 0;
}

.popup-content h2 {
    font-size: 18px;
    margin-left: 20px;
    padding: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.popup-content p {
    font-size: 22px;
    color: #fff;
    margin: 10px 0;
    margin-left: 30px;
    font-family: 'Poppins', sans-serif;
}

.popup-content ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-left: 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.popup-content ul li {
    margin: 10px 0;
}

.popup-content a {
    color: #4f9eed;
    text-decoration: none;
}

.popup-content a:hover {
    text-decoration: underline;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.popup-note {
    color: #ccc;
    display: block;
    font-size: 14px;
    margin-left: 30px;
    font-family: 'Poppins', sans-serif;
    
}


.contact {
    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-col {
    padding: 16px 32px;
    background-color: #0e0e0e;
    border: 1px solid orange;
    border-radius: 10px;
    width: 80%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.contact-col a {

    display: flex;
    align-items: center;
    color: white;
    
}
.contact-col a:hover {
    text-decoration: none;
    
}

.contact-col:hover {
    background: #131313;
    cursor: pointer;
}

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1; 
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: moveUp 15s linear infinite, fadeInOut 5s linear infinite;
}

@keyframes moveUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-150vh); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}


@media (max-width: 850px) {
    .nav a {
    
    font-size: 15px;
    
    
}
}
@media (max-width: 850px) {
    
    .nav {
        margin-left: 2px;
    }
}
@media (max-width: 500px) {
    .nav a {
        font-size: 12px;
        margin-left: 0px;
        
    }
}

@media (max-width: 450px) {
    .nav a {
        font-size: 12px;
        
    }
    .nav {
        margin-right: -25px;
    }
}


@media (max-width: 425px) {
    .card-wrap {
       margin-right: 15px;
    }
    .nav {
        margin-left: -10px;
    }
}

/* ---------- Reward Banner (glass + blue gradient ring) ---------- */
.reward-banner {
  display: flex;
  justify-content: center;
  padding: 16px 16px 0;
  margin: 0 auto 24px;
}

.rb-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  padding: 28px 22px;
  border-radius: 22px;
  background:
    radial-gradient(1200px 400px at 10% -20%, rgba(42,75,223,0.12), transparent 60%),
    radial-gradient(900px 300px at 90% -30%, rgba(0,26,255,0.14), transparent 60%),
    rgba(255,255,255,0.02);
  border: 1px solid #181c27;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

/* animated gradient ring */
.rb-wrap::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 180deg,
    rgba(42,75,223,.6),
    rgba(0,26,255,.6),
    rgba(38,198,218,.45),
    rgba(42,75,223,.6)
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
  padding: 1px;
  filter: blur(12px) opacity(.25);
  animation: rb-rotate 14s linear infinite;
  pointer-events: none;
}

/* sparkles */
.rb-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}

/* top row */
.rb-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
/* remove underline from Discord link button */
.rb-btn--primary,
.rb-btn--primary:visited,
.rb-btn--primary:focus,
.rb-btn--primary:hover {
  text-decoration: none !important;
}

.rb-badge {
  width: 36px; height: 36px; flex: 0 0 36px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.rb-title {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  color: #f2f4ff;
  position: relative;
  margin: 0;
}

.rb-title::after {
  content: "";
  position: absolute;
  left: 0; top: 60%; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  filter: blur(.5px);
  opacity: .5;
}

.rb-pill {
  margin-left: auto;
  background: linear-gradient(135deg,#2a4bdf,#001aff);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(42,75,223,.45);
}

/* text */
.rb-text {
  color: #cfd6e4;
  line-height: 1.6;
  margin: 6px 0 14px;
  max-width: 70ch;
  
}

.rb-link {
  color: #ffd369;
  font-weight: 700;
  text-decoration: none;
}
.rb-link:hover { text-decoration: underline; }

/* buttons */
.rb-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 6px;
}
.rb-btn {
  border: 0; border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800; cursor: pointer;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
}
.rb-btn--primary {
  background: linear-gradient(135deg,#2a4bdf,#001aff);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42,75,223,.45);
}
.rb-btn--primary:hover { transform: translateY(-1px); }
.rb-btn--ghost {
  background: rgba(255,255,255,.04);
  color: #cfd6e4;
  border: 1px solid rgba(255,255,255,.06);
}
.rb-btn--ghost:hover { background: rgba(255,255,255,.06); }

/* meta line */
.rb-meta {
  margin-top: 10px;
  color: #8a92a4;
  font-size: .92rem;
}

@media (prefers-reduced-motion: reduce) {
  .rb-wrap::before { animation: none; }
}

@keyframes rb-rotate { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .rb-wrap { padding: 22px 16px; border-radius: 18px; }
  .rb-pill { display: none; }
}



/* ---------- Centered, slimmer container ---------- */
.levels {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin: 24px auto;
}

.levels .levels-wrap {
  width: 100%;
  max-width: 980px;                 /* <- shrinks width & keeps center */
  background: #0c0f17;
  border: 1px solid #181c27;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ---------- Rows ---------- */
.level-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .2s ease;
}
.level-row:hover { background: rgba(255,255,255,0.035); }
.level-row:last-child { border-bottom: none; }

/* States */
.is-claimable { background: rgba(138,43,226,0.06); }
.is-locked    { opacity: .93; }

/* ---------- Left side ---------- */
.level-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.level-badge {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.level-name {
  color: #f2f4ff;
  font-weight: 800;
  letter-spacing: .4px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.level-wager {
  color: #cfd6e4;
  font-weight: 600;
  margin-left: 6px;
  white-space: nowrap;
}

/* ---------- Right side ---------- */
.level-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.level-reward {
  color: #aeb6c8;
  font-weight: 700;
  white-space: nowrap;
}

.level-btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .05s ease, box-shadow .2s ease, opacity .2s;
}

.btn-claim {
  background: linear-gradient(135deg,#2a4bdf,#001aff);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(64, 67, 255, 0.45);
}
.btn-claim:hover { transform: translateY(-1px); }

.level-lock {
  background: #2a2f3a;
  color: #8a92a4;
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 800;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .levels .levels-wrap { border-radius: 18px; }
  .level-row { grid-template-columns: 1fr; gap: 10px; }
  .level-right { justify-content: space-between; }
  .level-name { font-size: .95rem; }
  .level-wager, .level-reward { font-size: .95rem; }
}


/* now the colors work */
.nav a.nav-red  { color: #ff2b2b !important; }  /* Points Store */




/* HEADER LAYOUT (ostavi svoje postojeće vrijednosti ako već imaš) */
.header{position:fixed; top:0; left:0; right:0; height:100px; display:flex; align-items:center; justify-content:center; background:#101010; z-index:1000; padding:0 16px;}
.logo{position:absolute; left:20px; top:50%; transform:translateY(-50%);}
.logo img{height:100px; width:auto;}


/* HAMBURGER (skriven na desktopu) */
.nav-toggle{display:none; position:absolute; right:35px; top:50%; transform:translateY(-50%); background:transparent; border:0; color:#fff; font-size:28px; line-height:1; cursor:pointer;}



/* POSEBNE BOJE — UKINI GRADIENT, STAVI PUNU BOJU */
.nav .nav-link.nav-red{
  background:none; -webkit-text-fill-color: initial; color:#ff2b2b !important;
}



/* MOBILNI PRIKAZ */
@media (max-width: 768px){
  .header{height:80px;}
  .logo img{height:80px;}

  .nav-toggle{display:block;}           /* prikaži hamburger */
  .nav{
    position:fixed; top:80px; left:0; right:0;
    flex-direction:column; gap:0; background:#0f0f0f; border-top:1px solid #1a1a1a;
    max-height:0; overflow:hidden; transition:max-height .25s ease;
  }
  .nav[data-open="true"]{ max-height: 260px; }  /* otvoren meni */
  .nav .nav-link{
    padding:14px 18px; font-size:16px; border-bottom:1px solid #1a1a1a;
    padding-left: 50px;
    /* na mobu koristi pune boje radi čitljivosti */
    background:none; -webkit-text-fill-color: initial; color:#d89504;
  }
  .nav .nav-link.nav-red{ color:#ff2b2b !important; }
  .nav .nav-link.nav-blue{ color:#2a4bdf !important; }
  .nav .nav-link.active::after{ display:none; } /* bez underline u dropdownu */
}

