:root {
  --red: #FF0000;
  --red-dark: #cc0000;
  --red-glow: rgba(255,0,0,0.25);
  --gold: #FFD700;
  --gold-dim: rgba(255,215,0,0.15);
  --dark: #080808;
  --dark2: #0f0f0f;
  --dark3: #161616;
  --dark4: #1e1e1e;
  --dark5: #252525;
  --gray: #666;
  --gray2: #444;
  --white: #ffffff;
  --white60: rgba(255,255,255,0.6);
  --white30: rgba(255,255,255,0.3);
  --white10: rgba(255,255,255,0.1);
  --white06: rgba(255,255,255,0.06);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
}
a {
    text-decoration: none;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ══════════════════════════════════════
    NAVBAR
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,0,0,0.12);
  transition: padding 0.3s;
}
a.logo img {
    width: 167px;
}
 .logo-yt { background: var(--red); color: var(--white); padding: 2px 7px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--white60); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background: var(--red) !important; color: var(--white) !important; padding: 9px 22px !important; border-radius: 6px; font-weight: 600 !important; transition: all 0.2s !important; }
.btn-nav:hover { background: #e00 !important; box-shadow: 0 4px 20px var(--red-glow) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; transition: 0.3s; }

/* ══════════════════════════════════════
    HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;     padding: 170px 5vw 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,0,0,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,215,0,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255,0,0,0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content { position: relative;  margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3);
  color: #ff7070; font-size: 0.75rem; font-weight: 700;
  padding: 7px 18px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 30px; animation: fadeUp 0.7s ease both;
}
.badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -2.5px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .red { color: var(--red); }
.hero h1 .gold { color: var(--gold); }
.hero-line { display: block; }

.hero-sub {
      max-width: 70%; margin: 22px auto 36px;
  font-size: 1.05rem; color: var(--white60); line-height: 1.75; font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 15px 36px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 4px 28px var(--red-glow);
}
.btn-primary:hover { background: #e00; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,0,0,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 36px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--white10); cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--white30); background: var(--white06); }

/* ── FLOATING STATS CARDS ── */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 70px;
  animation: fadeUp 0.7s 0.45s ease both;
}
.stat-card {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 22px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,0,0,0.2); }
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-label { font-size: 0.72rem; color: var(--gray); margin-top: 6px; letter-spacing: 0.5px; text-transform: uppercase; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
    SECTION UTILITY
══════════════════════════════════════ */
section { padding: 90px 5vw; }
.sec-tag {
  display: inline-block; background: rgba(255,0,0,0.08); border: 1px solid rgba(255,0,0,0.2);
  color: #ff7070; font-size: 0.7rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 700; letter-spacing: -1px; line-height: 1.15;
}
.sec-sub { color: var(--white60); font-size: 0.95rem; line-height: 1.75; margin-top: 12px; font-weight: 300; max-width: 480px; }
.tc { text-align: center; }
.tc .sec-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
    HOW IT WORKS
══════════════════════════════════════ */
#how { background: var(--dark2); }
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.steps-wrap::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,0.3), rgba(255,215,0,0.3), transparent);
}
.step {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 30px 24px;
  position: relative; text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(255,0,0,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,0,0,0.2), rgba(255,0,0,0.05));
  border: 1px solid rgba(255,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--red);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step-icon-em { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.step p { font-size: 0.85rem; color: var(--white60); line-height: 1.65; }

/* ══════════════════════════════════════
    INCOME PLAN TABLE
══════════════════════════════════════ */
#plan { background: var(--dark); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.table-outer {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,0,0,0.15);
  box-shadow: 0 0 60px rgba(255,0,0,0.06);
}
table { width: 100%; border-collapse: collapse; }
thead tr { background: linear-gradient(135deg, #c00, #7a0000); }
thead th {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.85);
  padding: 16px 18px; text-align: center;
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,0,0,0.06); }
tbody td { padding: 14px 18px; text-align: center; font-size: 0.85rem; color: var(--white60); font-family: var(--font-mono); }
.lvl-badge {
  display: inline-block; background: rgba(255,0,0,0.12); color: #ff6060;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  padding: 3px 10px; border-radius: 5px; border: 1px solid rgba(255,0,0,0.2);
}
.income-amt { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.monthly-amt { font-family: var(--font-head); font-weight: 700; color: #5eff9a; font-size: 0.9rem; }

.plan-info-side { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 28px 26px;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: rgba(255,0,0,0.15); }
.info-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.info-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.info-card p { font-size: 0.85rem; color: var(--white60); line-height: 1.65; }
.info-card .highlight { color: var(--gold); font-weight: 600; }
.info-card .highlight-red { color: #ff6060; font-weight: 600; }
.plan-note {
  margin-top: 20px; padding: 18px 22px;
  background: rgba(255,215,0,0.05); border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--white60); line-height: 1.65;
}
.plan-note strong { color: var(--gold); }

/* ══════════════════════════════════════
    WITHDRAWAL STRUCTURE
══════════════════════════════════════ */
#withdraw { background: var(--dark2); }
.withdraw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.w-card {
  border-radius: 18px; padding: 44px 36px; position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.w-card:hover { transform: translateY(-5px); }
.w-card.cash {
  background: linear-gradient(135deg, rgba(255,0,0,0.12), rgba(80,0,0,0.06));
  border: 1px solid rgba(255,0,0,0.2);
}
.w-card.shop {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(120,90,0,0.05));
  border: 1px solid rgba(255,215,0,0.2);
}
.w-pct { font-family: var(--font-head); font-size: 5rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.w-card.cash .w-pct { color: var(--red); }
.w-card.shop .w-pct { color: var(--gold); }
.w-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.w-card p { font-size: 0.88rem; color: var(--white60); line-height: 1.65; }
.w-rule {
  margin-top: 32px; padding: 22px;
  background: rgba(0,0,0,0.3); border-radius: var(--radius-sm);
  border: 1px solid var(--white06);
}
.w-rule h5 { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; color: #ff7070; }
.w-rule ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.w-rule li { font-size: 0.82rem; color: var(--white60); display: flex; align-items: flex-start; gap: 8px; }
.w-rule li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════
    COMPANY INCOME MODEL
══════════════════════════════════════ */
#income-model { background: var(--dark); }
.income-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.income-card {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 30px 26px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.income-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,0,0,0.06), transparent 60%);
}
.income-card:hover { transform: translateY(-5px); border-color: rgba(255,0,0,0.18); }
.income-card .big-pct { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.income-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.income-card p { font-size: 0.82rem; color: var(--white60); line-height: 1.6; }

/* ══════════════════════════════════════
    REWARDS
══════════════════════════════════════ */
#rewards { background: var(--dark2); }
.rewards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.reward {
  background: var(--dark4); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 30px 22px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.reward:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.reward-em { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.reward h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.reward p { font-size: 0.8rem; color: var(--gray); margin-bottom: 14px; }
.reward-level {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 50px;
  background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(255,215,0,0.2);
}

/* ══════════════════════════════════════
    WHY US
══════════════════════════════════════ */
#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.why-card {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: rgba(255,0,0,0.18); }
.why-icon-box {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,0,0,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.why-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.why-card p { font-size: 0.83rem; color: var(--white60); line-height: 1.65; }

/* ══════════════════════════════════════
    TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--dark2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.testi {
  background: var(--dark3); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 30px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 14px; }
.testi-text {
  font-size: 0.87rem; color: var(--white60); line-height: 1.7;
  margin-bottom: 22px; font-style: italic;
}
.testi-text::before { content: '"'; font-size: 2.5rem; color: var(--red); line-height: 0; vertical-align: -0.5rem; margin-right: 3px; opacity: 0.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.testi-loc { font-size: 0.75rem; color: var(--gray); }

/* ══════════════════════════════════════
    SOFTWARE FEATURES STRIP
══════════════════════════════════════ */
#software { background: var(--dark3); border-top: 1px solid var(--white06); border-bottom: 1px solid var(--white06); }
.features-scroll { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.feature-item {
  padding: 30px 24px; text-align: center;
  border-right: 1px solid var(--white06);
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,0,0,0.04); }
.feature-em { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.feature-item h5 { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.75rem; color: var(--gray); }

/* ══════════════════════════════════════
    JOIN CTA
══════════════════════════════════════ */
#join {
  background: var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
#join::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,0,0,0.08), transparent),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(255,215,0,0.04), transparent);
}
.join-box { position: relative; max-width: 640px; margin: 0 auto; }
.join-title { font-family: var(--font-head); font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px; }
.join-sub { font-size: 0.95rem; color: var(--white60); margin-bottom: 40px; line-height: 1.7; }
.join-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.join-input {
  flex: 1; min-width: 200px; max-width: 280px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.join-input::placeholder { color: var(--white30); }
.join-input:focus { border-color: rgba(255,0,0,0.4); }
.join-btn-big {
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 4px 24px var(--red-glow);
}
.join-btn-big:hover { background: #e00; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(255,0,0,0.45); }
.join-disclaimer { font-size: 0.75rem; color: var(--white30); margin-top: 8px; }
.join-note { margin-top: 28px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.join-note-item { font-size: 0.8rem; color: var(--white60); display: flex; align-items: center; gap: 6px; }
.join-note-item span.dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; display: inline-block; }

/* ══════════════════════════════════════
    IMPORTANT RULES SECTION
══════════════════════════════════════ */
#rules { background: var(--dark2); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.rule-card {
  background: var(--dark4); border: 1px solid var(--white06);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.rule-card:hover { border-color: rgba(255,0,0,0.18); transform: translateY(-4px); }
.rule-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;     color: rgb(255 255 255); line-height: 1; margin-bottom: 14px; }
.rule-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: var(--white); }
.rule-card p { font-size: 0.82rem; color: var(--white60); line-height: 1.65; }

/* ══════════════════════════════════════
    FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark2); border-top: 1px solid var(--white06);
  padding: 60px 5vw 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo-wrap a { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; text-decoration: none; color: var(--white); }
.footer-logo-wrap a span { color: var(--red); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.7; max-width: 270px; }
.foot-col h5 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white60); margin-bottom: 16px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--white06); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.soc-links { display: flex; gap: 10px; }
.soc { width: 34px; height: 34px; border-radius: 7px; background: var(--white06); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.soc:hover { background: rgba(255,0,0,0.12); border-color: rgba(255,0,0,0.25); }

/* ══════════════════════════════════════
    SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
    MOBILE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .plan-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .income-grid { grid-template-columns: 1fr 1fr; }
  .rewards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-scroll { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .steps-wrap::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .withdraw-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  nav { padding: 14px 4vw; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); padding: 22px; gap: 18px; border-bottom: 1px solid var(--white06); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .steps-wrap { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .income-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .features-scroll { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  thead th, tbody td { padding: 12px 10px; font-size: 0.75rem; }
  .w-card { padding: 30px 24px; }
  .w-pct { font-size: 3.5rem; }
}
.login-card {
            background: var(--dark3);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius);
            padding: 45px 40px;
            width: 100%;
            max-width: 420px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }

        .admin-badge {
            display: inline-block;
            background: rgba(255,0,0,0.15);
            color: #ff4d4d;
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 5px 12px;
            border-radius: 50px;
            border: 1px solid rgba(255,0,0,0.3);
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .login-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
        .login-sub { font-size: 0.9rem; color: var(--white60); margin-bottom: 30px; line-height: 1.5; }

        /* Error Box Styling */
        .error-box {
            background: rgba(255,0,0,0.1);
            border: 1px solid rgba(255,0,0,0.3);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            margin-bottom: 20px;
        }
        .error-box ul { margin: 0; padding-left: 20px; color: #ff6060; font-size: 0.85rem; font-weight: 500; }

        /* Form Inputs */
        .input-group { margin-bottom: 22px; text-align: left; }
        .input-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--white60); font-weight: 500; }

        .form-control {
            width: 100%;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: var(--font-body);
            outline: none;
            transition: border-color 0.3s, background 0.3s;
        }
        .form-control:focus { border-color: rgba(255,0,0,0.5); background: rgba(255,255,255,0.06); }
        .form-control::placeholder { color: rgba(255,255,255,0.2); }

        /* Checkbox */
        .checkbox-group { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
        .checkbox-group input { width: 16px; height: 16px; accent-color: var(--red); cursor: pointer; }
        .checkbox-group label { font-size: 0.85rem; color: var(--white60); cursor: pointer; user-select: none; }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            background: var(--red);
            color: var(--white);
            padding: 15px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 20px var(--red-glow);
        }
        .btn-submit:hover { background: #e00; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,0,0.4); }

        .lock-icon { position: absolute; right: 18px; top: 40px; color: rgba(255,255,255,0.2); pointer-events: none; }
.auth-wrapper {
        min-height: 100vh;
        display: flex; align-items: center; justify-content: center;
        padding: 120px 5vw 80px;
        position: relative;
    }
    /* Add noise and gradient to background */
    .auth-wrapper::before {
        content: ''; position: absolute; inset: 0;
        background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,0,0,0.05), transparent 70%);
        pointer-events: none;
    }
    .auth-card {
        background: var(--dark3);
        border: 1px solid var(--white06);
        border-radius: var(--radius);
        padding: 40px;
        width: 100%;
        max-width: 420px;
        position: relative;
        z-index: 2;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        text-align: center;
    }
    .auth-title {  font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
    .auth-sub { font-size: 0.9rem; color: var(--white60); margin-bottom: 30px; }

    .auth-input-group { margin-bottom: 20px; text-align: left; }
    .auth-input-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--white60); font-weight: 500; }
    .auth-input {
        width: 100%;
        background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
        color: var(--white); padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem;
         outline: none; transition: border-color 0.2s, background 0.2s;
    }
    .auth-input:focus { border-color: rgba(255,0,0,0.4); background: rgba(255,255,255,0.06); }
    .auth-input.is-invalid { border-color: #ff6060; }
    .auth-error { color: #ff6060; font-size: 0.75rem; display: block; margin-top: 6px; font-weight: 500; }

    .auth-btn { width: 100%; margin-top: 10px; }
    .auth-link { color: var(--red); text-decoration: none; font-weight: 600; transition: color 0.2s; }
    .auth-link:hover { color: #ff4d4d; }
    .auth-footer { margin-top: 24px; font-size: 0.85rem; color: var(--white60); }
