body, html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .loading-container {
    position: fixed;
    bottom: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 10px;
  }
  
  .loading-content {
    text-align: center;
    color: #ffffff;
    width: 30%;
  }
  
  .progress-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
  }
  
  .progress {
    width: 0%;
    height: 12px;
    border-radius: 50px;
    background: linear-gradient(
      90deg,
      #41b3ff,
      #2b8eff,
      #00d9ff,
      #0b2deb
    );
    background-size: 300% 300%;
    animation:
      gradientMove 3s ease infinite,
      load 10s linear forwards;
  }
  
  @keyframes load {
    from { width: 0%; }
    to { width: 100%; }
  }
  
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  