/* Universal reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body və səhifə tərtibatı */
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #d71313, #790404);
  }
  
  /* Loading container */
  .loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  /* Loader icon */
  .loader {
    animation: spin 2s infinite linear;
  }
  
  .loader-icon {
    width: 90px;
    height: 90px;
    animation: bounce 1.5s infinite ease-in-out, blink 1s infinite;
  }
  

  
  /* Blink effekti */
  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }
  