#splash-screen {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
  }
  
  .splash-logo {
    width: 120px;
    height: auto;
    opacity: 0;
  }
  
  .splash-text {
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    color: #5985E1;
    opacity: 1;
    font-size: 1.5rem;
    position: absolute;
  }

  .splash-shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    opacity: 0.7;
  }
  
  