/* Extracted from login.html. Do not edit manually. */

:root {
      --brand-red: #ff3008;
      --brand-orange: #ff6b35;
      --ink-muted: #b7beca;
      --panel-bg: rgba(255, 255, 255, 0.045);
      --panel-border: rgba(255, 255, 255, 0.12);
    }

    body {
      box-sizing: border-box;
      background: #000;
      color: #fff;
      min-height: 100%;
    }

    * {
      font-family: 'DM Sans', sans-serif;
    }

    .atmosphere {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(1200px 520px at 0% 100%, rgba(255, 60, 10, 0.12) 0%, rgba(255, 60, 10, 0) 62%),
        radial-gradient(900px 500px at 100% 0%, rgba(255, 130, 74, 0.09) 0%, rgba(255, 130, 74, 0) 62%);
      z-index: 0;
    }

    .gradient-blob {
      filter: blur(100px);
      opacity: 0.45;
      animation: blob-float 12s ease-in-out infinite;
    }

    .gradient-blob-2 {
      animation-delay: -4s;
    }

    .gradient-blob-3 {
      animation-delay: -2s;
    }

    @keyframes blob-float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(28px, -24px) scale(1.1); }
      66% { transform: translate(-18px, 18px) scale(0.9); }
    }

    .glass-card {
      background: var(--panel-bg);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--panel-border);
      box-shadow:
        0 28px 60px -20px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .glass-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
      pointer-events: none;
      z-index: -1;
    }

    .panel-grid {
      width: 100%;
      max-width: 980px;
      display: grid;
      gap: 1rem;
      align-items: stretch;
    }

    @media (min-width: 1024px) {
      .panel-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 1.25rem;
      }
    }

    .brand-panel {
      padding: 1.75rem;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 1.5rem;
      min-height: 520px;
      background:
        radial-gradient(120% 180% at 95% 10%, rgba(255, 80, 40, 0.18), rgba(255, 80, 40, 0) 60%),
        var(--panel-bg);
    }

    @media (min-width: 1024px) {
      .brand-panel {
        display: flex;
      }
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.06);
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #f3f4f6;
      padding: 0.3rem 0.7rem;
      width: fit-content;
    }

    .dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #22c55e, #86efac);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    }

    .headline {
      margin-top: 1.1rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.02;
      text-wrap: balance;
    }

    .eyebrow {
      margin-top: 0.7rem;
      color: #f3f4f6;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }

    .headline-accent {
      background: linear-gradient(135deg, #ffffff 0%, #ffd6cc 35%, #ff8f75 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .subline {
      margin-top: 0.95rem;
      color: var(--ink-muted);
      max-width: 38ch;
      font-size: 0.98rem;
      line-height: 1.5;
    }

      .discord-gradient-text {
        background: linear-gradient(135deg, #5865f2 0%, #4752c4 50%, #2c2f33 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }

    .login-card {
      border-radius: 1.5rem;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 500px;
    }

    @media (min-width: 640px) {
      .login-card {
        padding: 2rem;
      }
    }

    .text-gradient {
      background: linear-gradient(135deg, #ff8466 0%, #ffc2b1 62%, #ffffff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .status-shell {
      margin-top: 1rem;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      padding: 0.8rem 0.95rem;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff3008 0%, #ff5533 48%, #ff805c 100%);
      border: 1px solid rgba(255, 190, 170, 0.42);
      box-shadow:
        0 8px 20px -6px rgba(255, 48, 8, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 3.25rem;
      padding: 0.85rem 1.25rem;
      gap: 0.65rem;
      letter-spacing: 0.01em;
      line-height: 1.1;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 1rem;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow:
        0 16px 30px -8px rgba(255, 48, 8, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow:
        0 8px 18px -8px rgba(255, 48, 8, 0.68),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    }

    .btn-primary:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none;
      box-shadow:
        0 8px 16px -10px rgba(255, 48, 8, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    #discordLoginLabel {
      display: inline-flex;
      align-items: center;
      line-height: 1.1;
    }

    .btn-arrow {
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.82rem;
      line-height: 1;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      transform: translateX(0);
      transition: transform 0.2s ease;
    }

    .btn-primary:hover .btn-arrow {
      transform: translateX(2px);
    }

    .btn-primary.is-busy .btn-arrow {
      opacity: 0.4;
      transform: none;
    }

    .status-error {
      color: #fca5a5;
      border-color: rgba(239, 68, 68, 0.3);
      background: rgba(127, 29, 29, 0.2);
    }

    .status-success {
      color: #86efac;
      border-color: rgba(34, 197, 94, 0.3);
      background: rgba(20, 83, 45, 0.2);
    }

    .status-info {
      color: #d1d5db;
      border-color: rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.06);
    }

    .flow-box {
      margin-top: 1rem;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      padding: 0.9rem 0.95rem;
    }

    .flow-title {
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #9ca3af;
      margin-bottom: 0.32rem;
    }

    .flow-path {
      font-size: 1.08rem;
      color: #f5f7fb;
      font-weight: 700;
      word-break: break-word;
      text-transform: capitalize;
      letter-spacing: 0.01em;
    }

    @media (max-width: 768px) {
      .login-card {
        min-height: auto;
      }
    }