:root {
      --neon-pink: #d946ef;
      --neon-purple: #a855f7;
      --bg-dark: #0f0a1f; 
      --text-white: #ffffff;
      --text-gray: #a1a1aa;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: linear-gradient(180deg, #2e1065 0%, #000000 100%);
      color: var(--text-white);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px; 
    }

    /* --- CONTENTOR GERAL --- */
    .container {
      position: relative;
      width: 100%;
      max-width: 400px;
      /* Removemos a altura fixa exagerada para o conteúdo ditar o tamanho */
      min-height: 600px; 
      
      background: linear-gradient(180deg, #1e0b36 0%, #0f0518 100%);
      border-radius: 35px;
      border: 1px solid rgba(168, 85, 247, 0.3);
      box-shadow: 0 0 50px rgba(168, 85, 247, 0.25);
      
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 24px 30px 24px;
      overflow: hidden; 
    }

    /* --- HEADER --- */
    .top-bar {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      z-index: 10;
      height: 30px;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .icons { display: flex; gap: 6px; font-size: 12px; }

    /* =========================================
       SECÇÃO 1: SECURITY CHECK
       ========================================= */
    #security-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; /* Garante que tudo é centrado horizontalmente */
      justify-content: center; 
      flex: 1; 
    }

    /* Ícone Quadrado Brilhante */
    .square-glow {
      width: 80px; 
      height: 80px;
      background: linear-gradient(135deg, #d946ef, #7c3aed);
      margin-bottom: 30px; 
      /* Margem auto para forçar o centro se o flex falhar */
      margin-left: auto;
      margin-right: auto;
      
      box-shadow: 0 0 50px rgba(217, 70, 239, 0.6);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .square-glow i {
        font-size: 40px;
        color: #ffffff;
        filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
        display: block; /* Garante que o ícone ocupa espaço */
    }

    /* Título */
    .question-title {
      color: #ffffff;
      width: 100%;
      text-align: center;
      font-weight: 800;
      font-size: 24px;
      line-height: 1.3;
      margin-bottom: 40px;
      text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    }

    /* Botões */
    .btn-group {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    .device-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 18px 24px;
      background: rgba(15, 10, 30, 0.6);
      border: 1px solid rgba(168, 85, 247, 0.5);
      border-radius: 16px;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 17px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .device-btn:active {
      transform: scale(0.98);
      background: rgba(124, 58, 237, 0.15);
    }
    .btn-left { display: flex; align-items: center; gap: 15px; }
    .btn-icon-box { font-size: 26px; width: 30px; text-align: center; display: flex; justify-content: center; }

    /* Footer Stats (Cápsula Preta) - AGORA PERTO DOS BOTÕES */
    .sec-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 18px 25px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      
      /* AQUI ESTÁ A CORREÇÃO DA MARGEM */
      margin-top: 30px; /* Margem fixa pequena em vez de 'auto' */
      flex-shrink: 0;
    }
    .sec-stat-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .sec-stat-val { font-weight: 800; color: #fff; font-size: 13px; }
    .sec-stat-lbl { font-size: 9px; color: #a1a1aa; text-transform: uppercase; letter-spacing: 1px; }
    .lock-icon { color: #4ade80; font-size: 13px; margin-right: 4px; }


    /* =========================================
       SECÇÃO 2: OFFER PAGE
       ========================================= */
    #offer-section {
      width: 100%;
      display: none; 
      flex-direction: column;
      align-items: center;
      animation: fadeIn 0.5s ease-out;
      padding-top: 10px;
    }

    .badge-container {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .badge {
      background: linear-gradient(90deg, #9333ea, #d946ef);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 0 15px rgba(217, 70, 239, 0.5);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .dot { width: 6px; height: 6px; background: #fbbf24; border-radius: 50%; }

    .hero {
      text-align: center;
      margin-bottom: 30px;
      width: 100%;
    }
    .hero h1 {
      font-size: 30px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .pink-glow {
      color: #f0abfc;
      text-shadow: 0 0 20px rgba(217, 70, 239, 0.8);
    }
    .sub-1 { font-size: 14px; margin-bottom: 6px; font-weight: 600; }
    .sub-2 { font-size: 13px; color: #d946ef; font-weight: 500; }

    .cta-btn {
      width: 100%;
      padding: 18px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
      color: white;
      font-weight: 800;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      display: block;
      text-align: center;
      box-shadow: 0 5px 25px rgba(236, 72, 153, 0.4);
      margin-bottom: 25px;
      transition: transform 0.2s;
    }
    .cta-btn:active { transform: scale(0.98); }

    .guide-card {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(168, 85, 247, 0.3);
      border-radius: 16px;
      padding: 20px;
      width: 100%;
      box-shadow: 0 0 30px rgba(0,0,0,0.2);
      margin-bottom: 20px;
    }
    .guide-title {
      text-align: center;
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 18px;
    }
    .guide-item {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }
    .guide-item:last-child { margin-bottom: 0; }
    .check-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: #d946ef;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: white;
      margin-top: 2px;
      box-shadow: 0 0 10px rgba(217, 70, 239, 0.4);
    }
    .guide-text h3 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 2px;
      line-height: 1.2;
    }
    .guide-text p {
      font-size: 12px;
      color: #a1a1aa;
      line-height: 1.3;
    }

    .footer-stats {
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        border: 1px solid rgba(255,255,255,0.05);
        margin-top: 20px;
    }
    .stat-box { text-align: center; flex: 1; display: flex; flex-direction: column; gap: 4px; }
    .stat-val { font-weight: bold; color: #fff; font-size: 14px; }
    .stat-lbl { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
    
    .divider {
      width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 25px 0;
    }

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