    :root {
      --bg: #050816;
      --surface: rgba(15, 23, 42, 0.78);
      --surface-strong: rgba(15, 23, 42, 0.94);
      --border: rgba(148, 163, 184, 0.18);
      --border-strong: rgba(125, 211, 252, 0.36);
      --text: #f8fafc;
      --muted: #94a3b8;
      --muted-2: #64748b;
      --blue: #38bdf8;
      --cyan: #22d3ee;
      --green: #22c55e;
      --red: #fb7185;
      --purple: #a78bfa;
      --line: rgba(255, 255, 255, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Inter, Arial, sans-serif;
    }

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
    }

    body {
      position: relative;
      isolation: isolate;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      z-index: -2;
      width: 44vw;
      height: 44vw;
      min-width: 520px;
      min-height: 520px;
      border-radius: 999px;
      filter: blur(70px);
      opacity: 0.38;
      animation: flutuar 13s ease-in-out infinite alternate;
      pointer-events: none;
    }

    body::before {
      left: -14vw;
      top: -18vw;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.9), transparent 64%);
    }

    body::after {
      right: -17vw;
      bottom: -20vw;
      background: radial-gradient(circle, rgba(167, 139, 250, 0.72), transparent 64%);
      animation-delay: -5s;
    }

    .background-grid {
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 82%);
      opacity: 0.35;
      pointer-events: none;
    }

    .access-page {
      width: 100%;
      height: 100dvh;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .access-card {
      width: min(440px, 100%);
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.84));
      box-shadow: var(--shadow);
      padding: 32px;
      animation: subir 0.7s ease both;
    }

    .access-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
      transform: translateX(-100%);
      animation: brilho 5.5s ease-in-out infinite;
      pointer-events: none;
    }

    .access-card::after {
      content: "";
      position: absolute;
      inset: auto 28px 0 28px;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.75), transparent);
      opacity: 0.85;
    }

    .brand {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .brand-icon {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(167, 139, 250, 0.18));
      border: 1px solid var(--border-strong);
      box-shadow: 0 0 36px rgba(56, 189, 248, 0.12);
      font-size: 25px;
      flex: 0 0 auto;
    }

    .brand h1 {
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .brand p {
      margin-top: 7px;
      font-size: 14px;
      color: var(--muted);
    }

    .token-form {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      color: #cbd5e1;
      font-size: 13px;
      font-weight: 800;
    }

    .token-input {
      width: 100%;
      height: 52px;
      border-radius: 999px;
      border: 1px solid var(--border-strong);
      background: rgba(2, 6, 23, 0.72);
      color: var(--text);
      outline: none;
      padding: 0 18px;
      font-size: 15px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
      transition: 0.25s ease;
    }

    .token-input::placeholder {
      color: var(--muted-2);
    }

    .token-input:focus {
      border-color: rgba(56, 189, 248, 0.75);
      box-shadow:
        0 0 0 4px rgba(56, 189, 248, 0.11),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .access-button {
      height: 52px;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      color: #020617;
      font-size: 15px;
      font-weight: 950;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      box-shadow: 0 18px 45px rgba(56, 189, 248, 0.22);
      transition: 0.25s ease;
    }

    .access-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 55px rgba(56, 189, 248, 0.32);
    }

    .access-button:active {
      transform: translateY(0) scale(0.99);
    }

    .access-footer {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(148, 163, 184, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
    }

    .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow:
        0 0 0 7px rgba(34, 197, 94, 0.12),
        0 0 18px rgba(34, 197, 94, 0.45);
    }

    @keyframes subir {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes brilho {
      0%, 45% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    @keyframes flutuar {
      from {
        transform: translate3d(0, 0, 0) scale(1);
      }

      to {
        transform: translate3d(4vw, 3vh, 0) scale(1.08);
      }
    }

    @media (max-width: 520px) {
      .access-card {
        padding: 24px;
      }

      .brand h1 {
        font-size: 24px;
      }

      .brand-icon {
        width: 44px;
        height: 44px;
      }
    }