*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #17a349;
  --green-light: #1DB954;
  --green-glow: rgba(23,163,73,0.25);
  --red: #E63946;
  --red-dark: #C1121F;
  --red-glow: rgba(230,57,70,0.2);
  --gold: #FFD700;
  --gold-dark: #FFA500;
  --bg: #0D1A12;
  --bg2: #0B1410;
  --card: #162B1C;
  --card2: #112016;
  --border: rgba(23,163,73,0.15);
  --white: #FFFFFF;
  --gray: rgba(255,255,255,0.6);
  --radius: 14px;
  --radius-lg: 22px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--white); font-size: 16px; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 100px; font-weight: 800; font-size: 15px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Barlow', sans-serif; letter-spacing: 0.3px; }
.btn-primary { background: var(--green); color: #000; box-shadow: 0 0 20px var(--green-glow); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 30px var(--green-glow); }
.btn-gold { background: linear-gradient(135deg, #FFD700, #FF8C00); color: #000; box-shadow: 0 0 20px rgba(255,215,0,0.2); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 4px 30px rgba(255,215,0,0.35); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); border-radius: 100px; }
.btn-outline:hover { background: var(--green); color: #000; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-large { padding: 18px 40px; font-size: 17px; width: 100%; }
.btn-header { background: var(--green); color: #000; padding: 9px 20px; font-size: 13px; border-radius: 100px; font-weight: 800; }

/* HEADER */
.header { position: sticky; top: 0; z-index: 100; background: rgba(11,20,16,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -1px; display: flex; align-items: center; gap: 6px; }
.logo span { color: var(--green); }
.logo .vip-tag { font-size: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; padding: 2px 7px; border-radius: 6px; font-weight: 900; letter-spacing: 0.5px; }
.nav { display: flex; gap: 6px; }
.nav a { color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 700; font-size: 14px; padding: 7px 14px; border-radius: 100px; transition: all 0.2s; }
.nav a:hover, .nav a.active { color: var(--white); background: rgba(29,185,84,0.12); }
.nav a.active { color: var(--green); }

/* MARQUEE */
.bonus-strip { background: linear-gradient(90deg, #071209, #0c1e10, #071209); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 48px; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.marquee-tag { background: var(--red); color: #fff; font-size: 9px; font-weight: 900; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.5px; }
.marquee-tag.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HERO */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% -20%, rgba(29,185,84,0.12) 0%, transparent 55%), radial-gradient(ellipse at -10% 110%, rgba(29,185,84,0.06) 0%, transparent 45%), var(--bg); }
.hero-glow { position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(29,185,84,0.08), transparent 65%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(29,185,84,0.1); border: 1px solid rgba(29,185,84,0.25); color: var(--green); font-size: 13px; font-weight: 700; padding: 7px 18px; border-radius: 100px; margin-bottom: 28px; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(44px, 7vw, 76px); font-weight: 900; line-height: 1.0; margin-bottom: 22px; text-transform: uppercase; letter-spacing: -2px; }
.hero-title .green { color: var(--red); }
.hero-title .gold { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 620px; margin-bottom: 38px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; flex-wrap: wrap; }
.stat strong { font-size: 26px; font-weight: 900; color: var(--green); display: block; line-height: 1.1; }
.stat span { font-size: 13px; color: rgba(255,255,255,0.4); }

/* SEO TEXT */
.seo-text { font-size: 13px; color: rgba(255,255,255,0.2); line-height: 1.9; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.04); max-width: 900px; }
.seo-text h2 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.25); margin: 16px 0 6px; }

/* SECTION */
.section-label { font-size: 11px; font-weight: 900; color: var(--red); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,4vw,46px); font-weight: 900; text-transform: uppercase; margin-bottom: 14px; letter-spacing: -1px; line-height: 1.05; }
.section-desc { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 680px; margin-bottom: 40px; line-height: 1.7; }

/* LOGIN BOX */
.login-section { padding: 80px 0; background: var(--bg2); }
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.login-box { background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: 0 0 40px rgba(29,185,84,0.08); }
.login-box h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; letter-spacing: -0.5px; }
.login-box > p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.login-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.login-step { display: flex; align-items: flex-start; gap: 16px; }
.login-step .num { width: 34px; height: 34px; min-width: 34px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; box-shadow: 0 0 12px var(--red-glow); }
.login-step .txt strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.login-step .txt span { font-size: 13px; color: rgba(255,255,255,0.45); }
.login-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.login-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 16px; }

/* FEATURES */
.features { padding: 80px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: all 0.25s; cursor: default; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(29,185,84,0.4); box-shadow: 0 8px 32px rgba(29,185,84,0.08); }
.feature-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* PROMO */
.promo-section { padding: 60px 0; background: var(--bg2); }
.promo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.promo-badge { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; transition: all 0.2s; }
.promo-badge:hover { transform: translateY(-4px); border-color: rgba(29,185,84,0.4); box-shadow: 0 8px 24px rgba(29,185,84,0.07); }
.promo-badge .pi { font-size: 32px; margin-bottom: 12px; }
.promo-badge h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: rgba(255,255,255,0.75); }
.promo-val { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--green); }

/* VIP */
.vip-section { padding: 80px 0; background: linear-gradient(180deg, #0a1a0c, #0d2210); border-top: 1px solid rgba(255,215,0,0.08); border-bottom: 1px solid rgba(255,215,0,0.08); }
.vip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vip-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25); color: var(--gold); font-size: 13px; font-weight: 700; padding: 7px 18px; border-radius: 100px; margin-bottom: 22px; }
.vip-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,52px); font-weight: 900; text-transform: uppercase; margin-bottom: 18px; letter-spacing: -1px; line-height: 1.05; }
.vip-title .gold { color: var(--gold); }
.vip-desc { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 30px; line-height: 1.75; }
.vip-perks { display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.vip-perk { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); }
.vip-perk::before { content: "✦"; color: var(--gold); font-size: 12px; flex-shrink: 0; }
.vip-card { background: linear-gradient(145deg, #162b10, #0d2008); border: 1px solid rgba(255,215,0,0.2); border-radius: var(--radius-lg); padding: 40px 34px; text-align: center; box-shadow: 0 0 40px rgba(255,215,0,0.06); }
.vip-card-title { font-size: 12px; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.vip-card-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; text-shadow: 0 0 30px rgba(255,215,0,0.3); }
.vip-card-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 30px; }
.vip-card-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; text-align: left; }
.vip-card-perk { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }
.vip-card-perk::before { content: "✓"; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* APP */
.app-section { padding: 80px 0; background: var(--bg); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.app-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.app-step { display: flex; align-items: flex-start; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; transition: border-color 0.2s; }
.app-step:hover { border-color: rgba(29,185,84,0.35); }
.app-step .num { width: 36px; height: 36px; min-width: 36px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; }
.app-step .txt strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.app-step .txt span { font-size: 13px; color: rgba(255,255,255,0.45); }
.app-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; color: var(--red); }
.app-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 14px; }
.app-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.app-badge { background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 10px 18px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }

/* CTA */
.cta-section { padding: 90px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,50px); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; letter-spacing: -1px; line-height: 1.05; }
.cta-text h2 .green { color: var(--green); }
.cta-text p { color: rgba(255,255,255,0.55); margin-bottom: 32px; font-size: 15px; line-height: 1.7; }
.cta-steps { display: flex; flex-direction: column; gap: 14px; }
.cta-step { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); }
.cta-step span { width: 30px; height: 30px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; flex-shrink: 0; box-shadow: 0 0 12px var(--red-glow); }
.cta-box { background: var(--card2); border: 1px solid rgba(29,185,84,0.25); border-radius: var(--radius-lg); padding: 40px 36px; text-align: center; box-shadow: 0 0 50px rgba(29,185,84,0.07); }
.cta-highlight { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.cta-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 68px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 28px; text-shadow: 0 0 30px var(--green-glow); }
.cta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* INTERNAL LINKS */
.internal-links { padding: 50px 0; background: var(--bg); }
.internal-links-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.internal-link-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-decoration: none; transition: all 0.2s; display: block; }
.internal-link-card:hover { border-color: rgba(29,185,84,0.4); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(29,185,84,0.07); }
.internal-link-card .arrow { color: var(--red); font-size: 22px; margin-bottom: 12px; display: block; }
.internal-link-card h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.internal-link-card p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* VIP TIERS */
.vip-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.vip-tier { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.2s; }
.vip-tier.featured { background: linear-gradient(145deg, #1a3012, #0f2009); border-color: rgba(255,215,0,0.3); box-shadow: 0 0 40px rgba(255,215,0,0.06); }
.vip-tier-name { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.vip-tier-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.vip-tier-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.vip-tier-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.vip-tier-perks li { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 10px; }
.vip-tier-perks li::before { content: "✓"; font-weight: 900; flex-shrink: 0; }

/* FOOTER */
.footer { padding: 52px 0 36px; background: #070e09; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-nav { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 600; padding: 6px 14px; border-radius: 100px; transition: all 0.2s; }
.footer-nav a:hover { color: var(--green); background: rgba(29,185,84,0.08); }
.footer-text { font-size: 13px; color: rgba(255,255,255,0.28); max-width: 640px; line-height: 1.7; }
.footer-warning { font-size: 13px; color: rgba(255,200,0,0.4); }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.2); text-decoration: none; padding: 4px 12px; border-radius: 100px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.14); }

@media(max-width:900px){
  .nav { display: none; }
  .login-grid, .vip-grid, .app-grid, .cta-inner { grid-template-columns: 1fr; }
  .features-grid, .vip-tiers { grid-template-columns: 1fr 1fr; }
  .promo-grid, .internal-links-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 24px; }
  .hero-cta { flex-direction: column; }
}
@media(max-width:540px){
  .features-grid, .vip-tiers, .internal-links-grid { grid-template-columns: 1fr; }
}

/* MOBILE FIXES */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
@media(max-width:600px) {
  .features-grid, .promo-grid, .login-grid, .vip-grid,
  .app-grid, .cta-inner, .internal-links-grid, .vip-tiers {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .hero-stats { gap: 16px !important; flex-wrap: wrap !important; }
  .hero-cta { flex-direction: column !important; }
  .hero-title { font-size: 32px !important; letter-spacing: -1px !important; }
  .section-title { font-size: 22px !important; }
  .container { padding: 0 14px !important; }
  .login-box, .cta-box { padding: 24px 18px !important; }
  .vip-card { padding: 28px 20px !important; }
}
