/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050508;;
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  letter-spacing: 0;
}

/* ===== COLOR TOKENS ===== */
:root {
  --vip-gold: #ffd84a;
  --vip-gold-soft: #f7c94c;
  --vip-gold-dark: #b6891a;
  --vip-bg: #050508;
  --vip-bg-soft: #101015;
  --vip-text-muted: #a6a6b7;
  --vip-border-subtle: rgba(255, 255, 255, 0.08);
}





/* -------------------- 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;
  font-family: 'Outfit', sans-serif;
}
.chips-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chips-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 1;
}
.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;
}

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

/* ensure logo doesn’t increase navbar height */
.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;
}

/* -------------------- 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 (<= 820px) -------------------- */
@media (max-width: 1150px) {
  .nav-container {
    padding: 15px 20px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .join-discord {
    display: none;
  }

  /* 🔧 UPDATED HERE */
  .nav-links {
    position: absolute;       /* was fixed */
    top: 100%;                /* sit right under navbar */
    left: 0;
    right: 0;
    transform: translateX(0);
    flex-direction: column;
    align-items: center;
    gap: 20px;

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

    opacity: 0;
    pointer-events: none;
    transform-origin: top;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}










/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 16px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* glowing background shapes */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 216, 74, 0.2) 0, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255, 216, 74, 0.12) 0, transparent 55%),
    radial-gradient(circle at 90% 60%, rgba(255, 216, 74, 0.12) 0, transparent 55%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 74, 0.18);
  opacity: 0.5;
  animation: floatRing 18s linear infinite;
}
.hero::before {
  width: 520px;
  height: 520px;
  top: 12%;
  left: 10%;
}
.hero::after {
  width: 620px;
  height: 620px;
  bottom: -20%;
  right: -10%;
  animation-duration: 26s;
}

@keyframes floatRing {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.hero-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

/* top pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 74, 0.4);
  background: radial-gradient(circle at 10% 0, #40300f 0, rgba(4, 4, 4, 0.9) 65%);
  box-shadow: 0 0 22px rgba(255, 216, 74, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vip-gold-soft);
  margin-bottom: 28px;
}

.hero-pill i {
  font-size: 13px;
}

/* titles */
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title span {
  display: block;
}

.hero-title-secondary {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 216, 74, 0.7);
}

/* divider */
.hero-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 18px;
}

.hero-divider span {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vip-gold-soft));
}

.hero-divider span:last-child {
  background: linear-gradient(to right, var(--vip-gold-soft), transparent);
}

.hero-divider i {
  color: var(--vip-gold-soft);
  font-size: 11px;
}

/* subtitle + tagline */
.hero-subtitle {
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vip-gold-soft);
  margin-bottom: 14px;
}

.hero-tagline {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 15px;
  color: var(--vip-text-muted);
}


/* feature pills */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
   border: 1px solid rgba(255, 216, 74, 0.4);
  background: radial-gradient(circle at 10% 0, #40300f 0, rgba(4, 4, 4, 0.9) 65%);
  box-shadow: 0 0 22px rgba(255, 216, 74, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vip-text-muted);
}

.feature-pill i {
  color: var(--vip-gold-soft);
  font-size: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}


.btn-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #ffe685 0, #f7c94c 40%, #b8891e 100%);
  color: #191203;
  box-shadow: 0 0 10px rgba(255, 216, 74, 0.5);
}

.btn-primary:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
  
  
}

.btn-ghost {
  background: rgba(10, 10, 16, 0.9);
  color: #f5f5f5;
  border-color: rgba(255, 216, 74, 0.4);
}

.btn-ghost:hover {
  background: radial-gradient(circle at 10% 0, rgba(255, 216, 74, 0.15) 0, #050508 60%);
  border-color: var(--vip-gold);
}

/* pill style reused */
.btn-pill {
  padding-block: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffe685 0, #f7c94c 40%, #b8891e 100%);
  color: #191203;
  border: none;
  box-shadow: 0 0 20px rgba(255, 216, 74, 0.4);
}

/* Hero CTA layout */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* trust row */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 34px;

}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(10, 10, 16, 0.92);
  border: 1px solid var(--vip-border-subtle);
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, #705015 0, #151515 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold-soft);
  font-size: 14px;
}

.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vip-text-muted);
}

.trust-desc {
  font-size: 13px;
}

.hero-scroll {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;

  /* YELLOW STYLE */
  border: 1px solid var(--vip-gold);
  background: rgba(255, 216, 74, 0.08);
  color: var(--vip-gold);
  font-weight: 600;

  transition: color 0.2s ease, border-color 0.2s ease,
              background 0.2s ease, transform 0.2s ease;
}

.hero-scroll-container {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

.hero-scroll i {
  font-size: 12px;
  animation: bounce 1.7s infinite;
}













/* ===== TRANSFER SECTION ===== */

.transfer-section {
  padding: 120px 16px 130px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 216, 74, 0.09) 0, transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(255, 216, 74, 0.06) 0, transparent 55%),
    linear-gradient(to bottom, #050508, #040814);
}

.transfer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* top text */
.transfer-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vip-gold-soft);
  margin-bottom: 12px;
}

.transfer-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.transfer-title span {
  color: var(--vip-gold-soft);
}

.transfer-subtitle {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: var(--vip-text-muted);
}

/* main card wrapper */
.transfer-card {
  margin: 0 auto;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, #1b1409 0, #050508 40%);
  padding: 35px;
  border: 1px solid rgba(167, 131, 2, 0.6);
  box-shadow:
    0 0 2px rgba(255, 216, 74, 0.16),
    0 0 9px rgba(255, 216, 74, 0.05);
}

/* ===== VIP TRANSFER FLOW PANEL ===== */

.transfer-media {
  margin-bottom: 28px;
  padding: 20px 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 216, 74, 0.25) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 216, 74, 0.18) 0, transparent 55%),
    linear-gradient(135deg, #0b0b10, #050509);
  border: 1px solid rgba(255, 216, 74, 0.18);
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(255, 216, 74, 0.12);
}

/* header inside the panel */
.transfer-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.transfer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 216, 74, 0.12);
  border: 1px solid rgba(255, 216, 74, 0.55);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vip-gold-soft);
}

.transfer-badge i {
  font-size: 12px;
}

.transfer-tagline {
  font-size: 12px;
  color: var(--vip-text-muted);
}

/* flex row that holds all steps + arrows */
.transfer-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr; /* step - arrow - step - arrow - step */
  column-gap: 22px;
  align-items: stretch;
}



/* each step card */
.transfer-step {
  flex: 1 1 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, #17161f 0, #050508 55%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.7);

  display: flex;
  flex-direction: column;
  gap: 6px;

  /* 💡 This centers everything INSIDE the step card */
  align-items: center;
  text-align: center;
}





/* center/highlight step */
.transfer-step--highlight {
  background: radial-gradient(circle at 20% 0, #3b2a0b 0, #090810 65%);
  border-color: rgba(255, 216, 74, 0.5);
}

/* icon pill */
.transfer-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  color: #050508;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.9);
}

/* CHIPS end variation */
.transfer-step-icon--chips {
  background: radial-gradient(circle at 30% 0, #ffffff 0, #ffd84a 40%, #b8861b 100%);
}

.transfer-step-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.transfer-step-caption {
  font-size: 12px;
  color: var(--vip-text-muted);
  line-height: 1.45;
}

/* arrows between steps */
.transfer-arrow {
  flex: 0 0 auto;
  align-self: center;
  font-size: 20px;
  color: var(--vip-gold-soft);
  opacity: 0.9;
  text-shadow: 0 0 14px rgba(255, 216, 74, 0.4);
}

/* bottom mini-stats row */
.transfer-meta-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr; /* same pattern */
  column-gap: 22px;
  align-items: center;
}

.transfer-meta-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--vip-text-muted);
  text-align: center;
}

.transfer-meta-item i {
  font-size: 12px;
  color: var(--vip-gold-soft);
}

/* place each meta item under the matching card */
.transfer-meta-item:nth-child(1) { grid-column: 1; }
.transfer-meta-item:nth-child(2) { grid-column: 3; }
.transfer-meta-item:nth-child(3) { grid-column: 5; }

.transfer-meta-item:nth-child(1) {
  grid-column: 1;
  transform: translateX(-15px); /* try -2px or -3px */
}


/* ===== CONTENT UNDER PANEL ===== */

.transfer-content {
  padding: 26px 32px 28px;
}

/* features grid */
.transfer-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 34px;
  margin-bottom: 30px;
  text-align: left;
}

.transfer-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.transfer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
}

.transfer-copy h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.transfer-copy p {
  font-size: 13px;
  color: var(--vip-text-muted);
}

/* CTA */
.transfer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.transfer-cta .btn-primary {
  padding-inline: 34px;
}

.transfer-note {
  font-size: 11px;
  color: var(--vip-text-muted);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 800px) {
  .transfer-card {
    border-radius: 22px;
  }

  .transfer-content {
    padding: 22px 18px 24px;
  }

  .transfer-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .transfer-media {
    padding: 18px 16px;
  }

  .transfer-media-header {
    flex-direction: column;
    align-items: flex-start;
  }

    .transfer-arrow {
    transform: rotate(90deg);
    font-size: 16px;
  }

  /* stack meta items vertically under the panel */
  .transfer-meta-row {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .transfer-meta-item {
    justify-content: flex-start;
  }

  /* remove desktop grid placement on mobile */
  .transfer-meta-item:nth-child(1),
  .transfer-meta-item:nth-child(2),
  .transfer-meta-item:nth-child(3) {
    grid-column: auto !important;
  }

.transfer-meta-item:nth-child(1) {
  grid-column: 1;
  transform: translateX(-0px); /* try -2px or -3px */
}
  .transfer-tagline {
    font-size: 11px;
  }

  .transfer-flow {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
  }

  .transfer-step {
    padding: 12px 14px;
  }

  .transfer-arrow {
    transform: rotate(90deg);
    font-size: 16px;
  }

  .transfer-meta-row {
    justify-content: center;
    text-align: center;
  }

  .transfer-meta-item {
    justify-content: center;
  }
}












/* ===== BONUSES / LOSSBACK SECTION ===== */

.bonuses-section {
  padding: 120px 16px 130px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 216, 74, 0.07) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 216, 74, 0.05) 0, transparent 55%),
    linear-gradient(to bottom, #040814, #050508);
}

.bonuses-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.bonuses-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vip-gold-soft);
  margin-bottom: 12px;
}

.bonuses-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.bonuses-title span {
  color: var(--vip-gold-soft);
}

.bonuses-subtitle {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: var(--vip-text-muted);
}

/* cards row */
.bonuses-card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* individual card */
.bonus-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 26px;
  padding: 26px 28px 24px;
  background: #050508;
  border: 1px solid rgba(255, 216, 74, 0.35);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.9),
    0 0 26px rgba(255, 216, 74, 0.18);
  text-align: left;

  /* 🔥 THIS fixes alignment */
  display: flex;
  flex-direction: column;
}


/* card header */
.bonus-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bonus-card-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.bonus-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
}

/* bullets */
.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bonus-check {
  flex-shrink: 0;
  width: 36px;        /* bigger circle */
  height: 36px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold-soft);
  font-size: 18px;    /* bigger icon */
  margin-top: 2px;
}


.bonus-copy {
  flex: 1;
}

.bonus-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.bonus-text {
  font-size: 13px;
  color: var(--vip-text-muted);
}

/* footer pill inside card */
.bonus-footer-pill {
  margin-top: auto; /* pushes footer to bottom */
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 216, 74, 0.45);
  background: radial-gradient(circle at 10% 0, rgba(255, 216, 74, 0.14) 0, #050508 70%);
  text-align: center;
}


.bonus-footer-label {
  font-size: 12px;
  color: var(--vip-text-muted);
  margin-right: 6px;
}

.bonus-footer-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--vip-gold-soft);
}

/* CTA below cards */
.bonuses-cta {
  display: flex;
  justify-content: center;
}

.bonuses-cta .btn-primary {
  padding-inline: 32px;
}






















/* ===== VIP MANAGER / DIRECT ACCESS (CLEAN VERSION) ===== */

.manager-section {
  padding: 120px 16px 130px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 216, 74, 0.06) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 216, 74, 0.05) 0, transparent 55%),
    linear-gradient(to bottom, #040814, #050508);
}

.manager-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* header */
.manager-header {
  text-align: center;
  margin-bottom: 40px;
}

.manager-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vip-gold-soft);
  margin-bottom: 10px;
}

.manager-heading {
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.manager-heading span {
  color: var(--vip-gold-soft);
}

.manager-header-text {
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--vip-text-muted);
}

/* grid layout */
.manager-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* card / panel */
.manager-panel {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 26px;
  padding: 26px 28px 90px; /* extra bottom space for the button */
  background: #050508;
  border: 1px solid rgba(255, 216, 74, 0.35);
  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.18),
    0 0 15px rgba(255, 216, 74, 0.18);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;        /* 🔥 needed for absolute CTA */
}



.manager-panel--highlight {
  border-color: rgba(243, 197, 32, 0.6);
}

/* small pill label */
.manager-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 74, 0.35);
  background: radial-gradient(circle at 10% 0, rgba(255, 216, 74, 0.18), #050508);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vip-gold-soft);
  margin-bottom: 18px;
}

.manager-label--gold {
  border-color: rgba(255, 216, 74, 0.7);
}

/* titles & copy */
.manager-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.manager-name {
  color: var(--vip-gold-soft);
}

.manager-subtitle {
  font-size: 14px;
  color: var(--vip-text-muted);
  max-width: 420px;
  margin-bottom: 24px;
}

/* left panel – feature list */
.manager-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.manager-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(15, 15, 20, 0.96);
  border: 1px solid rgba(255, 216, 74, 0.18);
  
}

.manager-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
}

.manager-feature-copy {
  flex: 1;
}

.manager-feature-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.manager-feature-text {
  font-size: 13px;
  color: var(--vip-text-muted);
}

/* right panel – bullet list */
.manager-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 26px;
}

.manager-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.manager-bullet-dot {
  flex-shrink: 0;
  width: 10px;
  margin-top: 4px;
  display: inline-flex;
  justify-content: center;
}

.manager-bullet-dot i {
  font-size: 7px;
  color: var(--vip-gold-soft);
}

/* CTAs */
.manager-panel-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;          /* distance from bottom of the card */
  display: flex;
  justify-content: center;
}

.manager-heading {
  text-align: center;
}



.btn-small {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffe685 0, #f7c94c 40%, #b8891e 100%);
  color: #191203;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(255, 216, 74, 0.4);
  border: none;
  transition: 0.3s ease;
}

.btn-small:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}



.manager-panel-cta--center {
  justify-content: flex-start; /* keep left aligned, more professional */
}

.manager-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: var(--vip-text-muted);
}











/* ===== WEEKLY & MONTHLY GIVEAWAYS + EXTRA BENEFITS ===== */

.giveaways-section {
  padding: 120px 16px 130px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 216, 74, 0.06) 0, transparent 55%),
    linear-gradient(to bottom, #050508, #040712);
}

.giveaways-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* header */
.giveaways-header {
  text-align: center;
  margin-bottom: 34px;
}

.giveaways-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vip-gold-soft);
  margin-bottom: 8px;
}

.giveaways-heading {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.giveaways-heading span {
  color: var(--vip-gold-soft);
}

.giveaways-subtitle {
  font-size: 14px;
  color: var(--vip-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* cards row */
.giveaways-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 42px;
}

/* ===== WEEKLY / MONTHLY PANELS – PRO VERSION ===== */

.giveaway-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 26px;
  padding: 26px 28px 26px;
  background: #050508;
  border: 1px solid rgba(255, 216, 74, 0.55);
  box-shadow:
    0 0 12px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(255, 216, 74, 0.18);
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* header with calendar icon + title */
.giveaway-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.giveaway-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
}

.giveaway-title {
  font-size: 20px;
  font-weight: 800;
}

/* list rows */
.giveaway-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.giveaway-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(70, 54, 20, 0.45);        /* dark gold strip */
  border: 1px solid rgba(255, 216, 74, 0.25);
}

/* icon inside each row */
.giveaway-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
}

.giveaway-item span:last-child {
  font-size: 13px;
}


/* ===== EXTRA BENEFITS INSIDE GIVEAWAYS SECTION ===== */

.giveaways-extra {
  margin-top: 10px;
  text-align: center;
}

.benefits-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.benefits-title span {
  color: var(--vip-gold-soft);
}

.benefits-subtitle {
  font-size: 14px;
  color: var(--vip-text-muted);
  max-width: 460px;
  margin: 0 auto 30px;
}

/* grid of small benefit cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 20px;
  margin-bottom: 32px;
}

.benefit-card {
  border-radius: 20px;
  padding: 20px 18px 18px;
  background: radial-gradient(circle at 0 0, #18181f 0, #050508 60%);
  border: 1px solid rgba(255, 216, 74, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 74, 0.7);
  box-shadow:
    0 0 24px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(255, 216, 74, 0.3);
  background: radial-gradient(circle at 0 0, #24242f 0, #050508 70%);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(to bottom, var(--vip-gold-soft), var(--vip-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
}

.benefit-label {
  font-size: 13px;
  font-weight: 600;
}

/* extra benefits CTA */
.benefits-cta {
  display: flex;
  justify-content: center;
}








/* ===== FOOTER ===== */

.site-footer {
  padding: 60px 16px 32px;
  background: #020304;
  border-top: 1px solid rgba(255, 216, 74, 0.12);
  color: #f5f5f5;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 2.1fr 1.2fr 1.2fr 1.2fr;
  column-gap: 40px;
  row-gap: 32px;
}

/* brand block */
.footer-col-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
  color: #fff;
}

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





.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.footer-logo-text img {
  max-width: 125px;
}

.footer-logo-top {
  font-weight: 700;
}

.footer-logo-bottom {
  font-weight: 500;
  color: var(--vip-text-muted);
}

.footer-tagline {
  font-size: 13px;
  color: var(--vip-text-muted);
  margin-bottom: 16px;
}

/* socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(15, 15, 20, 0.98);
  border: 1px solid rgba(255, 216, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold-soft);
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--vip-gold);
  box-shadow: 0 0 18px rgba(255, 216, 74, 0.4);
}

/* generic column */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 14px;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 13px;
  color: var(--vip-text-muted);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CTA column */
.footer-col-cta {
  align-items: flex-start;
}

.footer-apply-btn {
  padding: 10px 26px;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.footer-support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--vip-text-muted);
}

.footer-support-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 216, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold-soft);
  font-size: 10px;
}

/* divider */
.footer-divider {
  max-width: 1180px;
  margin: 0 auto 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* bottom bar */
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--vip-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--vip-text-muted);
  text-decoration: none;
}



.footer-madeby {
  margin-left: 8px;
  color: var(--vip-gold-soft);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-madeby .heart {
  color: #ff4d4d;
  font-size: 14px;
  display: inline-block;
  transform: translateY(1px);
 
}

.footer-madeby a {
  color: var(--vip-gold-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-madeby a:hover {
  color: var(--vip-gold);
  text-shadow: 0 0 8px rgba(255, 216, 74, 0.5);
}

/* ===========================
   RESPONSIVE: ≤ 900px
   =========================== */
@media (max-width: 900px) {

  /* Everything else you previously had stays the same */
  .hero {
    padding-top: 140px;
  }

  .hero-subtitle {
    letter-spacing: 0.13em;
  }

  .transfer-card,
  .bonus-card,
  .manager-panel {
    border-radius: 22px;
  }

  .bonuses-card-row,
  .manager-grid,
  .giveaways-card-row {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    row-gap: 28px;
  }

  .footer-col-cta {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===========================
   RESPONSIVE: ≤ 800px
   =========================== */
@media (max-width: 800px) {
  .transfer-media-overlay {
    margin-inline: 18px;
  }

  .transfer-content {
    padding: 22px 18px 24px;
  }

  .transfer-features {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   RESPONSIVE: ≤ 640px
   =========================== */
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-col-brand {
    max-width: none;
  }
}

/* ===========================
   RESPONSIVE: ≤ 600px
   =========================== */
@media (max-width: 600px) {
  /* HERO */
  .hero-title {
    letter-spacing: 0.06em;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: space-between;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

  /* BENEFITS GRID */
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SHARED STUFF
   =========================== */

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* PLACEHOLDER SECTION (unchanged) */
.placeholder-section {
  padding: 120px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.placeholder-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.placeholder-section p {
  color: var(--vip-text-muted);
}







.p-giveaways {
  color: var(--vip-text-muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: 25px;
}


@media (max-width: 768px) {
  /* navbar sizing only, NO display: none on nav-links */
  .nav-container {
    padding: 10px 20px;
  }

  .nav-logo {
    height: 40px;
  }

  /* youtube layout */
  .youtube-header,
  .videos-container {
    width: 95%;
  }

  .arrow {
    right: 3%;
  }

  /* socials layout */
  .socials-section {
    padding: 40px 5%;
  }

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

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

  .social-card {
    width: 90%;
  }

  /* misc older hero styles (if used on this page) */
  .logo-text {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }

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