/* CSS Variables */
:root {
  --primary: #1a3c8f;
  --secondary: #3a9fe0;
  --surface: #0d1f4e;
  --card-bg: #162654;
  --gradient: linear-gradient(135deg, #1a3c8f 0%, #3a9fe0 100%);
  --text-pri: #ffffff;
  --text-sec: #a8bfdf;
  --success: #2ecc71;
  --border: #243a6b;
  --gold: #f0c040;

  --font-display: "Poppins", sans-serif;
  --font-body: "Nunito", sans-serif;

  /* VIP Colors */
  --vip-bronze: #cd7f32;
  --vip-silver: #c0c0c0;
  --vip-gold: #f0c040;
  --vip-platinum: #e5e4e2;
  --vip-diamond: #b9f2ff;
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--text-pri);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
.poppins {
  font-family: var(--font-display);
}
h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 16px;
}
h3 {
  font-weight: 700;
  font-size: 16px;
}

.h2-accent {
  display: inline-block;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.text-sec {
  color: var(--text-sec);
}
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout & Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 72px 0;
}

/* Diagonal Slash Sections */
.slash-section {
  position: relative;
  background-color: var(--card-bg);
  z-index: 1;
  margin: 40px 0;
  padding: 80px 0;
}
.slash-section.slash-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  transform: skewY(-4deg);
  transform-origin: top left;
  z-index: -1;
}
.slash-section.slash-both::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  transform: skewY(-4deg);
  z-index: -1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  border: none;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 159, 224, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 6px;
}
.btn-secondary:hover {
  background: rgba(58, 159, 224, 0.1);
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 31, 78, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg {
  fill: var(--gold);
  width: 28px;
  height: 28px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--secondary);
}
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.active {
  display: flex;
}

/* SECTION 1: HERO */
.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--surface);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(240, 192, 64, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUpGold linear infinite;
}
@keyframes floatUpGold {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content p {
  font-size: 17px;
  margin-bottom: 32px;
  color: var(--text-sec);
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
}
.hero-mascot {
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  transform: translateY(20px);
}

/* SECTION 2: PROMOTION NAV */
.promo-nav-wrap {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: rgba(13, 31, 78, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.promo-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-nav a {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s;
  white-space: nowrap;
}
.promo-nav a:hover,
.promo-nav a.active-tab {
  background: var(--gold);
  color: #0d1f4e;
  border-color: var(--gold);
}

/* KEY TERMS LIST COMPONENT (Shared) */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.term-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.term-icon {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 2px;
}
.term-content {
  display: flex;
  flex-direction: column;
}
.term-label {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.term-value {
  font-size: 13px;
  color: var(--text-sec);
}

/* SECTION 3: WELCOME BONUS */
.welcome-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
}
.step-list {
  margin-bottom: 32px;
  counter-reset: step-counter;
}
.step-list-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-sec);
}
.step-list-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background: var(--card-bg);
  border: 1px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
}

.highlight-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  background-clip: padding-box;
  border: 2px solid transparent;
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  z-index: -1;
  border-radius: 18px;
}
.highlight-rate {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-sub {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 24px;
  display: block;
}
.highlight-card .terms-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}

/* SECTION 4: DAILY LOGIN */
.streak-tracker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding-top: 30px;
}
.streak-line {
  position: absolute;
  top: 45px;
  left: 20px;
  right: 20px;
  height: 2px;
  border-top: 2px dashed var(--secondary);
  z-index: 0;
}
.streak-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.streak-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}
.streak-label {
  font-size: 12px;
  color: var(--text-sec);
}
.streak-day.reward .streak-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: #0d1f4e;
}
.streak-day.reward .streak-label {
  color: var(--gold);
  font-weight: 700;
}
.reward-tooltip {
  position: absolute;
  top: -30px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.reward-tooltip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--gold) transparent transparent transparent;
}

.daily-content {
  max-width: 860px;
  margin: 0 auto;
}

/* SECTION 5: RELOAD BONUS */
.reload-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
}
.reload-deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}
.reload-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
}
.reload-badge {
  position: absolute;
  z-index: 2;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  padding: 8px 24px;
  border-radius: 4px;
  transform: rotate(-5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* SECTION 6: CASHBACK */
.cashback-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.timeline-bar {
  position: relative;
  height: 12px;
  background: var(--border);
  border-radius: 6px;
  margin: 40px auto 60px auto;
  max-width: 600px;
}
.timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 15%;
  background: var(--gradient);
  border-radius: 6px;
}
.timeline-markers {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}
.t-marker {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sec);
  position: relative;
}
.t-marker.active {
  color: var(--secondary);
}
.t-marker.active::before {
  content: "Cashback Credited";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
}
.t-marker.active::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: var(--secondary) transparent transparent transparent;
}

/* SECTION 7: VIP CLUB */
.vip-banner {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  opacity: 0.8;
}
.vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.vip-card {
  background: var(--card-bg);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.vip-bronze {
  --tier-color: var(--vip-bronze);
}
.vip-silver {
  --tier-color: var(--vip-silver);
}
.vip-gold {
  --tier-color: var(--vip-gold);
}
.vip-platinum {
  --tier-color: var(--vip-platinum);
}
.vip-diamond {
  --tier-color: var(--vip-diamond);
}

.vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tier-color);
  border-radius: 12px 12px 0 0;
  transition: all 0.3s;
}
.vip-card:hover {
  transform: scale(1.03);
  border-color: var(--tier-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vip-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
  color: #fff;
}
.vip-req {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 16px;
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.vip-benefits {
  text-align: left;
}
.vip-benefits li {
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.vip-benefits li::before {
  content: "•";
  color: var(--tier-color);
  font-weight: bold;
}

/* SECTION 8: EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px 24px;
  position: relative;
  overflow: hidden;
}
.event-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  border-radius: 0 0 8px 0;
}
.event-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 12px;
}
.event-card p {
  font-size: 14px;
  color: var(--text-sec);
}

/* SECTION 9: HOW TO CLAIM */
.steps-row {
  display: flex;
  gap: 24px;
  position: relative;
  margin-bottom: 40px;
}
.step-box {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}
.step-box h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.step-box p {
  font-size: 15px;
  color: var(--text-sec);
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1px dashed var(--secondary);
  z-index: 0;
}

/* FAQ */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  transition: transform 0.3s ease;
  fill: var(--secondary);
  width: 24px;
  height: 24px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 15px;
  color: var(--text-sec);
}
.faq-item.active .faq-answer {
  padding: 0 24px 24px 24px;
  max-height: 400px;
}

/* FOOTER */
footer {
  background: #0a1638;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-sec);
  font-size: 12px;
}
.footer-bottom p {
  margin-bottom: 8px;
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .vip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  .section-pad {
    padding: 44px 0;
  }
  .slash-section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-mascot {
    order: -1;
    max-width: 240px;
    margin: 0 auto;
    transform: none;
  }
  .hero-content p {
    margin: 0 auto 32px auto;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-nav-wrap {
    position: static;
    padding: 12px 24px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: none;
  }
  .promo-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .streak-tracker {
    max-width: 100%;
    padding-top: 40px;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 10px;
  }
  .streak-line {
    width: 400px;
  }
  .streak-day {
    flex: 0 0 auto;
  }

  .reload-grid {
    grid-template-columns: 1fr;
  }
  .reload-deco {
    order: -1;
    min-height: 150px;
  }

  .vip-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    gap: 16px;
  }
  .vip-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    gap: 32px;
  }
  .steps-row::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 56px;
    animation: none;
  }
}
