/* -------------------- GLOBAL -------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}


/* -------------------- NAVBAR -------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  box-sizing: border-box;
}

/* ✅ Logo */
.nav-logo {
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;
  width: 0;
  margin-left: 90px;
}

.logo img {
  max-width: 60px;
  border-radius: 400px;
}

/* CENTERED NAV LINKS (DESKTOP) */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #bcbcbc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.25s ease;
}
.nav-links a.active {
  filter: brightness(1.6);
}

.nav-links a:hover {
  color: #f8b700;
}

/* ✅ Discord button (DESKTOP ONLY) */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #f8b700, #dfa300);
  border: none;
  color: #0e0e0e;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
}

.nav-btn i {
  font-size: 1.1rem;
}

.nav-btn:hover {
  box-shadow: 0 0 12px rgba(255, 174, 1, 0.5);
  background: linear-gradient(90deg, #ffd451, #f0b800);
}

.discord-btn-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(1) brightness(0);
  transition: filter 0.3s ease;
}

.chips-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chips-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.6;
}


/* -------------------- HAMBURGER BUTTON -------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.nav-toggle span {
  display: block;
  width: 70%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* -------------------- MOBILE NAV (<= 920px) -------------------- */
@media (max-width: 1150px) {
  .nav-container {
    padding: 15px 20px;
  }

  .logo {
    margin-left: 0;
    width: auto;
  }

  .nav-logo {
    height: 50px;
    width: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .join-discord {
    display: none;
  }

  /* 🔥 Mobile menu overlay */
  .nav-links {
    position: absolute;
    top: 100%;          /* directly under navbar */
    left: 0;
    right: 0;
    transform: none;    /* cancel desktop centering */
    flex-direction: column;
    align-items: center;
    gap: 18px;

    background: rgba(5, 5, 8, 0.96);
    padding: 22px 16px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    display: none;          /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform-origin: top;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.show {
    display: flex;          /* shown when JS toggles .show */
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}




/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(248, 183, 0, 0.13) 0%,    
    rgba(18, 10, 10, 0.85) 60%,
    #000000 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(248, 183, 0, 0.03) 0%,    
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

/* subtle gold X pattern */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(248, 183, 0, 0.1) 0px,
      rgba(248, 183, 0, 0.1) 1px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(248, 183, 0, 0.05) 0px,
      rgba(248, 183, 0, 0.05) 1px,
      transparent 1px,
      transparent 26px
    );
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
}

.logo-text {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.logo-text .accent {
  color: #f8b700;
}

.tagline {
  color: #c9c9c9;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.description {
  color: #bcbcbc;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border-radius: 8px;
  padding: 9px 16px;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

/* clean primary red button */
.btn-primary {
  background: linear-gradient(90deg, #f8b700, #daa000);
  border: none;
  color: #0e0e0e;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

.btn-primary:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
}

/* outline version */
.btn-outline {
  background: transparent;
  border: 2px solid #f8b700;
  color: #f8b700;
}

.btn-outline:hover {
  background: rgba(255, 59, 59, 0.1);
  color: #fff;
}

/* shine animation */
@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* floating decorative images */
.floating-images img {
  position: absolute;
  width: 84px;
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
  z-index: 2;
}

.float1 {
  top: 22%;
  left: 8%;
  animation-delay: 0s;
}

.float2 {
  top: 40%;
  right: 12%;
  animation-delay: 2s;
}

.float3 {
  bottom: 18%;
  left: 22%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #a5a6a7;
  font-size: 14px;
  opacity: 0.9;
  z-index: 5;
}

.arrow {
  width: 18px;
  height: 18px;
  border-left: 2px solid #f8b700;
  border-bottom: 2px solid #f8b700;
  transform: rotate(-45deg);
  margin: 10px auto 0;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
  }
}





/* Scroll offset for navbar */
#rewards {
  scroll-margin-top: 120px;
}

/* GRID LAYOUT */
.rewards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 72px auto;
  max-width: 1220px;
  padding: 0 16px;
}

/* CARD BASE */
.reward-card {
  position: relative;
  background: radial-gradient(circle at top, #1c1d25 0, #0b0c12 55%, #050509 100%);
  border-radius: 18px;
  padding: 24px 22px 20px;
  width: 320px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  overflow: hidden;

  opacity: 0;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.125s ease,
    border-color 0.125s ease,
    background 0.125s ease;
  will-change: transform, opacity, box-shadow;
}

/* Subtle corner glow */
.reward-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 120% -10%, rgba(245, 180, 0, 0.09), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

/* Entry directions */
.slide-left   { transform: translateX(-80px); }
.slide-right  { transform: translateX(80px); }
.slide-top    { transform: translateY(-80px); }
.slide-bottom { transform: translateY(80px); }

/* When JS adds .visible */
.reward-card.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hover “VIP lift” */
.reward-card:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
  border-color: rgba(245, 180, 0, 0.6);
  transition-delay: 0s;
}

/* Featured/main card (Chips) */
.reward-card--primary {
  border-color: rgba(245, 180, 0, 0.85);
}

.reward-card--primary::after {
  background: radial-gradient(circle at 20% 0%, rgba(245, 180, 0, 0.18), transparent 60%);
}



/* LOGO AREA */
.rewards-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.rewards-logo img {
  max-width: 170px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.7));
}

/* Thin glowing divider */
.divider {
  width: 90%;
  height: 1px;
  margin: 18px auto 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(245, 180, 0, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.9;
}

/* FEATURES LIST */
.features {
  margin: 16px 0 10px;
}

.features div {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  color: #b2b4bd;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.features i {
  color: #f8b700;
  margin-right: 9px;
  font-size: 18px;
}

/* BONUS ROW */
.bonus-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

/* CODE BOX */
.code-box {
  flex: 1.25;
  position: relative;
  background: radial-gradient(circle at 10% 0%, #30323d 0, #1a1c24 55%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 11px 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* COPY ICON */
.copy-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #f8b700;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
  color: #ffd84a;
  transform: translateY(-50%) scale(1.08);
}

/* CLAIM BUTTON */
.claim-btn {
  flex: 1;
  background: linear-gradient(135deg, #f5b400, #ffd54b);
  border: none;
  border-radius: 10px;
  color: #0a0a0f;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 11px 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.claim-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3.2s infinite;
}

@keyframes shine {
  0%   { left: -70%; }
  55%  { left: 120%; }
  100% { left: 120%; }
}



/* NOTE */
.note {
  text-align: center;
  font-size: 0.82rem;
  color: #8f92a0;
  margin-top: 14px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 900px) {
  .reward-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .rewards-grid {
    gap: 24px;
    margin: 56px auto 40px;
  }

  .reward-card {
    padding: 20px 18px 18px;
  }

  .bonus-row {
    flex-direction: column;
  }

 
}





/* MOBILE LAYOUT FIX – only below ~640px width */
@media (max-width: 640px) {
  .reward-card {
    width: 100%;
  }

  .bonus-row {
    flex-direction: column;      /* stack JONJI + CLAIM vertically */
    align-items: stretch;
    gap: 12px;
  }

  .code-box,
  .claim-btn {
    width: 100%;                 /* both full width */
    flex: 0 0 auto;
  }

  /* small tweak so the copy icon fits nicely on the right */
  .code-box {
    width: 394px;      /* space for the copy icon */
  }

  .copy-btn {
    right: 16px;
  }

  
}

@media (max-width: 600px) {
         .code-box {
    width: 241px;      /* space for the copy icon */
  }
}












/* ==== LEADERBOARD FINAL ==== */
.leaderboard-final {
  background: #0a0a0a;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 240px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 18px;
  padding: 40px 20px 90px;
  text-align: center;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: all 0.4s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px);
}

/* top light bar */
.top-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 10px;
  border-radius: 10px;
}

.top-glow.gold {
  background: linear-gradient(90deg, #ffd97b, #f3b837, #ffd97b);
  box-shadow: 0 0 25px rgba(243, 184, 55, 0.5);
}
.top-glow.silver {
  background: linear-gradient(90deg, #a6aab2, #e0e2e5, #a6aab2);
  box-shadow: 0 0 25px rgba(180,180,180,0.4);
}
.top-glow.bronze {
  background: linear-gradient(90deg, #e19c53, #8d5326, #e19c53);
  box-shadow: 0 0 25px rgba(225,156,83,0.4);
}

/* rank */
.rank {
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: 900;
  font-size: 1.4rem;
}
.gold-text { color: #ffd97b; }
.silver-text { color: #cfd3d8; }
.bronze-text { color: #d68b45; }

/* avatar with glow ring */
.avatar {
  width: 100px;
  height: 100px;
  margin: 50px auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card.gold .avatar {
  box-shadow: 0 0 25px rgba(255, 215, 100, 0.7);
}
.card.silver .avatar {
  box-shadow: 0 0 25px rgba(210, 210, 210, 0.6);
}
.card.bronze .avatar {
  box-shadow: 0 0 25px rgba(214, 139, 69, 0.6);
}

/* text */
.name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin: 10px 0;
}
.wager {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 45px;
}
.wager span {
  display: block;
  font-size: 0.8rem;
  color: #a6a6a6;
  margin-top: 3px;
}

/* metallic 3D reward bar */
.reward {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 44px;
  border-radius: 58px;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px #00000080;
  color: #fff;
  box-shadow: inset 0 0 2px #fff3, 0 4px 9px #0009;
}

.reward.gold {
  background: linear-gradient(
    -65deg,
    #a07a24 0%,
    #b48d32 8%,
    #e7d38a 30%,
    #fff6c1 34%,
    #e3c866 65%,
    #b18428 74%,
    #614b15 91%,
    #2f2307 100%
  );
}
.reward.silver {
  background: linear-gradient(
    -65deg,
    #868978 0%,
    #878987 6.6%,
    #dedfe3 8%,
    #878987 30%,
    #9399a6 34%,
    #9399a1 65%,
    #4c4d57 74%,
    #555562 91%,
    #2f2f37 100%
  );
}
.reward.bronze {
  background: linear-gradient(
    -65deg,
    #9b5128 0%,
    #c77d42 8%,
    #f1b47c 30%,
    #ffe0b0 34%,
    #dc8a43 65%,
    #8a461c 74%,
    #5b2c10 91%,
    #2c1608 100%
  );
}

.reward .trophy {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* card center elevation */
.card.gold { transform: translateY(-30px); z-index: 3; }

/* responsive */
@media (max-width: 900px) {
  .cards { flex-direction: column; align-items: center; }
  .card.gold { transform: none; }
}




/* --- YouTube Section --- */
.youtube-section {
  padding: 64px 5%;
  background: #0f0f0f;
  color: #fff;
  font-family: "Sora", sans-serif;
  position: relative;
}

/* subtle top divider */
.youtube-section::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0.6;
}

/* HEADER */
.youtube-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

.left-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.youtube-logo {
  height: 26px;
  border-radius: 6px;
}

.youtube-header h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f5;
}

/* "Visit Channel" pill */
.visit-channel-btn {
  font-size: 0.78rem;
  color: #d0d0d0;
  background: radial-gradient(circle at top left, #272935 0, #14141a 60%, #101018 100%);
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
}

.visit-channel-btn::after {
  content: "↗";
  font-size: 0.7rem;
  opacity: 0.7;
}

.visit-channel-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at top left, #343744 0, #171722 70%, #11111a 100%);
  color: #ffffff;
}

/* CAROUSEL WRAPPER */
.youtube-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 20px 0;
}

/* track with thumbnails */
.videos-container {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* video card */
.youtube-video-card {
  min-width: 230px;
  max-width: 260px;
  background: radial-gradient(circle at 0 0, #252733 0, #15151b 55%, #101015 100%);
  border-radius: 14px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.65);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease, background 0.22s ease;
  text-align: left;
  flex-shrink: 0;
}



/* hover only on devices that support it */
@media (hover: hover) {
  .youtube-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at 0 0, #2b2f3c 0, #171721 55%, #101017 100%);
  }
}

.youtube-video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* thumbnail */
.youtube-video-thumbnail {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* title & meta */
.youtube-video-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: #f3f3f3;
  margin-top: 8px;
  line-height: 1.2em;
  height: 2.4em;            /* 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.youtube-video-date {
  font-size: 0.7rem;
  color: #8f93a1;
  margin-top: 4px;
  text-align: left;
}

/* ARROW BUTTON */
.arrow-yt {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 0 0, #262834 0, #15151d 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6e6e6;
  font-size: 1.5rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease;
  z-index: 3;
}

.arrow-yt:hover {
  transform: translateY(-50%) translateX(1px);
  background: radial-gradient(circle at 0 0, #343744 0, #171722 70%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.arrow-yt-right {
  right:-3%;
}

.arrow-yt-left {
  left: -3%;
}

/* hidden/disabled state for left arrow */
.arrow-yt.is-disabled {
  opacity: 0;
  pointer-events: none;
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .youtube-section {
    padding: 48px 4%;
  }

  .youtube-header {
    padding: 0 8px;
  }

  .youtube-carousel {
    padding: 4px 8px 0;
  }

  .youtube-video-card {
    min-width: 210px;
  }

  .arrow-2 {
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .youtube-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .visit-channel-btn {
    align-self: flex-start;
  }

  .videos-container {
    gap: 14px;
  }

  .arrow-2 {
    right: 10px;
    top: 46%;
  }
}





/* --- YouTube slide animation --- */
.videos-container {
  position: relative;
  overflow: hidden;
}

.youtube-video-card {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.youtube-video-card.show {
  opacity: 1;
  transform: translateX(0);
}
 




/* Socials */

.socials-section {
  padding: 60px 5%;
  background: #0f0f0f;
  color: white;
  font-family: 'Sora', sans-serif;
}

/* Header */
.socials-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.socials-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

.socials-icon {
  font-size: 1.2rem;
  color: #8a8988;
}

/* Layout wrapper */
.socials-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.socials-body {
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
  gap: 45px;
  flex-wrap: wrap;
}


/* LEFT SIDE (social cards) */
.socials-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card container */
.social-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 16px;          
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s ease;
  min-height: 55px;             
}

.social-card:hover {
  background: #1b1b1b;
  transform: translateY(-2px);
}

/* Bigger logos */
.social-logo {
  width: 30px;                 
  height: 30px;
  flex-shrink: 0;
  margin-right: 12px;
}

.social-info {
  flex-grow: 1;
}

.social-info h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1px;
}

.social-info p {
  font-size: 0.72rem;
  color: #aaa;
}

.social-arrow {
  color: #999;
  font-size: 1rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-card:hover .social-arrow {
  transform: translateX(4px);
  color: #ffae00;
}

/* RIGHT SIDE (About card) */
.socials-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  margin-top: -80px; 
}

.socials-about {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding-bottom: 22px;
  color: #ccc;
  width: 100%;
  
}

.about-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.socials-about h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.socials-about p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #aaa;
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-stats li {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 5px;
}

.about-stats span {
  color: #ffae00;
  font-weight: 600;
  margin-right: 4px;
}




/* --- RIGHT SIDE LAYOUT FIX --- */
.socials-right {
  flex: 0 0 380px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* --- COMMUNITY HEADER --- */
.community-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 4px;
  margin-top: -6px;
  margin-bottom: 10px;
  
}

.community-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

.community-icon {
  font-size: 1.4rem;
  color: #8a8988;
}

/* --- ABOUT BOX WIDTH FIX --- */
.socials-about {
  width: 100%;              
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 22px 24px;
  color: #ccc;
  box-sizing: border-box;
}









footer {
  background-color: #111;
  color: #aaa;
  padding: 40px 20px;
  border-top: 1px solid #222;
}

.footer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 900px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* --- LEFT SIDE --- */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
}

.footer-logo h2 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* --- CENTER (GambleAware) --- */
.footer-center {
  max-width: 350px;
  text-align: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #222;
}

.footer-center h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-center p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #bbb;
}

/* --- RIGHT SIDE --- */
.footer-right {
  text-align: center;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-bottom: 12px;
}

.footer-icons a {
  color: #aaa;
  transition: color 0.3s;
}

.footer-icons a:hover {
  color: #fff;
}

.footer-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  
}
.footer-icons img {
  padding: 10px;
}
.footer-icons img:hover {
  background-color: #424242;
  border-radius: 50px;
  padding: 10px;
}

.madeby {
  font-size: 0.9rem;
  color: #777;
}

.madeby a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
}

.madeby a:hover {
  color: #fff;
}













.about-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-actions a {
  background: #ffae00;
  color: #000;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.3s;
}

.about-actions a:hover {
  background: #ffcc4d;
}
.socials-about {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px 24px 55px; 
  color: #ccc;
  width: 100%;
  min-height: 320px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  margin-top: -3px;
}
























/* --- Responsive --- */
@media (max-width: 768px) {
  .socials-section {
    padding: 40px 5%;
  }

  .socials-cards {
    flex-direction: column;
    align-items: center;
  }

  .socials-wrapper {
    align-items: center;
  }

  .socials-header {
    justify-content: center;
  }

  .social-card {
    width: 90%;
  }

 
}

@media (max-width: 390px) {
  .socials-header {
    margin-right: 220px;
  }
}



@media (max-width: 440px) {
  .socials-header {
    margin-right: 285px;
  }
}

@media (max-width: 402px) {
  .socials-header {
    margin-right: 245px;
  }
}





@media (max-width: 768px) {
  .videos-container {
    width: 95%;
  }
  .arrow {
    right: 3%;
  }
}













/* -------------------- RESPONSIVE -------------------- */

/* Tablet (<= 992px) */
@media (max-width: 992px) {
  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    
  }
}

/* Socials stacking (<= 950px) */
@media (max-width: 950px) {
  .socials-body {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .socials-left,
  .socials-right {
    flex: 1 1 100%;
    width: 100%;
    max-width: 500px;
  }
  .social-card {
    width: 100%;
  }
  .socials-about {
    text-align: center;
  }
  .about-stats li {
    justify-content: center;
  }
  /* --- COMMUNITY HEADER --- */
.community-header {
 
  margin-top: 65px;
 
  
}
.socials-header {
  align-items: center;
}
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .logo-text {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }

  .floating-images img {
    width: 64px;
  }

  .videos-container {
    width: 95%;
  }

  .arrow {
    right: 3%;
  }

  .social-card {
    width: 90%;
  }
}


@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }

  /* --- Rewards Section--- */
section.rewards {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  left: auto;
  transform: none;
}



  .rewards-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 0 18px; 
    box-sizing: border-box;
  }

  .reward-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* --- Socials Section --- */
  .social-card {
    padding: 8px 12px;
    min-height: 50px;
  }

  .social-logo {
    width: 26px;
    height: 26px;
  }

  .social-info h3 {
    font-size: 0.85rem;
  }

  .social-info p {
    font-size: 0.7rem;
  }
}














/* --- PRELOADER WITH PROGRESS BAR --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* center content */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* logo */
.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse 1.6s ease-in-out infinite;
}

/* loading text */
.loader-text {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* progress bar */
.progress-bar {
  width: 180px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f8b700, #ffdb4d);
  border-radius: 6px;
  transition: width 0.2s ease;
}

/* animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}
