html, body { overflow-x: hidden; max-width: 100vw; }

  .login-page {
    --c-1: #0a0014;
    --c-2: #1a0533;
    --c-3: #ff2e7e;
    --c-4: #ffb800;
    --c-5: #00e5ff;
    --c-6: #ffffff;
    --c-7: rgba(255,255,255,0.08);
    --sp-1: 1rem;
    --sp-2: 2rem;
    --sp-3: 4rem;
    --rad-1: 16px;
    --rad-2: 28px;
    --grad-1: linear-gradient(135deg, #ff2e7e 0%, #ffb800 100%);
    --grad-2: linear-gradient(135deg, #1a0533 0%, #0a0014 100%);
    --shd-1: 0 20px 60px rgba(255, 46, 126, 0.35);
    --shd-2: 0 30px 80px rgba(0,0,0,0.5);

    position: relative;
    padding: var(--sp-3) 0;
    color: var(--c-6);
    background: var(--grad-2);
  }

  .login-page::before {
    content: '';
    position: absolute;
    top: 3%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 46, 126, 0.35), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .login-page::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .login-page > .container { position: relative; z-index: 1; }

  /* HERO */
  .hero-wrap {
    position: relative;
    margin-bottom: var(--sp-3);
    padding: var(--sp-3) var(--sp-2);
    border-radius: var(--rad-2);
    background: linear-gradient(135deg, rgba(255, 46, 126, 0.15), rgba(26, 5, 51, 0.7));
    border: 1px solid rgba(255, 184, 0, 0.2);
    box-shadow: var(--shd-2);
    overflow: hidden;
  }

  .hero-badge {
    display: inline-block;
    margin-bottom: var(--sp-1);
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-4);
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.4);
    border-radius: 50px;
  }

  .main-headline {
    margin: 0 0 var(--sp-1);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
  }
  .main-headline span {
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-lead {
    max-width: 640px;
    margin-bottom: var(--sp-2);
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: var(--sp-2);
    padding-top: var(--sp-2);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .trust-item {
    display: flex;
    flex-direction: column;
  }
  .trust-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-4);
  }
  .trust-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
  }

  .action-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #0a0014;
    background: var(--grad-1);
    border-radius: 50px;
    box-shadow: var(--shd-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(255, 46, 126, 0.55);
    color: #0a0014;
  }
  .action-button.secondary {
    background: transparent;
    color: var(--c-6);
    border: 2px solid var(--c-5);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.25);
    margin-left: 0.8rem;
  }
  .action-button.secondary:hover {
    color: var(--c-6);
    background: rgba(0, 229, 255, 0.1);
  }

  /* Section heads */
  .section-head {
    margin: 0 0 var(--sp-2);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .section-head::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 0.8rem;
    background: var(--grad-1);
    border-radius: 4px;
  }

  /* STEPS TABLE */
  .steps-block {
    margin-bottom: var(--sp-3);
  }
  .steps-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
  }
  .steps-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-4);
  }
  .steps-table td {
    padding: 1.3rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    font-size: 1rem;
    line-height: 1.5;
  }
  .steps-table td:first-child {
    width: 70px;
    border-left: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: var(--rad-1) 0 0 var(--rad-1);
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--grad-1);
    color: #0a0014;
    text-align: center;
  }
  .steps-table td:last-child {
    border-right: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 0 var(--rad-1) var(--rad-1) 0;
  }
  .steps-table tr {
    transition: transform 0.3s ease;
  }
  .steps-table tr:hover {
    transform: translateX(6px);
  }

  /* MOBILE BLOCK */
  .mobile-block {
    margin-bottom: var(--sp-3);
    padding: var(--sp-3) var(--sp-2);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(26, 5, 51, 0.6));
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--rad-2);
  }
  .mobile-perks {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-perks li {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--rad-1);
    border-left: 3px solid var(--c-5);
    line-height: 1.6;
  }
  .mobile-perks li::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--c-5);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--c-5);
    transform: translateY(-50%);
  }
  .mobile-perks strong { color: var(--c-5); }

  /* PASSWORD CARD */
  .password-block {
    margin-bottom: var(--sp-3);
  }
  .password-card {
    padding: var(--sp-2);
    background: var(--grad-1);
    border-radius: var(--rad-2);
    color: #0a0014;
    box-shadow: var(--shd-1);
  }
  .password-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .password-card p {
    margin: 0;
    font-weight: 600;
    line-height: 1.55;
  }
  .password-text {
    padding: var(--sp-2);
    background: rgba(255,255,255,0.04);
    border-radius: var(--rad-2);
    line-height: 1.7;
    height: 100%;
  }

  /* VERIFICATION TIMELINE */
  .verify-block { margin-bottom: var(--sp-3); }
  .timeline {
    position: relative;
    margin-top: var(--sp-2);
    padding-left: 2rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--c-3), var(--c-4));
  }
  .timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--rad-1);
    border: 1px solid rgba(255,255,255,0.08);
    line-height: 1.6;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    background: var(--c-4);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.2);
  }
  .timeline-item strong { color: var(--c-4); }

  .license-note {
    margin-top: var(--sp-2);
    padding: 1.2rem 1.5rem;
    background: rgba(0, 229, 255, 0.06);
    border-left: 3px solid var(--c-5);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
  }

  /* TROUBLESHOOT GRID */
  .trouble-block { margin-bottom: var(--sp-3); }
  .trouble-card {
    height: 100%;
    padding: var(--sp-2);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rad-1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .trouble-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-3);
    box-shadow: 0 20px 50px rgba(255, 46, 126, 0.25);
  }
  .trouble-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-3);
  }
  .trouble-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.8);
  }

  /* FAQ */
  .faq-block { margin-bottom: var(--sp-3); }
  .faq-item {
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rad-1);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
  .faq-item:hover { border-color: rgba(255, 184, 0, 0.4); }
  .faq-q {
    padding: 1.3rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-6);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    line-height: 24px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0014;
    background: var(--c-4);
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  .faq-item[open] .faq-q::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
  }
  .faq-a {
    padding: 0 1.5rem 1.3rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
  }

  /* FINAL CTA */
  .final-cta {
    padding: var(--sp-3) var(--sp-2);
    text-align: center;
    background: var(--grad-1);
    border-radius: var(--rad-2);
    color: #0a0014;
    box-shadow: var(--shd-1);
  }
  .final-cta h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0a0014;
  }
  .final-cta p {
    margin: 0 0 var(--sp-2);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a0533;
  }
  .final-cta .action-button {
    background: #0a0014;
    color: var(--c-4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }
  .final-cta .action-button:hover { color: var(--c-4); }

  @media (max-width: 768px) {
    .login-page { padding: 2rem 0; }
    .hero-wrap, .mobile-block, .password-card, .final-cta { padding: 2rem 1.2rem; }
    .hero-trust { gap: 1rem; }
    .trust-num { font-size: 1.4rem; }
    .action-button { padding: 0.9rem 1.6rem; font-size: 0.9rem; }
    .action-button.secondary { margin-left: 0; margin-top: 0.8rem; }
    .steps-table td { padding: 1rem; font-size: 0.95rem; }
    .steps-table td:first-child { width: 50px; font-size: 1.2rem; }
  }