:root {
      --cyan: #22D3EE;
      --violet: #8B5CF6;
      --pink: #FF3EA5;
      --dark: #0a0714;
      --card: rgba(255,255,255,0.04);
      --border: rgba(139,92,246,0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(139,92,246,0.16) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 95% 25%, rgba(34,211,238,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at -5% 65%, rgba(255,62,165,0.09) 0%, transparent 50%),
        var(--dark);
      background-attachment: fixed;
      color: white;
      overflow-x: hidden;
      padding-bottom: 120px;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px 60px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-glow {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    }

    .badge-top {
      background: linear-gradient(90deg, rgba(139,92,246,0.15), rgba(255,150,0,0.15));
      border: 1px solid rgba(139,92,246,0.3);
      color: var(--violet);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
      animation: fadeDown 0.6s ease both;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 20vw, 8rem);
      line-height: 0.9;
      text-align: center;
      position: relative;
      z-index: 1;
      animation: fadeDown 0.7s 0.1s ease both;
    }

    .hero-title .line1 { color: white; display: block; }
    .hero-title .line2 {
      display: block;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--violet), var(--cyan));
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: shimmer 3s linear infinite, fadeDown 0.7s 0.1s ease both;
    }

    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    @keyframes hueShift {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }
    .hue-shimmer {
      animation: hueShift 4s linear infinite;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.55);
      margin: 16px 0 36px;
      text-align: center;
      position: relative;
      z-index: 1;
      animation: fadeDown 0.7s 0.2s ease both;
    }

    /* ── OFFER CARD ── */
    .offer-card {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(139,92,246,0.2);
      border-radius: 28px;
      padding: 36px 28px;
      width: 100%;
      max-width: 420px;
      backdrop-filter: blur(20px);
      animation: fadeUp 0.8s 0.3s ease both;
      box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
    }

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

    .offer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 28px;
    }

    .offer-box {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 18px 12px;
      text-align: center;
    }

    .offer-box .label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 6px;
    }

    .offer-box .amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      line-height: 1;
      color: white;
    }

    .offer-box.highlight {
      background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(255,100,0,0.08));
      border-color: rgba(139,92,246,0.3);
    }

    .offer-box.highlight .amount {
      background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .offer-arrow {
      font-size: 1.6rem;
      color: rgba(139,92,246,0.5);
      flex-shrink: 0;
    }

    /* ── CTA BUTTON ── */
    .cta-btn {
      display: block;
      width: 100%;
      padding: 18px;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--violet), var(--cyan));
      background-size: 200% auto;
      color: #000;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(139,92,246,0.4);
      animation: gradMove 3s linear infinite;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .cta-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
      transform: translateX(-100%);
      animation: sweep 2.5s 1.5s ease infinite;
    }

    @keyframes sweep {
      0% { transform: translateX(-100%); }
      40%, 100% { transform: translateX(100%); }
    }

    @keyframes gradMove {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .cta-btn:active { transform: scale(0.97); }

    .urgency-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
    }

    .dot-live {
      width: 7px; height: 7px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 8px #00ff88;
      animation: blink 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* ── TIMER ── */
    .timer-section {
      max-width: 420px;
      margin: 0 auto 32px;
      padding: 0 20px;
      animation: fadeUp 0.8s 0.5s ease both;
    }

    .timer-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 12px;
    }

    .timer-boxes {
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .timer-box {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(139,92,246,0.12);
      border-radius: 14px;
      padding: 14px 8px;
      text-align: center;
    }

    .timer-box .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: var(--violet);
      line-height: 1;
    }

    .timer-box .unit {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
      margin-top: 4px;
    }

    /* ── CONTAINER ── */
    .container {
      max-width: 460px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ── FEATURES ── */
    .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 32px 0;
      animation: fadeUp 0.8s 0.6s ease both;
    }

    .feature-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 20px 16px;
      transition: border-color 0.3s, background 0.3s;
    }

    .feature-item:hover {
      border-color: rgba(139,92,246,0.2);
      background: rgba(139,92,246,0.03);
    }

    .feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .feature-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
    .feature-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

    /* ── REVIEWS ── */
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: 0.03em;
      margin-bottom: 20px;
      background: linear-gradient(90deg, white, rgba(255,255,255,0.7));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .rating-row {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .rating-score {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--violet);
      line-height: 1;
      flex-shrink: 0;
    }

    .stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; }
    .rating-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

    .review-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 20px;
      margin-bottom: 12px;
      transition: border-color 0.3s;
    }

    .review-card:hover { border-color: rgba(139,92,246,0.15); }

    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .review-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .review-name { font-weight: 600; font-size: 0.9rem; }
    .review-date { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
    .review-stars { color: #FFD700; font-size: 0.85rem; margin-left: auto; flex-shrink: 0; }
    .review-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

    .trustpilot-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--violet);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 16px;
      padding: 12px;
      border: 1px solid rgba(139,92,246,0.2);
      border-radius: 12px;
      transition: background 0.2s;
    }

    .trustpilot-link:hover { background: rgba(139,92,246,0.05); }

    /* ── FAQ ── */
    .faq-item {
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .faq-item.active { border-color: rgba(139,92,246,0.25); }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.92rem;
      gap: 12px;
      transition: color 0.2s;
    }

    .faq-item.active .faq-question { color: var(--violet); }

    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }

    .faq-item.active .faq-icon {
      background: rgba(139,92,246,0.12);
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.2s ease;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 0 20px 20px;
    }

    /* ── AFFILIATE BTN ── */
    .affiliate-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 17px 28px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      margin: 32px 0 24px;
      transition: background 0.2s, border-color 0.2s;
    }

    .affiliate-btn:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.2);
    }

    .affiliate-icon {
      width: 32px; height: 32px;
      background: linear-gradient(135deg, #229ED9, #1a7fc1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    /* ── WARNING ── */
    .warning {
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.2);
      line-height: 1.6;
      padding: 0 10px 20px;
    }

    /* ── STICKY CTA ── */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0; right: 0;
      padding: 16px 20px;
      background: linear-gradient(to top, var(--dark) 60%, transparent);
      z-index: 100;
    }

    .sticky-cta a {
      display: block;
      max-width: 420px;
      margin: 0 auto;
      padding: 18px;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--violet), var(--cyan));
      background-size: 200% auto;
      color: #000;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      text-decoration: none;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(139,92,246,0.4);
      animation: gradMove 3s linear infinite;
      position: relative;
      overflow: hidden;
    }

    .sticky-cta a::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%);
      animation: sweep 2.5s 1s ease infinite;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.15), transparent);
      margin: 36px 0;
    }

    .section { margin: 36px 0; }

    /* ── TOP NAV ── */
    .top-nav {
      max-width: 600px;
      margin: 0 auto;
      padding: 16px 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 2;
    }
    .nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px;
      border: 1px solid rgba(139,92,246,0.25);
      border-radius: 20px;
      background: rgba(255,255,255,0.04);
      color: white;
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .nav-btn.nav-btn-primary {
      background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(255,62,165,0.14));
      border-color: rgba(139,92,246,0.4);
      color: var(--violet);
    }