/* Critical rendering path CSS */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    -webkit-text-size-adjust: 100%;
    background-color: #f9fafb;
  }
  
  #root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Initial loader styles */
  .initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    z-index: 9999;
  }
  
  .initial-loader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #9b87f5;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Basic responsive design */
  @media (max-width: 768px) {
    body {
      font-size: 14px;
    }
    .initial-loader::after {
      width: 30px;
      height: 30px;
    }
  }
  
  @media (max-width: 480px) {
    body {
      font-size: 12px;
    }
  }