#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  
  #loading-logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  #loading-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    filter: grayscale(0%) opacity(1); /* Transparent look */
    clip-path: inset(100% 0 0 0); /* Start fully hidden from the top */
    transition: clip-path 0.2s ease-out;
  }
  
  #loading-percentage {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
  }
  
  #start-button {
    margin-top: 30px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background: #0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
  }
  
  #start-button:hover {
    background: #1e1;
    transform: scale(1.05);
  }
  