  .loader-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(90deg, rgba(249,246,238,0.65), rgba(212,228,208,0.65), rgba(249,246,238,0.65));
    background-size: 200% 200%;
    animation: gradientMove 10s ease-in-out infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9998;
  }
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .loader-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
  }

  .loader-content {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .loader-logo {
    animation: fadeLogo 2.5s ease-in-out infinite;
  }
  @keyframes fadeLogo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .loading-text {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: normal;
    color: #00754A;
    animation: fadeText 1.8s infinite ease-in-out;
  }
  @keyframes fadeText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  .loader-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }