  
  body {
    margin: 0;
    overflow: hidden;
    background-color: #373739;
  }
 
 
 .preloader-div {
    position: fixed;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 50%;
  }
  
  .preloader-container {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 260px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
  }
  
  .preloader-bar {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background-color: #80d6b9;
  }
  
  
  #je3d-start-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  /* Bild: immer vollständig sichtbar, responsive */
  #je3d-start-image {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  /* Runder Button im Zentrum */
  #je3d-start-button {
    position: absolute;
    width: 264px;
    height: 264px;
    border: 2px solid var(--e-global-color-text, #FFFFFF);
    border-radius: 100%;
    background-color: transparent;
    color: var(--e-global-color-text, #FFFFFF);
    font-family: "Circular", sans-serif;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  /* Text im Button */
  #je3d-start-button .button-text {
    display: block;
    pointer-events: none;
  }
  
  #je3d-start-button:hover {
    background-color: var(--e-global-color-text, #3AA884);
    color: var(--e-global-color-secondary, #FFFFFF);
    border-color: var(--e-global-color-secondary, #3AA884);
  }


  #v3d-container {
    position: relative;
    width: 100%;
    height: 100dvh;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    #v3d-container {
      width: 100vw;
      height: 100svh;
      aspect-ratio: unset;
    }
  }
  
  @media (max-height: 400px) {
    #je3d-menu {
      overflow-y: auto;
    }
  }
  
  .loader-3D {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
  }
  
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
  }
  
  #je3d-menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 11;
    font-size: 24px;
    touch-action: manipulation;
  }
  
  #je3d-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  #je3d-menu {
    position: absolute;
    align-items: center;
    justify-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: none;
    z-index: 10;
    visibility: hidden;
    pointer-events: auto;
  
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)  
      1px             
      minmax(0, 1fr)  
      1px             
      minmax(0, 1fr)  
      minmax(0, 1fr); 
    grid-template-rows: repeat(8, 1fr);
    gap: 5px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  #je3d-menu.open {
    transform: translateX(0%);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    visibility: visible;
  }
  
  .je3d-separator {
    background-color: #ccc;
    width: 1px;
    height: 100%;
  }
  
  .je3d-menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  
  .je3d-menu-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;   
  }
  
  .je3d-tint-green {
    filter: sepia(1) hue-rotate(107deg) saturate(1);
  }
  
.v3d-simple-preloader-logo {
    background-image: url('media/safari-pinned-tab.svg');
}

.v3d-simple-preloader-bar {
    background: linear-gradient(90deg, #b0b0b0, #3aa884);
    height: 4px;
    border-color: #80d6b9;
}

.v3d-simple-preloader-background {
    background-color: #373739;
}