*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1a56db;
  --blue-dark: #1341b0;
  --blue-light: #2563eb;
  --blue-glow: rgba(26,86,219,0.25);
  --red: #e53e3e;
  --red-dark: #c53030;
  --gold: #d4af37;
  --bg: #0a0f1e;
  --bg2: #0d1326;
  --card: #111827;
  --card2: #1a2235;
  --border: rgba(26,86,219,0.18);
  --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; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 0 20px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 4px 30px var(--blue-glow); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 24px rgba(229,62,62,0.3); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); border-radius: 100px; }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-large { padding: 18px 40px; font-size: 17px; width: 100%; display: block; text-align: center; }
.btn-header { background: var(--blue); color: var(--white); padding: 9px 20px; font-size: 13px; border-radius: 100px; font-weight: 800; }

/* HEADER */
.header { position: sticky; top: 0; z-index: 100; background: rgba(10,15,30,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(--blue); }
.logo .tag { font-size: 10px; background: var(--red); color: var(--white); 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(26,86,219,0.15); color: var(--blue); }

/* MARQUEE */
.bonus-strip { background: linear-gradient(90deg, #07091a, #0d1326, #07091a); border-bottom: 1px solid var(--border); padding: 9px 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: var(--white); font-size: 9px; font-weight: 900; padding: 2px 8px; border-radius: 100px; }
.marquee-tag.blue { background: var(--blue); }
@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 65% -20%, rgba(26,86,219,0.15) 0%, transparent 55%), radial-gradient(ellipse at -10% 110%, rgba(229,62,62,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(26,86,219,0.1), 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(26,86,219,0.12); border: 1px solid rgba(26,86,219,0.3); color: var(--blue); 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(42px,7vw,74px); font-weight: 900; line-height: 1.0; margin-bottom: 22px; text-transform: uppercase; letter-spacing: -2px; }
.hero-title .blue { color: var(--blue); }
.hero-title .red { color: var(--red); }
.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: 52px; }
.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(--blue); 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-title .blue { color: var(--blue); }
.section-title .red { color: var(--red); }
.section-desc { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 680px; margin-bottom: 36px; 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: start; }
.login-box { background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: 0 0 40px rgba(26,86,219,0.07); }
.login-box h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.login-box > p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.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: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; }
.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: 20px; font-weight: 800; margin-bottom: 16px; }
.login-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 14px; }

/* 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; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(26,86,219,0.4); box-shadow: 0 8px 32px rgba(26,86,219,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; }

/* TABLE */
.table-section { padding: 70px 0; background: var(--bg2); }
.data-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.data-table th { background: var(--blue); color: var(--white); padding: 14px 18px; text-align: left; font-size: 14px; font-weight: 800; }
.data-table td { padding: 13px 18px; font-size: 14px; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.06); }
.data-table tr:nth-child(even) td { background: rgba(26,86,219,0.04); }
.data-table tr:hover td { background: rgba(26,86,219,0.08); }
.td-green { color: #48bb78 !important; font-weight: 700; }
.td-red { color: var(--red) !important; font-weight: 700; }

/* PROMO */
.promo-section { padding: 60px 0; background: var(--bg); }
.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(26,86,219,0.4); }
.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(--blue); }

/* SEO ARTICLES */
.articles { padding: 80px 0; background: var(--bg2); }
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.article-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; color: var(--blue); }
.article-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 12px; }
.article-full { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.article-full h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.article-full p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 14px; }
.article-full ul, .article-full ol { padding-left: 22px; margin-bottom: 14px; }
.article-full li { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 6px; }

/* FAQ */
.faq { padding: 80px 0; background: var(--bg); }
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-size: 15px; font-weight: 700; padding: 20px 22px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Barlow', sans-serif; transition: color 0.2s; }
.faq-q:hover { color: var(--blue); }
.faq-q .icon { color: var(--blue); font-size: 22px; font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 22px; font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; transition: max-height 0.3s, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }
.faq-item.open { border-color: rgba(26,86,219,0.3); }

/* CTA */
.cta-section { padding: 90px 0; background: linear-gradient(135deg, #080f24, #050c1c); 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(30px,4vw,50px); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; letter-spacing: -1px; line-height: 1.05; }
.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; }
.cta-step span { width: 30px; height: 30px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; flex-shrink: 0; }
.cta-box { background: var(--card2); border: 1px solid rgba(26,86,219,0.3); border-radius: var(--radius-lg); padding: 40px 36px; text-align: center; }
.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(--blue); line-height: 1; margin-bottom: 28px; text-shadow: 0 0 30px var(--blue-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(--bg2); }
.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(26,86,219,0.4); transform: translateY(-3px); }
.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); }

/* FOOTER */
.footer { padding: 52px 0 36px; background: #060810; 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.4); text-decoration: none; font-weight: 600; padding: 6px 14px; border-radius: 100px; transition: all 0.2s; }
.footer-nav a:hover { color: var(--blue); background: rgba(26,86,219,0.1); }
.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,150,0,0.5); }
.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; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.14); }

/* BOTTOM NAV */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
body { padding-bottom: 64px; }
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999999; display: flex; background: #04060f; border-top: 2px solid var(--blue); box-shadow: 0 -2px 20px rgba(0,0,0,0.8); }
.bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 4px; color: rgba(255,255,255,0.45); text-decoration: none; font-family: Barlow, sans-serif; font-size: 11px; font-weight: 800; border-right: 1px solid rgba(255,255,255,0.06); min-height: 56px; gap: 3px; }
.bottom-nav a:last-child { border-right: none; }
.bottom-nav a.active { background: var(--blue); color: var(--white); }
.bottom-nav a .icon { font-size: 18px; line-height: 1; }
.bottom-nav a .label { font-size: 11px; font-weight: 800; }

@media(max-width:900px) {
  .nav { display: none; }
  .login-grid, .cta-inner, .articles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid, .internal-links-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; }
}
@media(max-width:540px) {
  .features-grid, .internal-links-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px !important; }
  .section-title { font-size: 22px !important; }
  .container { padding: 0 14px !important; }
  .login-box, .cta-box { padding: 24px 18px !important; }
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
