@layer components {
  .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #070707;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .circle-loader {
    width: 100px;
    height: 100px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
  }

  .progress-container {
    width: 200px;
    height: 4px;
    background: #f3f3f3;
    border-radius: 4px;
    overflow: hidden;
  }

  .progress-bar {
    width: 0%;
    height: 100%;
    background: #2563eb;
    border-radius: 4px;
  }
}