:root {
      --gold: #D4A017;
      --gold-light: #F0C040;
      --gold-dark: #A07810;
      --obsidian: #0A0A0A;
      --coal: #111214;
      --slag: #1A1C1F;
      --ash: #252830;
      --iron: #3A3D45;
      --steel: #6B7280;
      --silver: #A8B0BC;
      --white: #F5F0E8;
      --danger: #C0392B;
      --success: #27AE60;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      height: 100%;
    }

    body {
      background: var(--obsidian);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── ANIMATED BACKGROUND ── */
    .bg-fixed {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .bg-fixed::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 5% 95%, rgba(212, 160, 23, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 98% 5%, rgba(184, 115, 51, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 70%);
    }

    .bg-fixed::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(-52deg,
          transparent,
          transparent 72px,
          rgba(212, 160, 23, 0.018) 72px,
          rgba(212, 160, 23, 0.018) 73px);
    }

    /* Floating ore particles */
    .particles {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: float var(--dur) var(--delay) infinite ease-in-out;
    }

    @keyframes float {
      0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
      }

      10% {
        opacity: var(--op);
      }

      90% {
        opacity: var(--op);
      }

      100% {
        opacity: 0;
        transform: translateY(-120px) translateX(var(--dx));
      }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 68px;
      background: rgba(10, 10, 10, 0.93);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212, 160, 23, 0.14);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 3px;
      color: var(--white);
    }

    .logo-text span {
      color: var(--gold);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-right p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      color: var(--steel);
    }

    .nav-right a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--gold);
      text-decoration: none;
      transition: color .2s;
    }

    .nav-right a:hover {
      color: var(--gold-light);
    }

    /* ── MAIN SPLIT LAYOUT ── */
    .page-wrap {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 68px;
    }

    /* ── LEFT PANEL ── */
    .left-panel {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .left-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.96), rgba(10,10,10,0.25)),
    linear-gradient(to right, rgba(10,10,10,0.5), transparent),
    var(--bg-image) center/cover no-repeat;
}

    .left-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 25% 85%, rgba(212, 160, 23, 0.16) 0%, transparent 55%);
    }

    /* Right-edge gold rule */
    .left-panel::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(212, 160, 23, 0.45) 25%, rgba(212, 160, 23, 0.45) 75%, transparent 100%);
      z-index: 3;
    }

    .left-top {
      position: relative;
      z-index: 2;
      padding: 48px 52px 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 60px;
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(39, 174, 96, 0.12);
      border: 1px solid rgba(39, 174, 96, 0.35);
      padding: 6px 14px;
      margin-bottom: 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--success);
      width: fit-content;
    }

    .live-dot {
      width: 7px;
      height: 7px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.7);
      }
    }

    .left-top h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 5.5vw, 86px);
      line-height: 0.9;
      letter-spacing: 3px;
      margin-bottom: 28px;
    }

    .left-top h2 .gold {
      color: var(--gold);
    }

    .left-top h2 .outline {
      -webkit-text-stroke: 1px rgba(245, 240, 232, 0.3);
      color: transparent;
    }

    .left-top p {
      font-size: 15px;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.75;
      max-width: 360px;
      margin-bottom: 40px;
    }

    /* Live earnings ticker on left */
    .earnings-ticker {
      background: rgba(17, 18, 20, 0.85);
      border: 1px solid rgba(212, 160, 23, 0.2);
      backdrop-filter: blur(8px);
      padding: 18px 22px;
      margin-bottom: 20px;
      max-width: 380px;
    }

    .ticker-head {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ticker-head::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    .earning-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      animation: slideIn .4s ease both;
    }

    .earning-row:last-child {
      border-bottom: none;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-10px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .earning-user {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--silver);
    }

    .earning-user span {
      display: block;
      font-size: 10px;
      font-weight: 400;
      color: var(--steel);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .earning-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .earning-amount.up::after {
      content: ' ↑';
      font-size: 13px;
      color: var(--success);
    }

    /* Bottom stats strip */
    .left-bottom {
      position: relative;
      z-index: 2;
      padding: 0 52px 40px;
    }

    .left-stats-row {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(212, 160, 23, 0.18);
      padding-top: 24px;
    }

    .lst {
      flex: 1;
      border-right: 1px solid rgba(212, 160, 23, 0.12);
      padding-right: 18px;
      margin-right: 18px;
    }

    .lst:last-child {
      border-right: none;
      padding-right: 0;
      margin-right: 0;
    }

    .lst .v {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .lst .l {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
    }

    /* ── RIGHT PANEL ── */
    .right-panel {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 5% 80px;
      min-height: calc(100vh - 68px);
    }

    .form-box {
      width: 100%;
      max-width: 420px;
      animation: fadeUp .55s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* Form header */
    .form-head {
      margin-bottom: 32px;
    }

    .form-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      display: block;
    }

    .form-head h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 4.5vw, 58px);
      letter-spacing: 3px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .form-head h1 span {
      color: var(--gold);
    }

    .form-head p {
      font-size: 14px;
      color: var(--steel);
      line-height: 1.6;
    }

    /* Social buttons */
    .social-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }

    .btn-social {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 18px;
      background: var(--slag);
      border: 1px solid var(--iron);
      color: var(--silver);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
    }

    .btn-social:hover {
      border-color: rgba(212, 160, 23, 0.4);
      color: var(--white);
      background: var(--ash);
    }

    .btn-social .s-icon {
      font-size: 17px;
      width: 22px;
      text-align: center;
      flex-shrink: 0;
    }

    .btn-social span:last-child {
      flex: 1;
      text-align: center;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--iron);
    }

    .divider span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
      white-space: nowrap;
    }

    /* Fields */
    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 14px;
    }

    label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
    }

    .input-wrap {
      position: relative;
    }

    .input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 15px;
      pointer-events: none;
      z-index: 1;
      color: var(--steel);
      transition: color .2s;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
      width: 100%;
      background: var(--slag);
      border: 1px solid var(--iron);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      padding: 14px 14px 14px 44px;
      outline: none;
      transition: border-color .25s, background .25s, box-shadow .25s;
      -webkit-appearance: none;
    }

    input::placeholder {
      color: var(--iron);
    }

    input:focus {
      border-color: var(--gold);
      background: var(--ash);
      box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    }

    .input-wrap:has(input:focus) .input-icon {
      color: var(--gold);
    }

    input.error {
      border-color: var(--danger);
    }

    input.error:focus {
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
    }

    input.valid {
      border-color: var(--success);
    }

    .field-error {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: var(--danger);
      letter-spacing: .5px;
      display: none;
    }

    .field.has-error .field-error {
      display: block;
    }

    .field.has-error input {
      border-color: var(--danger);
    }

    /* Password row */
    .pwd-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 7px;
    }

    .pwd-row label {
      margin: 0;
    }

    .forgot-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--gold);
      text-decoration: none;
      transition: color .2s;
    }

    .forgot-link:hover {
      color: var(--gold-light);
    }

    .pwd-toggle {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--steel);
      cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color .2s;
      padding: 0;
    }

    .pwd-toggle:hover {
      color: var(--gold);
    }

    input[type="password"] {
      padding-right: 70px;
    }

    /* Remember me */
    .remember-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      cursor: pointer;
    }

    .remember-row input[type="checkbox"] {
      opacity: 0;
      position: absolute;
      width: 0;
      height: 0;
    }

    .custom-check {
      width: 17px;
      height: 17px;
      border: 1px solid var(--iron);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      background: transparent;
    }

    .remember-row input:checked+.custom-check {
      background: var(--gold);
      border-color: var(--gold);
    }

    .remember-row input:checked+.custom-check::after {
      content: '✓';
      font-size: 10px;
      color: var(--obsidian);
      font-weight: 700;
    }

    .remember-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .5px;
      color: var(--silver);
    }

    /* Error alert */
    .alert-box {
      background: rgba(192, 57, 43, 0.08);
      border: 1px solid rgba(192, 57, 43, 0.4);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      display: none;
    }

    .alert-box.show {
      display: flex;
      animation: fadeUp .3s ease;
    }

    .alert-icon {
      font-size: 18px;
      flex-shrink: 0;
    }

    .alert-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #E74C3C;
    }

    /* Submit button */
    .btn-signin {
      width: 100%;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--obsidian);
      background: var(--gold);
      border: none;
      padding: 18px 28px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      transition: background .2s, transform .15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
    }

    .btn-signin::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform .5s ease;
    }

    .btn-signin:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-signin:hover::after {
      transform: translateX(100%);
    }

    .btn-signin:active {
      transform: translateY(0);
    }

    .btn-signin.loading {
      pointer-events: none;
      opacity: .75;
    }

    .btn-spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(10, 10, 10, 0.3);
      border-top-color: var(--obsidian);
      border-radius: 50%;
      animation: spin .7s linear infinite;
      display: none;
    }

    .btn-signin.loading .btn-spinner {
      display: block;
    }

    .btn-signin.loading .btn-label {
      opacity: .6;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Sign up link */
    .signup-link {
      text-align: center;
      font-size: 13px;
      color: var(--steel);
      margin-bottom: 28px;
    }

    .signup-link a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }

    .signup-link a:hover {
      color: var(--gold-light);
    }

    /* Security note */
    .security-note {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(212, 160, 23, 0.04);
      border: 1px solid rgba(212, 160, 23, 0.12);
    }

    .security-note span {
      font-size: 14px;
      flex-shrink: 0;
    }

    .security-note p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .5px;
      color: var(--iron);
      line-height: 1.5;
    }

    /* ── 2FA OVERLAY ── */
    .mfa-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      align-items: center;
      justify-content: center;
    }

    .mfa-overlay.show {
      display: flex;
    }

    .mfa-box {
      background: var(--slag);
      border: 1px solid rgba(212, 160, 23, 0.25);
      padding: 48px 44px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      animation: fadeUp .4s ease both;
    }

    .mfa-icon {
      font-size: 44px;
      margin-bottom: 20px;
      display: block;
    }

    .mfa-box h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .mfa-box h2 span {
      color: var(--gold);
    }

    .mfa-box p {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .otp-row {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-bottom: 28px;
    }

    .otp-input {
      width: 52px !important;
      height: 60px;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      background: var(--ash);
      border: 1px solid var(--iron);
      color: var(--gold);
      padding: 0 !important;
      caret-color: var(--gold);
    }

    .otp-input:focus {
      border-color: var(--gold);
      background: var(--coal);
      box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
    }

    .btn-verify {
      width: 100%;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--obsidian);
      background: var(--gold);
      border: none;
      padding: 16px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background .2s;
      margin-bottom: 16px;
    }

    .btn-verify:hover {
      background: var(--gold-light);
    }

    .mfa-resend {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--steel);
    }

    .mfa-resend a {
      color: var(--gold);
      text-decoration: none;
      cursor: pointer;
    }

    /* ── FORGOT PASSWORD OVERLAY ── */
    .forgot-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      align-items: center;
      justify-content: center;
    }

    .forgot-overlay.show {
      display: flex;
    }

    .forgot-box {
      background: var(--slag);
      border: 1px solid rgba(212, 160, 23, 0.2);
      padding: 48px 44px;
      max-width: 400px;
      width: 90%;
      animation: fadeUp .4s ease both;
    }

    .forgot-box h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 38px;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .forgot-box h2 span {
      color: var(--gold);
    }

    .forgot-box p {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    .btn-send {
      width: 100%;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--obsidian);
      background: var(--gold);
      border: none;
      padding: 16px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background .2s;
      margin-top: 20px;
      margin-bottom: 14px;
    }

    .btn-send:hover {
      background: var(--gold-light);
    }

    .btn-cancel {
      width: 100%;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
      background: transparent;
      border: 1px solid var(--iron);
      padding: 13px;
      cursor: pointer;
      transition: all .2s;
    }

    .btn-cancel:hover {
      color: var(--white);
      border-color: var(--silver);
    }

    .forgot-sent {
      display: none;
      text-align: center;
      padding: 20px 0;
      animation: fadeUp .4s ease both;
    }

    .forgot-sent.show {
      display: block;
    }

    .forgot-sent .check {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .forgot-sent h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 2px;
      color: var(--success);
      margin-bottom: 10px;
    }

    .forgot-sent p {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.6;
    }

    /* ── TOAST ── */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      background: var(--slag);
      border: 1px solid rgba(212, 160, 23, 0.35);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      transform: translateY(80px);
      opacity: 0;
      transition: all .35s ease;
      max-width: 300px;
    }

    .toast.show {
      transform: none;
      opacity: 1;
    }

    .toast.success {
      border-color: rgba(39, 174, 96, 0.5);
    }

    .toast-icon {
      font-size: 18px;
      flex-shrink: 0;
    }

    .toast-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--silver);
    }

    /* ── MOBILE BANNER ── */
    .mobile-banner {
      display: none;
      background:
      linear-gradient(to right, rgba(10,10,10,0.88), rgba(10,10,10,0.7)),
      var(--banner) center/cover no-repeat;
      padding: 28px 5%;
      border-bottom: 1px solid rgba(212, 160, 23, 0.18);
      margin-top: 68px;
    }

    .mobile-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 2px;
    }

    .mobile-banner h2 span {
      color: var(--gold);
    }

    .mobile-banner p {
      font-size: 13px;
      color: var(--silver);
    }

    .mobile-live {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--success);
      margin-top: 14px;
    }

    .mobile-live::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .page-wrap {
        grid-template-columns: 1fr;
        padding-top: 0;
      }

      .left-panel {
        display: none;
      }

      .mobile-banner {
        display: block;
      }

      .right-panel {
        padding: 40px 5% 60px;
        align-items: flex-start;
        min-height: auto;
      }
    }

    @media (max-width: 500px) {
      .nav-right p {
        display: none;
      }

      .otp-row {
        gap: 7px;
      }

      .otp-input {
        width: 44px !important;
        height: 52px;
        font-size: 22px;
      }

      .mfa-box,
      .forgot-box {
        padding: 36px 28px;
      }
    }

    @media (max-width: 360px) {
      .otp-input {
        width: 38px !important;
      }
    }