/* ============================================
   NOTOUT Affiliates — Stylesheet
   ============================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #050a0e;
  --bg-card: #0a1018;
  --emerald: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --emerald-600: #059669;
  --cyan-400: #22d3ee;
  --amber: #f59e0b;
  --amber-400: #fbbf24;
  --red-400: #f87171;
  --text-white: #e8edf2;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;
  --border-emerald: rgba(16,185,129,0.15);
  --border-emerald-sm: rgba(16,185,129,0.10);
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Utility ---------- */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.px-container { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px)  { .px-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .px-container { padding-left: 2rem; padding-right: 2rem; } }

.section-label {
  display: inline-block;
  color: var(--emerald-400);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.section-label.amber { color: var(--amber-400); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  font-family: var(--font);
}

.gradient-text {
  background: linear-gradient(to right, var(--emerald-300), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-amber {
  background: linear-gradient(to right, #fcd34d, var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-gray-400);
  font-size: 16px;
  max-width: 36rem;
  margin: 1rem auto 0;
  line-height: 1.65;
}

.divider-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(16,185,129,0.2), transparent);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--emerald), var(--emerald-600));
  color: var(--bg-primary);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(16,185,129,0.2);
}
.btn-primary:hover {
  background: linear-gradient(to right, var(--emerald-400), var(--emerald));
  box-shadow: 0 10px 30px rgba(16,185,129,0.35);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--text-gray-300);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.05);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 10px;
}

/* Cards */
.card {
  border-radius: 16px;
  border: 1px solid var(--border-emerald);
  background: rgba(10,16,24,0.8);
  transition: border-color 0.3s, background 0.3s;
}
.card:hover { border-color: rgba(16,185,129,0.25); }

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16,185,129,0.1);
  color: var(--emerald-400);
  flex-shrink: 0;
}

/* Fade-in animation (triggered by JS) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5,10,14,0.8);
  border-bottom: 1px solid rgba(16,185,129,0.1);
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.navbar.loaded { transform: translateY(0); opacity: 1; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .navbar-inner { height: 80px; } }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  width: 110px !important;
  height: auto !important;
  display: block;
}

.nav-links { display: none; gap: 24px; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 13px;
  color: var(--text-gray-400);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--emerald-400); }

.nav-cta { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.nav-cta .login {
  font-size: 14px;
  color: var(--text-gray-300);
  transition: color 0.3s;
}
.nav-cta .login:hover { color: var(--text-white); }

.nav-cta .register {
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(to right, var(--emerald), var(--emerald-600));
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(16,185,129,0.25);
}
.nav-cta .register:hover {
  background: linear-gradient(to right, var(--emerald-400), var(--emerald));
}

.nav-toggle { display: flex; align-items: center; color: var(--text-gray-300); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  background: rgba(10,16,24,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(16,185,129,0.1);
}
.mobile-menu.open { display: block; }

.mobile-menu-inner { padding: 24px 16px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-inner a {
  font-size: 15px;
  color: var(--text-gray-300);
  transition: color 0.3s;
}
.mobile-menu-inner a:hover { color: var(--emerald-400); }
.mobile-menu-divider {
  padding-top: 16px;
  border-top: 1px solid rgba(16,185,129,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-primary), #071210);
}
.hero-orb1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 600px; height: 600px;
  background: rgba(16,185,129,0.05);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 4s ease-in-out infinite;
}
.hero-orb2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 500px; height: 500px;
  background: rgba(6,182,212,0.05);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 4s ease-in-out infinite 1s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(16,185,129,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  padding: 48px 0;
  width: 100%;
}
@media (min-width: 1024px) { .hero-content { padding: 56px 0 64px; } }

.hero-grid-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(16,185,129,0.05);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge span { color: var(--emerald-400); font-size: 13px; font-weight: 500; }

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  color: var(--text-gray-300);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-gray-500);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
}
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat .icon-box { width: 40px; height: 40px; }
.hero-stat .val { font-size: 16px; font-weight: 700; color: var(--text-white); }
.hero-stat .lbl { font-size: 12px; color: var(--text-gray-500); }

/* Hero Right — Floating Cards */
.hero-right { display: none; }
@media (min-width: 1024px) { .hero-right { display: block; } }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80%; height: 80%;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-card-main {
  position: absolute;
  top: 5%; left: 5%; right: 5%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(10,16,24,0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(16,185,129,0.1);
  animation: float1 4s ease-in-out infinite;
}
.hero-card-main img { width: 100%; height: 192px; object-fit: cover; }
.hero-card-main .info { padding: 20px; }
.hero-card-main .info p { font-size: 14px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.hero-card-main .info span { font-size: 12px; color: var(--text-gray-500); }

.hero-card-stats {
  position: absolute;
  bottom: 15%; right: 0;
  width: 224px;
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(10,16,24,0.9);
  backdrop-filter: blur(20px);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float2 3.5s ease-in-out infinite 0.5s;
}
.hero-card-stats .stat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-card-stats .stat-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(16,185,129,0.2); display: flex; align-items: center; justify-content: center; color: var(--emerald-400); }
.hero-card-stats .stat-label { font-size: 12px; color: var(--text-gray-400); }
.hero-card-stats .stat-val { font-size: 22px; font-weight: 700; color: var(--text-white); }
.hero-card-stats .stat-change { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.hero-card-stats .stat-change .up { color: var(--emerald-400); font-size: 12px; font-weight: 600; }
.hero-card-stats .stat-change .period { color: var(--text-gray-500); font-size: 11px; }
.mini-bars { display: flex; align-items: flex-end; gap: 2px; margin-top: 12px; height: 32px; }
.mini-bar {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(16,185,129,0.4), rgba(52,211,153,0.8));
}

.hero-card-badge {
  position: absolute;
  bottom: 10%; left: 0;
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(10,16,24,0.9);
  backdrop-filter: blur(20px);
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float3 3s ease-in-out infinite 1s;
}
.hero-card-badge .inner { display: flex; align-items: center; gap: 8px; }
.hero-card-badge .circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #050a0e;
}
.hero-card-badge .fix { font-size: 12px; font-weight: 600; color: var(--text-white); }
.hero-card-badge .every { font-size: 11px; color: var(--emerald-400); }

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* ============================================
   BRANDS BAR (MARQUEE)
   ============================================ */
.brands-bar { position: relative; padding: 40px 0; overflow: hidden; }

.marquee-wrap {
  position: relative;
  margin-top: 32px;
}
.marquee-fade-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 128px;
  background: linear-gradient(to right, var(--bg-primary), transparent);
  z-index: 10;
}
.marquee-fade-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 128px;
  background: linear-gradient(to left, var(--bg-primary), transparent);
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  flex-shrink: 0;
  padding: 12px 32px;
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.1);
  background: rgba(16,185,129,0.03);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray-500);
}

/* ============================================
   STATS (40% Commission)
   ============================================ */
.stats-section { position: relative; padding: 80px 0; }

.stats-grid { display: grid; gap: 32px; align-items: stretch; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.commission-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.2);
  background: linear-gradient(135deg, rgba(16,185,129,0.08), var(--bg-card), var(--bg-card));
  overflow: hidden;
  padding: 40px;
}
.commission-card .glow-bg {
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: rgba(16,185,129,0.05);
  border-radius: 50%; filter: blur(80px);
}
.commission-card-inner { position: relative; }
.commission-card .header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.commission-card .header .icon-box { width: 48px; height: 48px; }
.commission-card .header span { font-size: 13px; font-weight: 500; color: var(--text-gray-400); text-transform: uppercase; letter-spacing: 2px; }
.commission-card .big-num {
  font-size: clamp(4rem, 8vw, 5rem);
  font-weight: 800;
  background: linear-gradient(to right, var(--emerald-300), var(--emerald));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.commission-card .num-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.commission-card .num-sub { font-size: 16px; font-weight: 500; color: var(--text-gray-400); }
.commission-card p { color: var(--text-gray-400); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.commission-card .accent { color: var(--emerald-400); font-weight: 600; }

.breakdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.breakdown-item {
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.15);
  background: rgba(10,16,24,0.8);
  padding: 20px 24px;
  transition: border-color 0.3s;
}
.breakdown-item:hover { border-color: rgba(16,185,129,0.25); }
.breakdown-item .icon-box { width: 40px; height: 40px; margin-bottom: 16px; }
.breakdown-item h3 { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.breakdown-item p { font-size: 12px; color: var(--text-gray-500); line-height: 1.6; }

.bangladesh-banner {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgba(245,158,11,0.15);
  background: rgba(245,158,11,0.03);
  padding: 24px 32px;
}
.bangladesh-banner .inner { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .bangladesh-banner .inner { flex-direction: row; align-items: center; } }
.bangladesh-banner .flag { font-size: 28px; }
.bangladesh-banner .flex-1 { flex: 1; }
.bangladesh-banner h4 { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.bangladesh-banner p { font-size: 13px; color: var(--text-gray-400); line-height: 1.6; }
.bangladesh-banner .accent { color: var(--amber-400); font-weight: 600; }
.btn-amber-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 10px;
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--amber-400); font-size: 13px; font-weight: 600;
  transition: all 0.3s; white-space: nowrap;
}
.btn-amber-outline:hover { background: rgba(245,158,11,0.1); }
.btn-amber-outline .arrow { transition: transform 0.3s; }
.btn-amber-outline:hover .arrow { transform: translateX(4px); }

.formula-grid { display: grid; gap: 16px; margin-top: 24px; }
@media (min-width: 640px) { .formula-grid { grid-template-columns: repeat(3, 1fr); } }
.formula-item {
  border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.1);
  background: rgba(10,16,24,0.6);
  padding: 20px;
}
.formula-item .lbl { color: var(--emerald-400); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; }
.formula-item .val { color: var(--text-gray-300); font-size: 13px; font-weight: 500; }

/* ============================================
   COMMISSION TABLE
   ============================================ */
#commission { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #commission { padding: 128px 0; } }

.commission-table-wrap {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.15);
  background: rgba(10,16,24,0.8);
  overflow: hidden;
}
.commission-table-wrap .overflow-x { overflow-x: auto; }
table { min-width: 700px; }
thead tr { border-bottom: 1px solid rgba(16,185,129,0.15); }
th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
td { padding: 16px 24px; font-size: 14px; }
tbody tr { border-bottom: 1px solid rgba(16,185,129,0.05); transition: background 0.2s; }
tbody tr:hover { background: rgba(16,185,129,0.02); }
.td-player { color: var(--text-white); font-weight: 600; }
.td-positive { color: var(--emerald-400); font-weight: 500; }
.td-negative { color: #f87171; font-weight: 500; }
.td-neutral { color: var(--text-gray-400); }
.totals-row { background: rgba(16,185,129,0.05); }
.totals-row td { font-weight: 700; }
.commission-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--emerald-400); font-size: 14px; font-weight: 600;
  transition: color 0.3s;
}
.commission-link:hover { color: var(--emerald-300); }
.commission-link .arrow { transition: transform 0.3s; }
.commission-link:hover .arrow { transform: translateX(4px); }

/* ============================================
   JACKPOT / DASHBOARD PREVIEW
   ============================================ */
#jackpot { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #jackpot { padding: 128px 0; } }

.jackpot-info {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.15);
  background: linear-gradient(to right, rgba(16,185,129,0.05), var(--bg-card), rgba(6,182,212,0.05));
  padding: 40px;
  margin-bottom: 48px;
}
.jackpot-info .header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.jackpot-info .icon-box { width: 40px; height: 40px; margin-top: 4px; }
.jackpot-info p { color: var(--text-gray-300); font-size: 15px; line-height: 1.7; }
.jackpot-info .accent { color: var(--emerald-400); font-weight: 600; }

.scenarios-title { text-align: center; font-size: clamp(1.4rem, 3vw, 1.6rem); font-weight: 700; color: var(--text-white); margin-bottom: 32px; }

.scenarios-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .scenarios-grid { grid-template-columns: 1fr 1fr; } }

.scenario-card {
  border-radius: 16px;
  padding: 32px;
}
.scenario-card.emerald {
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(16,185,129,0.03);
}
.scenario-card.cyan {
  border: 1px solid rgba(6,182,212,0.2);
  background: rgba(6,182,212,0.03);
}

.scenario-badge {
  padding: 4px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; display: inline-block;
}
.scenario-card.emerald .scenario-badge { background: rgba(16,185,129,0.15); color: var(--emerald-400); }
.scenario-card.cyan .scenario-badge { background: rgba(6,182,212,0.15); color: var(--cyan-400); }
.scenario-sub { font-size: 13px; color: var(--text-gray-400); }
.scenario-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }

.calc-box {
  border-radius: 12px;
  background: rgba(5,10,14,0.4);
  padding: 20px;
  margin-bottom: 20px;
}
.scenario-card.emerald .calc-box { border: 1px solid rgba(16,185,129,0.2); }
.scenario-card.cyan .calc-box { border: 1px solid rgba(6,182,212,0.2); }
.calc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
.scenario-card.emerald .calc-label { color: var(--emerald-400); }
.scenario-card.cyan .calc-label { color: var(--cyan-400); }

.calc-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.calc-row .lbl { color: var(--text-gray-400); flex: 1; min-width: 0; padding-right: 8px; }
.calc-row .val { color: var(--text-gray-200); font-weight: 500; flex-shrink: 0; white-space: nowrap; }
.calc-row.highlight .lbl { color: var(--text-white); font-weight: 600; }
.calc-row.highlight .val { color: var(--text-white); font-weight: 600; }
.calc-divider { border: none; border-top: 1px solid; margin: 8px 0; }
.scenario-card.emerald .calc-divider { border-color: rgba(16,185,129,0.2); }
.scenario-card.cyan .calc-divider { border-color: rgba(6,182,212,0.2); }
.calc-row.total .lbl { color: var(--text-white); font-weight: 600; font-size: 14px; }
.calc-row.total .val { color: var(--text-white); font-weight: 700; font-size: 14px; }
.calc-row.commission .lbl, .calc-row.commission .val { font-size: 15px; font-weight: 800; }
.scenario-card.emerald .calc-row.commission .lbl,
.scenario-card.emerald .calc-row.commission .val { color: var(--emerald-400); }
.scenario-card.cyan .calc-row.commission .lbl,
.scenario-card.cyan .calc-row.commission .val { color: var(--cyan-400); }
.scenario-desc { font-size: 12px; color: var(--text-gray-500); line-height: 1.7; }

/* ============================================
   BENEFITS (Testimonials-like section)
   ============================================ */
.benefits-section { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { .benefits-section { padding: 128px 0; } }

.benefits-grid { display: grid; gap: 24px; }
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.1);
  background: rgba(10,16,24,0.6);
  padding: 28px;
  transition: border-color 0.5s, background 0.5s;
}
.benefit-card:hover {
  border-color: rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.03);
}
.benefit-card .icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  margin-bottom: 20px;
  transition: all 0.5s;
}
.benefit-card:hover .icon-box { background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(16,185,129,0.1)); }
.benefit-card h3 { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 12px; }
.benefit-card p { font-size: 13px; color: var(--text-gray-500); line-height: 1.65; }

/* ============================================
   ELITE SECTION
   ============================================ */
#elite { position: relative; padding: 96px 0; overflow: hidden; }
@media (min-width: 1024px) { #elite { padding: 128px 0; } }

.elite-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.2), transparent);
}
.elite-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 1000px; height: 600px;
  background: rgba(245,158,11,0.03);
  border-radius: 50%; filter: blur(120px);
}

.elite-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .elite-grid { grid-template-columns: 1fr 1fr; } }

/* Animated Badge Visual */
.elite-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}
.elite-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, rgba(16,185,129,0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.elite-ring-outer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.elite-ring {
  width: 256px; height: 256px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.2);
  animation: rotateRing 30s linear infinite;
  background: conic-gradient(from 0deg, transparent, rgba(245,158,11,0.1), transparent, rgba(245,158,11,0.05), transparent);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .elite-ring { width: 320px; height: 320px; } }

.elite-inner-circle {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.3);
  background: linear-gradient(135deg, var(--bg-card), #111a24);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: counterRotateRing 30s linear infinite;
}
.elite-inner-circle svg { color: var(--amber-400); margin-bottom: 12px; }
.elite-word {
  font-size: 22px; font-weight: 800; color: var(--text-white); letter-spacing: 4px;
  font-family: 'Orbitron', var(--font);
}
.elite-sub { font-size: 12px; font-weight: 500; color: var(--amber-400); letter-spacing: 6px; }

/* Orbiting dots */
.orbit-dot {
  position: absolute;
  inset: 0;
  animation: rotateRing 20s linear infinite;
}
.orbit-dot::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 0 10px rgba(245,158,11,0.5);
}

/* Elite Content */
.elite-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.elite-perk {
  display: flex; align-items: flex-start; gap: 16px;
  border-radius: 12px;
  border: 1px solid rgba(245,158,11,0.1);
  background: rgba(245,158,11,0.02);
  padding: 16px;
  transition: border-color 0.3s;
}
.elite-perk:hover { border-color: rgba(245,158,11,0.2); }
.elite-perk .icon-box { width: 32px; height: 32px; border-radius: 8px; background: rgba(245,158,11,0.15); color: var(--amber-400); margin-top: 2px; }
.elite-perk h4 { font-size: 14px; font-weight: 600; color: var(--text-white); margin-bottom: 2px; }
.elite-perk p { font-size: 12px; color: var(--text-gray-500); line-height: 1.6; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.howitworks { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { .howitworks { padding: 128px 0; } }

.steps-grid { display: grid; gap: 32px; position: relative; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.steps-connector {
  display: none;
  position: absolute;
  top: 64px; left: 16.5%; right: 16.5%;
  height: 1px;
  background: linear-gradient(to right, rgba(16,185,129,0.2), rgba(16,185,129,0.4), rgba(16,185,129,0.2));
}
@media (min-width: 640px) { .steps-connector { display: block; } }

.step { text-align: center; position: relative; }
.step-icon-wrap { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.step-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(5,10,14,1);
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-400);
  position: relative; z-index: 10;
}
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--bg-primary);
  z-index: 20;
}
.step h3 { font-size: 18px; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-gray-500); line-height: 1.65; max-width: 280px; margin: 0 auto; }

/* ============================================
   CTA SECTION
   ============================================ */
#cta { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #cta { padding: 128px 0; } }

.cta-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,78,59,0.4), var(--bg-card), rgba(8,51,68,0.3));
}
.cta-orb1 {
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: rgba(16,185,129,0.1); border-radius: 50%; filter: blur(100px);
}
.cta-orb2 {
  position: absolute; bottom: 0; left: 0;
  width: 300px; height: 300px;
  background: rgba(6,182,212,0.1); border-radius: 50%; filter: blur(80px);
}
.cta-border { position: absolute; inset: 0; border: 1px solid rgba(16,185,129,0.2); border-radius: 24px; }
.cta-inner { position: relative; padding: 64px 32px; }
@media (min-width: 640px) { .cta-inner { padding: 64px 48px; } }
@media (min-width: 1024px) { .cta-inner { padding: 64px; } }

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.2);
  background: rgba(16,185,129,0.1);
  margin-bottom: 32px;
}
.cta-badge span { color: var(--emerald-400); font-size: 13px; font-weight: 500; }

.cta-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: var(--text-white); margin-bottom: 16px; }
.cta-desc { font-size: 16px; color: var(--text-gray-400); max-width: 500px; margin: 0 auto 40px; line-height: 1.65; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; justify-content: center; } }

.cta-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(16,185,129,0.1);
}
.cta-trust-item { display: flex; align-items: center; gap: 8px; }
.cta-trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-400); }
.cta-trust-item span { font-size: 12px; color: var(--text-gray-500); }

/* ============================================
   PRODUCTS / ABOUT
   ============================================ */
#about { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #about { padding: 128px 0; } }

.products-grid { display: grid; gap: 24px; margin-bottom: 64px; }
@media (min-width: 640px)  { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16,185,129,0.1);
  background: var(--bg-card);
  transition: border-color 0.5s;
}
.product-card:hover { border-color: rgba(16,185,129,0.3); }
.product-img-wrap { position: relative; height: 160px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-card), rgba(10,16,24,0.5), transparent);
}
.product-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.tag-emerald { background: rgba(16,185,129,0.2); color: var(--emerald-400); }
.tag-cyan    { background: rgba(6,182,212,0.2);  color: var(--cyan-400); }
.tag-red     { background: rgba(248,113,113,0.2); color: #f87171; }
.tag-amber   { background: rgba(245,158,11,0.2);  color: var(--amber-400); }
.tag-purple  { background: rgba(167,139,250,0.2); color: #a78bfa; }
.tag-teal    { background: rgba(45,212,191,0.2);  color: #2dd4bf; }
.product-card .name { padding: 20px; font-size: 16px; font-weight: 600; color: var(--text-white); }

.countries-box {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.15);
  background: linear-gradient(to right, rgba(16,185,129,0.04), var(--bg-card), rgba(16,185,129,0.04));
  padding: 40px;
}
.countries-box h3 { font-size: clamp(1.375rem, 2.5vw, 1.625rem); font-weight: 700; color: var(--text-white); margin-bottom: 12px; text-align: center; }
.countries-box p { text-align: center; font-size: 14px; color: var(--text-gray-400); max-width: 600px; margin: 0 auto 32px; line-height: 1.65; }
.countries-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.country-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; border-radius: 12px;
  border: 1px solid rgba(16,185,129,0.15);
  background: rgba(16,185,129,0.03);
  transition: all 0.3s;
}
.country-item:hover { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.06); }
.country-item img { width: 32px; height: 24px; object-fit: cover; border-radius: 2px; }
.country-item span { font-size: 14px; font-weight: 600; color: var(--text-white); letter-spacing: 1px; }

/* ============================================
   FEATURES / WHY US
   ============================================ */
#whyus { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #whyus { padding: 128px 0; } }

.features-grid { display: grid; gap: 20px; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.1);
  background: rgba(10,16,24,0.6);
  padding: 24px;
  transition: border-color 0.5s, background 0.5s;
}
.feature-card:hover { border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.03); }
.feature-card .icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  margin-bottom: 20px; transition: all 0.5s;
}
.feature-card:hover .icon-box { background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(16,185,129,0.1)); }
.feature-card h3 { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-gray-500); line-height: 1.65; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { position: relative; padding: 96px 0; overflow: hidden; }
@media (min-width: 1024px) { .video-section { padding: 128px 0; } }
.video-ambient {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 600px;
  background: rgba(16,185,129,0.04); border-radius: 50%; filter: blur(120px);
  pointer-events: none;
}

.video-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16,185,129,0.15);
  background: #080e14;
  box-shadow: 0 25px 60px rgba(16,185,129,0.06);
  margin-top: 0;
}
.video-inner { position: relative; aspect-ratio: 16/9; width: 100%; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-primary), rgba(5,10,14,0.6), rgba(5,10,14,0.3)); }
.video-ring-glow { position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(16,185,129,0.1); }

.scan-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(52,211,153,0.4), transparent);
  animation: scanLine 4s linear infinite;
}

.play-btn-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.play-pulse {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  animation: playPulse 2s ease-out infinite;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 15px 30px rgba(16,185,129,0.3);
  transition: box-shadow 0.3s;
  position: relative; z-index: 2;
}
.play-btn-wrap:hover .play-circle { box-shadow: 0 15px 30px rgba(16,185,129,0.5); }

.play-label {
  position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
}
.play-label .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(5,10,14,0.7); backdrop-filter: blur(4px);
  border: 1px solid rgba(16,185,129,0.15);
}
.play-label .pill span { font-size: 13px; color: var(--text-gray-300); font-weight: 500; }

.video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.video-iframe.active { display: block; }

.video-cta {
  text-align: center; margin-top: 40px;
}
.video-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.video-trust .item { display: flex; align-items: center; gap: 8px; }
.video-trust .item .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(52,211,153,0.6); }
.video-trust .item span { font-size: 12px; color: var(--text-gray-500); }

/* ============================================
   CONTACT / FAQ
   ============================================ */
#contact { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { #contact { padding: 128px 0; } }

.business-hours {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 40px;
}
.business-hours .icon-box { width: 40px; height: 40px; }
.business-hours p { font-size: 14px; color: var(--text-gray-400); }
.business-hours .time { color: var(--text-white); font-weight: 600; }

.live-chat-box {
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,0.2);
  background: linear-gradient(to right, rgba(16,185,129,0.06), var(--bg-card), rgba(16,185,129,0.06));
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.live-chat-box h3 { font-size: 18px; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.live-chat-box p { font-size: 13px; color: var(--text-gray-400); margin-bottom: 16px; }

.channels-grid { display: grid; gap: 16px; }
@media (min-width: 640px)  { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }

.channel-card {
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s;
  display: block;
}
.channel-card.telegram  { border: 1px solid rgba(59,130,246,0.2); background: rgba(59,130,246,0.03); }
.channel-card.whatsapp  { border: 1px solid rgba(34,197,94,0.2);  background: rgba(34,197,94,0.03); }
.channel-card.skype     { border: 1px solid rgba(14,165,233,0.2); background: rgba(14,165,233,0.03); }
.channel-card.gmail     { border: 1px solid rgba(239,68,68,0.2);  background: rgba(239,68,68,0.03); }
.channel-card.imo       { border: 1px solid rgba(99,102,241,0.2); background: rgba(99,102,241,0.03); }
.channel-card.telegram:hover  { border-color: rgba(59,130,246,0.3); }
.channel-card.whatsapp:hover  { border-color: rgba(34,197,94,0.3); }
.channel-card.skype:hover     { border-color: rgba(14,165,233,0.3); }
.channel-card.gmail:hover     { border-color: rgba(239,68,68,0.3); }
.channel-card.imo:hover       { border-color: rgba(99,102,241,0.3); }

.channel-header { display: flex; align-items: center; gap: 16px; }
.channel-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white;
}
.channel-icon.telegram  { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.channel-icon.whatsapp  { background: linear-gradient(135deg,#4ade80,#22c55e); }
.channel-icon.skype     { background: linear-gradient(135deg,#38bdf8,#0ea5e9); }
.channel-icon.gmail     { background: linear-gradient(135deg,#f87171,#ef4444); }
.channel-icon.imo       { background: linear-gradient(135deg,#818cf8,#6366f1); }

.channel-header h4 { font-size: 14px; font-weight: 600; color: var(--text-white); }
.channel-header p { font-size: 12px; color: var(--text-gray-400); }
.channel-link {
  display: flex; align-items: center; gap: 4px;
  margin-top: 16px;
  font-size: 13px; font-weight: 500; color: var(--text-gray-400);
  transition: color 0.3s;
}
.channel-card:hover .channel-link { color: var(--emerald-400); }
.channel-link .arrow { transition: transform 0.3s; }
.channel-card:hover .channel-link .arrow { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  position: relative;
  border-top: 1px solid rgba(16,185,129,0.3);
}
.footer-ambient {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: rgba(16,185,129,0.03); border-radius: 50%; filter: blur(150px);
  pointer-events: none;
}
.footer-grid-bg {
  position: absolute; inset: 0; opacity: 0.015; pointer-events: none;
  background-image:
    linear-gradient(rgba(16,185,129,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.footer-inner { position: relative; }

.footer-cta-strip {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-cta-strip .inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center;
}
@media (min-width: 1024px) { .footer-cta-strip .inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-cta-strip h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.footer-cta-strip p { font-size: 14px; color: var(--text-gray-500); }

.footer-main {
  padding: 56px 0 64px;
  display: grid; gap: 40px;
}
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 64px; } }

.footer-logo { display: inline-flex; align-items: center; margin-bottom: 20px; text-decoration: none; }
.footer-logo-img { width: 120px !important; height: auto !important; display: block; }
.footer-about { font-size: 13px; color: var(--text-gray-500); line-height: 1.7; max-width: 340px; margin-bottom: 28px; }

.social-links { display: flex; gap: 10px; margin-bottom: 32px; }
.social-link {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-gray-500);
  position: relative; transition: all 0.3s;
}
.social-link:hover { color: var(--emerald-400); background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }

.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (min-width: 480px)  { .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 {
  font-size: 13px; font-weight: 600; color: var(--text-white);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-col ul li a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-gray-500); transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--emerald-400); }
.footer-col ul li a .line {
  width: 0; height: 1px; background: var(--emerald-400); transition: width 0.3s;
}
.footer-col ul li a:hover .line { width: 12px; }

.footer-badges {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px 32px;
}
.footer-badge { display: flex; align-items: center; gap: 8px; color: var(--text-gray-600); }
.footer-badge svg { color: rgba(16,185,129,0.4); }
.footer-badge span { font-size: 11px; font-weight: 500; letter-spacing: 1px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom .copy { font-size: 12px; color: var(--text-gray-600); }
.footer-bottom .links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom .links a { font-size: 11px; color: var(--text-gray-600); transition: color 0.2s; }
.footer-bottom .links a:hover { color: var(--emerald-400); }
.footer-bottom .sep { font-size: 10px; color: #374151; }
.footer-bottom .age { font-size: 11px; font-weight: 500; color: var(--text-gray-600); }
.footer-bottom .responsible { font-size: 11px; font-weight: 500; color: rgba(245,158,11,0.6); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-400);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s;
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.1); }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterRotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes scanLine {
  0%   { top: 0%; }
  100% { top: 100%; }
}
@keyframes playPulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}

/* Section center header */
.section-header { text-align: center; margin-bottom: 64px; }

/* ============================================
   RESPONSIVE — TABLET  (640px – 1023px)
   ============================================ */
@media (max-width: 1023px) {
  /* Reduce xxl section padding */
  #commission, #jackpot, .benefits-section, #elite,
  .howitworks, #cta, #about, #whyus, .video-section, #contact {
    padding: 72px 0;
  }
  footer .footer-main { padding: 48px 0 56px; }

  /* Hero: tighten right-side float cards on tablet */
  .hero-card-stats { width: 200px; }
}

/* ============================================
   RESPONSIVE — MOBILE  (≤ 639px)
   ============================================ */
@media (max-width: 639px) {

  /* --- Global section padding --- */
  #commission, #jackpot, .benefits-section, #elite,
  .howitworks, #cta, #about, #whyus, .video-section, #contact {
    padding: 56px 0;
  }
  .stats-section      { padding: 48px 0; }
  .brands-bar         { padding: 20px 0; }
  .marquee-wrap       { margin-top: 16px; }
  .section-header     { margin-bottom: 40px; }
  footer .footer-main { padding: 40px 0 48px; }

  /* --- Typography scale-down --- */
  .section-title { font-size: 1.75rem; }
  .section-desc  { font-size: 14px; }

  /* --- Navbar --- */
  .nav-logo-img { width: 90px !important; }

  /* --- Hero --- */
  #hero { padding-top: 56px; }
  .hero-content { padding: 36px 0 28px; }
  .hero-orb1 { width: 300px; height: 300px; }
  .hero-orb2 { width: 250px; height: 250px; }
  .hero-grid-layout { gap: 32px; }
  .hero-h1   { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero-sub  { font-size: 1rem; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-stats { gap: 20px; margin-top: 36px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    justify-content: center;
    width: 100%;
  }

  /* --- Hero Right: show on mobile, scaled down --- */
  .hero-right          { display: block; }
  .hero-visual         { max-width: 300px; }
  .hero-card-main img  { height: 130px; }
  .hero-card-main .info { padding: 12px 16px; }
  .hero-card-stats     { width: 140px; padding: 10px 12px; }
  .hero-card-stats .stat-header { margin-bottom: 8px; gap: 8px; }
  .hero-card-stats .stat-val    { font-size: 16px; }
  .mini-bars           { height: 22px; margin-top: 8px; }
  .hero-card-badge     { padding: 10px 12px; }
  .hero-card-badge .circle { width: 26px; height: 26px; font-size: 8px; }
  .hero-card-badge .fix    { font-size: 11px; }
  .hero-card-badge .every  { font-size: 10px; }

  /* --- Marquee --- */
  .marquee-fade-left,
  .marquee-fade-right { width: 48px; }
  .marquee-item { padding: 10px 20px; font-size: 13px; }

  /* --- Stats / 40% commission card --- */
  .commission-card { padding: 24px 20px; }
  .commission-card .big-num { font-size: 3.5rem; }
  .breakdown-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .breakdown-item { padding: 16px; }

  .bangladesh-banner { padding: 20px; }
  .formula-grid { grid-template-columns: 1fr; gap: 10px; }
  .formula-item { padding: 16px; }

  /* --- Commission table --- */
  .commission-table-wrap { overflow: visible; }
  th  { padding: 12px 14px; font-size: 11px; }
  td  { padding: 12px 14px; font-size: 13px; }

  /* --- Jackpot --- */
  .jackpot-info  { padding: 20px; }
  .scenario-card { padding: 16px; }
  .calc-box      { padding: 14px; }
  .calc-row      { font-size: 12px; padding-right: 50px; }
  .calc-row.total .lbl, .calc-row.total .val { font-size: 12px; }
  .calc-row.commission .lbl,
  .calc-row.commission .val { font-size: 13px; }

  /* --- Benefit cards --- */
  .benefit-card { padding: 20px; }

  /* --- Elite --- */
  .elite-ring { width: 200px; height: 200px; }
  .elite-inner-circle { inset: 14%; }
  .elite-inner-circle svg { width: 28px; height: 28px; }
  .elite-word { font-size: 16px; }
  .elite-sub  { font-size: 10px; letter-spacing: 3px; }
  .elite-visual { max-width: 260px; }
  .elite-perk { padding: 12px; }
  .elite-perk h4 { font-size: 13px; }

  /* --- How It Works --- */
  .step h3 { font-size: 16px; }
  .step p  { font-size: 13px; }

  /* --- CTA --- */
  .cta-inner  { padding: 40px 20px; }
  .cta-title  { font-size: 1.5rem; }
  .cta-desc   { font-size: 14px; }
  .cta-badge  { margin-bottom: 20px; }
  .cta-trust  { gap: 16px; margin-top: 32px; padding-top: 24px; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    justify-content: center;
    width: 100%;
  }

  /* --- Products --- */
  .product-img-wrap { height: 140px; }
  .countries-box { padding: 24px 20px; }
  .countries-box p { font-size: 13px; }

  /* --- Features --- */
  .feature-card { padding: 20px; }

  /* --- Video --- */
  .play-circle { width: 60px; height: 60px; }
  .play-circle svg { width: 22px; height: 22px; }
  .play-pulse { width: 70px; height: 70px; top: 50%; left: 50%; }
  .play-label .pill { padding: 6px 12px; }
  .play-label .pill span { font-size: 12px; }

  /* --- Contact --- */
  .business-hours p { font-size: 13px; }
  .live-chat-box { padding: 24px 20px; }
  .channel-card { padding: 16px; }

  /* --- Footer --- */
  .footer-cta-strip { padding: 32px 0; }
  .footer-about { font-size: 13px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col h4 { font-size: 12px; margin-bottom: 14px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-badges { gap: 12px 20px; }
  .footer-badge span { font-size: 10px; }
  .footer-bottom { gap: 12px; }
  .footer-bottom .links { gap: 12px; justify-content: center; }
  .footer-cta-strip h3 { font-size: 1.125rem; }
  .footer-cta-strip p { font-size: 13px; }
  .footer-cta-strip .btn-primary { width: 100%; justify-content: center; }

  /* Buttons — ensure full-width CTAs look right */
  .btn-primary, .btn-outline { white-space: nowrap; }

  /* Scenario titles */
  .scenarios-title { font-size: 1.1rem; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
  .hero-h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 16px; }
  .footer-col:last-child { border-bottom: none; }
  .commission-card .big-num { font-size: 3rem; }
  .elite-ring { width: 170px; height: 170px; }
}

/* ============================================
   HELP CENTER — Shared Tab / Filter Styles
   ============================================ */
.faq-tabs,
.banner-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.faq-tab,
.banner-tab {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray-400);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .2s;
}
.faq-tab:hover,
.banner-tab:hover {
  color: var(--text-white);
  border-color: rgba(52,211,153,0.3);
}
.faq-tab.active,
.banner-tab.active {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald));
  border-color: transparent;
  color: #050a0e;
  font-weight: 600;
}

/* ============================================
   HELP HERO
   ============================================ */
.help-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}
.help-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.help-hero-orb {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.help-hero-content {
  position: relative;
  margin-bottom: 48px;
}
.help-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.help-hero-sub {
  font-size: 18px;
  color: var(--text-gray-400);
  margin-bottom: 32px;
}
.help-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.help-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray-500);
  pointer-events: none;
}
.help-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 16px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.help-search-input::placeholder { color: var(--text-gray-500); }
.help-search-input:focus {
  border-color: rgba(52,211,153,0.5);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.08);
}
.help-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 767px) { .help-cat-grid { grid-template-columns: repeat(2, 1fr); } }
.help-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  text-align: center;
  transition: all .25s;
}
.help-cat-card:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(52,211,153,0.25);
  transform: translateY(-3px);
}
.help-cat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.06));
  border-radius: 14px;
  color: var(--emerald-400);
}
.help-cat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
}
.help-cat-count {
  font-size: 12px;
  color: var(--text-gray-500);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open {
  border-color: rgba(52,211,153,0.2);
}
.faq-item[style*="display:none"],
.faq-item[style*="display: none"] { display: none !important; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--emerald-400); }
.faq-toggle-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald-400);
}
.faq-toggle-icon .faq-minus { display: none; }
.faq-item.open .faq-toggle-icon .faq-plus  { display: none; }
.faq-item.open .faq-toggle-icon .faq-minus { display: block; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray-400);
}

/* ============================================
   TUTORIALS SECTION
   ============================================ */
.tutorials-section {
  padding: 80px 0;
}
.tutorials-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1023px) { .tutorials-layout { grid-template-columns: 1fr; } }

.tutorial-thumb-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0c1117;
  cursor: pointer;
}
.tutorial-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tutorial-poster-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c1117, #0f1923);
}
.tutorial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,10,14,0.45);
  transition: background .2s;
}
.tutorial-thumb-wrap:hover .tutorial-overlay { background: rgba(5,10,14,0.3); }
.tutorial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--emerald-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.4);
}
.tutorial-thumb-wrap:hover .tutorial-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 12px rgba(52,211,153,0.12);
}
.tutorial-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
.tutorial-iframe.active { display: block; }
.tutorial-featured-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.tutorial-featured-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
}
.tutorial-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-gray-500);
  white-space: nowrap;
  flex-shrink: 0;
}

.tutorial-sidebar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
}
.tutorial-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tutorial-list { display: flex; flex-direction: column; gap: 4px; }
.tutorial-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.tutorial-list-item:hover { background: rgba(52,211,153,0.06); }
.tutorial-list-item.active { background: rgba(52,211,153,0.1); border-left: 2px solid var(--emerald-400); }
.tutorial-list-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 54px;
  border-radius: 8px;
  background: rgba(52,211,153,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tutorial-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.tutorial-list-info p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray-300);
  line-height: 1.4;
  margin-bottom: 4px;
}
.tutorial-list-info span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-gray-500);
}

/* ============================================
   BANNERS SECTION
   ============================================ */
.banners-section {
  padding: 80px 0;
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) { .banners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .banners-grid { grid-template-columns: 1fr; } }

/* Card */
.banner-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.banner-card:hover {
  border-color: rgba(52,211,153,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(52,211,153,0.1);
}

/* Image wrapper */
.banner-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0c1117, #0f1923);
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.banner-card:hover .banner-img { transform: scale(1.04); }

.banner-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.15);
  font-size: 12px;
}





/* Info bar */
.banner-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.banner-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.banner-cat-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.banner-cat-dot.banner-cat-leaderboard { background: var(--emerald-400); }
.banner-cat-dot.banner-cat-square      { background: var(--cyan-400); }
.banner-cat-dot.banner-cat-mobile      { background: var(--amber-400); }

.banner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Icon-only download button in meta bar */
.banner-dl-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--emerald-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.banner-dl-btn:hover {
  background: rgba(52,211,153,0.2);
  border-color: rgba(52,211,153,0.4);
}

/* ============================================
   BACKUP LINK SECTION
   ============================================ */
.backup-section {
  padding: 80px 0;
}
.backup-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 20px;
}
@media (max-width: 639px) {
  .backup-card { flex-direction: column; padding: 28px 20px; }
}
.backup-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
}
.backup-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald-400);
  margin-bottom: 8px;
}
.backup-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}
.backup-desc {
  font-size: 15px;
  color: var(--text-gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}
.backup-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-gray-500);
}


/* ============================================================
   CAMPAIGNS PAGE
   ============================================================ */

/* ── Hero Slider ───────────────────────────────────────────── */
.campaigns-section-wrap {
  padding: 0 0 80px;
}

.campaigns-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(52,211,153,0.12);
}

.campaigns-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.campaigns-slide {
  min-width: 100%;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0d1f18;
}

.campaigns-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 80px;
  background: linear-gradient(90deg, rgba(5,10,14,0.92) 40%, rgba(5,10,14,0.4) 75%, transparent 100%);
}

.campaigns-slide-badge {
  display: inline-block;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.4);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}

.campaigns-slide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}

.campaigns-slide-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
  max-width: 520px;
}

.campaigns-slide-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.campaigns-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.campaigns-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.campaigns-slider-dot.active {
  background: #34d399;
  transform: scale(1.4);
}

/* ── Campaign Sections ─────────────────────────────────────── */
.campaign-section {
  margin-bottom: 52px;
}

.campaign-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.campaign-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.campaign-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 14px;
  background: #34d399;
  color: #050a0e;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.campaign-count-badge.badge-zero {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.campaign-arrows {
  display: flex;
  gap: 8px;
}

.campaign-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.campaign-arrow:hover {
  border-color: #34d399;
  background: rgba(52,211,153,0.1);
  color: #34d399;
}

/* ── Cards ─────────────────────────────────────────────────── */
.campaign-cards-track {
  overflow: hidden;
}

.campaign-cards-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.campaign-card {
  flex: 0 0 calc(25% - 15px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.campaign-card:hover {
  border-color: rgba(52,211,153,0.3);
  transform: translateY(-3px);
}

.campaign-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.campaign-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(52,211,153,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
}

.campaign-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.campaign-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 10px;
}

.campaign-card-date {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  padding-bottom: 16px;
}

.campaign-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.campaign-card-details {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.campaign-card-details:hover {
  color: #34d399;
}

.campaign-card-signup {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050a0e;
  background: #34d399;
  border-radius: 6px;
  padding: 7px 14px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  margin-left: auto;
}

.campaign-card-signup:hover {
  opacity: 0.85;
  color: #050a0e;
}

.campaign-section-completed .campaign-card {
  opacity: 0.7;
}

.campaign-section-completed .campaign-card:hover {
  opacity: 1;
}

.campaign-empty {
  padding: 40px 24px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .campaign-card { flex: 0 0 calc(33.333% - 14px); }
}

@media (max-width: 860px) {
  .campaign-card { flex: 0 0 calc(50% - 10px); }
  .campaigns-slide { height: 300px; }
  .campaigns-slide-content { padding: 32px 40px; }
  .campaigns-slide-title { font-size: 28px; }
}

@media (max-width: 560px) {
  .campaign-card { flex: 0 0 calc(100%); }
  .campaigns-slide { height: 240px; }
  .campaigns-slide-content { padding: 24px; }
  .campaigns-slide-title { font-size: 22px; }
}

/* ── Campaign Detail Modal ─────────────────────────────────── */
.campaign-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,10,14,0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.campaign-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.campaign-modal {
  position: relative;
  background: #0b1a11;
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(52,211,153,0.25) transparent;
}
.campaign-modal-overlay.is-open .campaign-modal {
  transform: translateY(0) scale(1);
}
.campaign-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.campaign-modal-close:hover {
  border-color: #34d399;
  color: #34d399;
  background: rgba(52,211,153,0.1);
}
.campaign-modal-image-wrap {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.campaign-modal-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.campaign-modal-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(52,211,153,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
}
.campaign-modal-body {
  padding: 26px 28px 32px;
}
.campaign-modal-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.campaign-modal-badge.badge-upcoming  { background: rgba(251,191,36,0.1);  border: 1px solid rgba(251,191,36,0.35);  color: #fbbf24; }
.campaign-modal-badge.badge-ongoing   { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.35);  color: #34d399; }
.campaign-modal-badge.badge-completed { background: rgba(255,255,255,0.06);border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); }
.campaign-modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 18px;
}
.campaign-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.campaign-modal-date-row,
.campaign-modal-commission-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.campaign-modal-date-row svg,
.campaign-modal-commission-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #34d399;
}
.campaign-modal-commission-value {
  color: #34d399;
  font-weight: 700;
}
.campaign-modal-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 18px 0;
}
.campaign-modal-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 6px;
}
.campaign-modal-text {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  white-space: pre-line;
  margin: 0;
}
.campaign-modal-description,
.campaign-modal-eligibility,
.campaign-modal-terms {
  margin-bottom: 16px;
}
.campaign-modal-signup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
}
@media (max-width: 520px) {
  .campaign-modal-body { padding: 18px 18px 24px; }
  .campaign-modal-title { font-size: 14px; }
}

/* ============================================================
   TERMS & CONDITIONS PAGE
   ============================================================ */

/* Hero */
.tnc-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.tnc-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.tnc-hero .section-title { margin-bottom: 1rem; }
.tnc-hero .section-desc  { margin-bottom: 0; }
.tnc-effective {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--text-gray-500);
  letter-spacing: 0.02em;
}

/* Body layout: TOC + sections side by side on desktop */
.tnc-body {
  padding: 60px 0 100px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Table of Contents */
.tnc-toc {
  flex: 0 0 220px;
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: 14px;
  padding: 28px 24px;
}
.tnc-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald-400);
  margin-bottom: 16px;
}
.tnc-toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tnc-toc-list li { counter-increment: toc; }
.tnc-toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-gray-400);
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.tnc-toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-gray-600);
  flex-shrink: 0;
  min-width: 22px;
}
.tnc-toc-list a:hover {
  color: var(--emerald-400);
  background: rgba(16,185,129,0.06);
}

/* Sections */
.tnc-sections {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tnc-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-emerald-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tnc-section:last-child { border-bottom: none; }

.tnc-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.tnc-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--emerald-400);
  letter-spacing: 1px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
}

.tnc-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-gray-300);
}
.tnc-section p strong {
  color: var(--text-white);
  font-weight: 600;
}
.tnc-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}
.tnc-section ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray-300);
}
.tnc-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

/* Commission table */
.tnc-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-emerald);
}
.tnc-table { width: 100%; border-collapse: collapse; }
.tnc-table thead tr { background: rgba(16,185,129,0.08); }
.tnc-table th {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald-400);
  text-align: left;
  border-bottom: 1px solid var(--border-emerald);
}
.tnc-table td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text-gray-300);
  border-bottom: 1px solid var(--border-emerald-sm);
}
.tnc-table tbody tr:last-child td { border-bottom: none; }
.tnc-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.01); }
.tnc-table tbody tr:last-child td:last-child { color: var(--emerald-400); font-weight: 600; }

/* Contact card */
.tnc-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tnc-contact-row {
  display: flex;
  gap: 24px;
  font-size: 15px;
  color: var(--text-gray-300);
}
.tnc-contact-label {
  font-weight: 700;
  color: var(--emerald-400);
  min-width: 80px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .tnc-body { flex-direction: column; gap: 32px; }
  .tnc-toc  { flex: 0 0 auto; position: static; width: 100%; }
  .tnc-toc-list { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tnc-hero   { padding: 90px 0 60px; }
  .tnc-body   { padding: 40px 0 80px; }
  .tnc-toc-list { grid-template-columns: 1fr; }
  .tnc-heading  { font-size: 17px; }
  .tnc-table th, .tnc-table td { padding: 10px 14px; }
  .tnc-contact-row { flex-direction: column; gap: 4px; }
}
