.loading-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: all;
  }

  .loading-content {
    text-align: center;
    color: #fff;
  }

  .cool-spinner {
    width: 64px;
    height: 64px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 15px var(--primary-light);
    margin: 0 auto 12px;
  }

  .loading-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--primary-light);
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }