body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  #aman-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
  }

  .glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
  }

  .app-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }

  .app-title span {
    color: #4CC9F0;
  }

  .app-subtitle {
    font-size: 15px;
    color: #8892B0;
    margin-bottom: 40px;
    font-weight: 500;
  }

  .progress-container {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0056D2, #4CC9F0);
    border-radius: 10px;
    transition: width 0.3s ease;
  }

  .progress-text {
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #4CC9F0;
  }