body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f8f9fa;
  }

  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #032e5b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .reel-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    border: 8px solid #444;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    background: radial-gradient(circle, #fff 40%, transparent 41%), #f8f9fa;
  }

  .reel-hole {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f8f9fa;
    border: 4px solid #444;
    border-radius: 4px;
  }

  .reel-hole:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(2) {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(3) {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(4) {
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(5) {
    top: 20%;
    left: 80%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(6) {
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(7) {
    top: 80%;
    left: 80%;
    transform: translate(-50%, -50%);
  }

  .reel-hole:nth-child(8) {
    top: 20%;
    left: 20%;
    transform: translate(-50%, -50%);
  }

  #loading-text {
    margin-top: 0px;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-inside {
    width: 200px;
    margin-bottom: 20px;
    object-fit: contain;
  }
  