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

    :root {
      --bg:      #0d0f13;
      --surface: #13161c;
      --border:  #1f2330;
      --accent:  #e85d2e;
      --discord: #5865f2;
      --discord-hover: #4752c4;
      --text:    #e8eaf0;
      --muted:   #5a5f72;
      --mono:    'Space Mono', monospace;
      --sans:    'DM Sans', sans-serif;
    }

    html, body {
      height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
    }

    /* ── Background grid ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(232,93,46,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,93,46,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    /* ── Glow ── */
    body::after {
      content: '';
      position: fixed;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(232,93,46,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
      z-index: 1;
    }

    /* ── Card ── */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 3rem 3.5rem;
      width: 100%;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
      animation: rise 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

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

    /* ── Logo ── */
    .logo {
      font-family: var(--mono);
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .logo .accent { color: var(--accent); }

    .tagline {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
      font-family: var(--mono);
    }

    /* ── Divider ── */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 0 -3.5rem 2.5rem;
    }

    /* ── Info block ── */
    .info {
      background: rgba(88, 101, 242, 0.06);
      border: 1px solid rgba(88, 101, 242, 0.2);
      border-radius: 8px;
      padding: 1rem 1.25rem;
      margin-bottom: 2rem;
      text-align: left;
    }
    .info-title {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #8891f0;
      font-family: var(--mono);
      margin-bottom: 0.5rem;
    }
    .info-text {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .info-text strong { color: var(--text); }

    /* ── Discord Button ── */
    .btn-discord {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
      background: var(--discord);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 0.85rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--sans);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
      box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
    }
    .btn-discord:hover {
      background: var(--discord-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(88, 101, 242, 0.45);
    }
    .btn-discord:active { transform: translateY(0); }

    .btn-discord svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    /* ── Error state ── */
    .error-box {
      background: rgba(232, 93, 46, 0.08);
      border: 1px solid rgba(232, 93, 46, 0.3);
      border-radius: 8px;
      padding: 0.9rem 1.2rem;
      margin-bottom: 1.5rem;
      font-size: 0.84rem;
      color: #f09070;
      display: none;
    }
    .error-box.visible { display: block; }

    /* ── Footer ── */
    footer {
      margin-top: 2rem;
      font-size: 0.72rem;
      color: var(--muted);
      font-family: var(--mono);
    }

    /* ── Language switcher (inside the card) ── */
    .lang-switcher {
      display: flex;
      justify-content: flex-end;
      gap: .35rem;
      margin-bottom: 1.2rem;
    }
    .lang-btn {
      background: none;
      border: 1px solid var(--border);
      color: var(--muted);
      border-radius: 4px;
      font-family: var(--mono);
      font-size: .7rem;
      padding: .15rem .45rem;
      cursor: pointer;
      letter-spacing: .05em;
      transition: border-color .15s, color .15s;
    }
    .lang-btn:hover   { border-color: var(--accent); color: var(--text); }
    .lang-btn--active { border-color: var(--accent); color: var(--accent); font-weight: 700; }

    /* ── Responsive (mobile) ── */
    @media (max-width: 480px) {
      .card {
        padding: 2rem 1.5rem;
        border-radius: 8px;
      }
      /* Extend the divider to the new narrower horizontal padding */
      .divider {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
      }
    }