 /* FULLSCREEN PRELOADER */
  #preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    background: rgba(0,0,0,0.3);  
    backdrop-filter: blur(5px);    
    color: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease, visibility 1.5s ease; 
    z-index: 10000;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
.initials {
  width: 110px;
  height: 110px;
  font-size: 28px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd54a, #ffb300, #ff8f00);
  color: #0b1020;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

  .initials.is-bouncing { animation: bounceSoft 1.6s ease infinite; }

  .fullname {
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
  }

  @keyframes bounceSoft {
    0% { transform: translateY(0); }
    20% { transform: translateY(-18px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }

  #preloader.hide {
    opacity: 0;
    visibility: hidden;
  }

  #content { display:none; padding:40px; }

  button#reloadBtn {
    margin-top:20px;
    padding: 8px 14px;
    font-size: 14px;
    border:none;
    background:#ff3b3f;
    color:white;
    border-radius:6px;
    cursor:pointer;
  }
