/* =========================================
   NEW LANDING PAGE STYLE — CLEAN NEON THEME
   ========================================= */

:root {
  --bg1: #060016;
  --bg2: #140033;
  --bg3: #32007a;
  --accent: #00eaff;
  --accent2: #b400ff;
  --cta1: #ff007a;
  --cta2: #6200ff;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.15);
}

/* ---------- BASE ---------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at top right, var(--bg3) 0%, var(--bg1) 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/money.png");
  background-size: 120px;
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---------- ATTENTION BAR ---------- */
.attention-bar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, var(--cta1), var(--cta2));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 8px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  letter-spacing: 0.3px;
}

/* ---------- HERO SECTION ---------- */
.top-hero {
  padding: 110px 20px 40px; /* reduced bottom padding */
  text-align: center;
  background: radial-gradient(circle at bottom, rgba(255,255,255,0.03) 0%, transparent 80%);
}

.hero-headline {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4rem); /* slightly smaller than before */
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.4px;
  margin: 10px auto 20px;
  max-width: 1000px; /* narrower for better wrapping */
  word-break: keep-all;
}


.hero-headline .gradient {
  background: linear-gradient(90deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0,255,255,0.4));
}

.subhead-lg {
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #f0f0ff;
  margin: 0 auto 30px;
  max-width: 900px;
  line-height: 1.6;
}

.subhead-box {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 34px 24px;
  margin-bottom: 0; /* removes unnecessary gap under it */
  box-shadow: 0 0 30px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.08);
}

.subhead-box p {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.subhead-box .blue-tag {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* ---------- SPLIT SECTION ---------- */
.split {
  padding: 70px 20px 100px;
}

.split-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .split-wrap { grid-template-columns: 1fr; gap: 30px; }
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.bullet-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
  font-family: "Oswald", sans-serif;
  color: #eaeaf7;
  font-size: 1.1rem;
}
.bullet-list i { color: var(--accent); margin-top: 3px; }

/* ---------- OFFER CARD ---------- */
.offer-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  text-align: center;
  backdrop-filter: blur(10px);
}

.badge {
  background: linear-gradient(90deg, var(--cta1), var(--cta2));
  color: #fff;
  font-weight: 800;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,0,184,0.6);
  margin-bottom: 18px;
}

.offer-title {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-copy {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-btn.big {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, var(--cta1), var(--cta2));
  color: #fff;
  padding: 16px 30px;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(255, 0, 184, 0.5);
  transition: 0.25s ease;
}
.cta-btn.big:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 60px rgba(255, 0, 184, 0.8);
}

.share-line {
  color: #bdbde0;
  margin: 12px 0;
  font-size: 0.95rem;
}

.mini-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  text-align: left;
}
.mini-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  color: #e9e9ff;
  font-size: 0.95rem;
}
.mini-points i { color: var(--accent); }

/* ---------- FEATURES ---------- */
.features {
  padding: 90px 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.features-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(0, 255, 247, 0.5);
}
.feature i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature h3 {
  font-family: "Oswald", sans-serif;
  margin: 8px 0;
}
.feature p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 50px 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* ---------- ERROR BOX ---------- */
.error-box {
  max-width: 600px;
  margin: 180px auto;
  padding: 50px 30px;
  background: rgba(255, 60, 60, 0.08);
  border: 1px solid rgba(255, 120, 120, 0.4);
  border-radius: 22px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 50px rgba(255, 80, 80, 0.3);
}
.error-box h2 {
  font-family: "Anton", sans-serif;
  margin-bottom: 10px;
}
.error-box p {
  color: #eee;
  font-size: 1.05rem;
  margin-bottom: 25px;
}


/* ==============================
   DEMO WATERMARK – vivid version
============================== */
.demo-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25); /* brighter core text */
  text-transform: uppercase;
  z-index: 9999;
  text-align: center;
  pointer-events: none;
  user-select: none;
  line-height: 1.3;
  letter-spacing: 2px;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.5),
    0 0 18px rgba(122, 0, 255, 0.4),
    0 0 28px rgba(255, 255, 255, 0.2);
  mix-blend-mode: screen; /* brighter on dark backgrounds */
  opacity: 0.8; /* makes sure the glow shows through */
  filter: blur(0.3px);
}

.demo-watermark small {
  display: block;
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.3);
}
