/* ================================================================
       LOADING SCREEN
       ================================================================ */
    .loading-screen {
      position: fixed;
      inset: 0;
      background: #0D0800;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loading-logo {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 40px;
    }
    .loading-logo img { height: 60px; object-fit: contain; }
    .loading-bar-track {
      width: 200px;
      height: 3px;
      background: rgba(255,214,0,0.15);
      border-radius: 3px;
      overflow: hidden;
    }
    .loading-bar-fill {
      height: 100%;
      width: 0%;
      background: var(--gradient-btn);
      border-radius: 3px;
      animation: loadingProgress 1.2s ease-out forwards;
    }
    @keyframes loadingProgress {
      0% { width: 0%; }
      100% { width: 100%; }
    }
