#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; 
  z-index: -1; 
}

#enter-screen {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999; 
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
  
  background-color: var(--bg-body); 
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}


.retro-button {
  position: relative;
  font-size: 1.2rem;
  width: 120px;
  height: 104px;
  color: var(--text-color);
  background-color: var(--text-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px; 
  
  border: none;
  cursor: pointer;
  z-index: 1;
  
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.retro-button::before {
  content: "";
  position: absolute;
  top: 7px; 
  left: 8px;
  right: 8px;
  bottom: 5px;
  
  background: var(--bg-body);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1; 
}



.retro-button:hover {

  color: var(--bg-body); 
  background-color: var(--bg-body);
}

.retro-button:hover::before {
  background: var(--text-color); 
}

html.no-scroll, 
body.no-scroll {
  overflow: hidden;
  height: 100%; 
  touch-action: none;
}

.info-box-wrapper {
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.4"/></svg>'),
    linear-gradient(to bottom, #ff61b8 0%, #ff9ce0 100%);
    
  padding: 3px; 
  width: 300px;
  
  clip-path: polygon(
    12px 0%, calc(50% - 6px) 0%, calc(50% - 3px) 2px, calc(50% + 3px) 2px, calc(50% + 6px) 0%, calc(100% - 12px) 0%,
    100% 12px, 100% calc(100% - 12px),
    calc(100% - 12px) 100%, calc(50% + 6px) 100%, calc(50% + 3px) calc(100% - 2px), calc(50% - 3px) calc(100% - 2px), calc(50% - 6px) 100%, 12px 100%,
    0% calc(100% - 12px), 0% 12px
  );
}

.info-box-content {

  background:
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.3"/></svg>'),
    linear-gradient(to bottom, #e194cf 0%, #72c2dd 100%);
    
  padding: 20px;
  color: #ffffff;
  font-family: "Silkscreen", sans-serif; 
  min-height: 80px;
  
  clip-path: polygon(
    12px 0%, calc(50% - 6px) 0%, calc(50% - 3px) 2px, calc(50% + 3px) 2px, calc(50% + 6px) 0%, calc(100% - 12px) 0%,
    100% 12px, 100% calc(100% - 12px),
    calc(100% - 12px) 100%, calc(50% + 6px) 100%, calc(50% + 3px) calc(100% - 2px), calc(50% - 3px) calc(100% - 2px), calc(50% - 6px) 100%, 12px 100%,
    0% calc(100% - 12px), 0% 12px
  );
}

.info-title {
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3); 
  margin-bottom: 10px;
}

html.skip-intro #global-loader,
html.skip-intro #enter-screen {
  display: none !important;
}

html.skip-intro, 
html.skip-intro body.no-scroll {
  overflow: auto !important;
  height: auto !important;
}

/*loading page*/

#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/images/lofibg2.webp'); 
  background-repeat: repeat;
  background-size: auto;
  z-index: 10000; 
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  transition: opacity 0.5s ease; 
}

#ram-dass-head {
  width: 120px; 
  animation: spin 1.5s linear infinite; 
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}