  body {
    margin: 0;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrollbars after scaling */
  }
  
body {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 15px;
}

.center {
   text-align: center;
}

body{
	color: #FFFAE5;	
	text-shadow:
    -1px -1px 0 #000000,
    -1px 0px 0 #000000,
    -1px 1px 0 #000000,
    0px -1px 0 #000000,
    0px -0px 0 #000000,
    0px 1px 0 #000000,
    1px -1px 0 #000000,
    1px 0px 0 #000000,
    1px 1px 0 #000000,
	 -2px -2px 0 #000000,
    -2px 0px 0 #000000,
    -2px 2px 0 #000000,
    0px -2px 0 #000000,
    0px -0px 0 #000000,
    0px 2px 0 #000000,
    2px -2px 0 #000000,
    2px 0px 0 #000000,
    2px 2px 0 #000000
}

/* ------ Text Stuff ------ */
.center {
   text-align: center;
}

.subtext {
font-style: italic;
font-size: 12px;
}

a{
color: #F48B59;
}
 
a:visited{
color: #F48B59;
}


a:hover{
color: #FFF;
text-decoration: underline;
}
 
/*--- a:hover{
font-weight: bold;
}
 
 a:active{
font-weight: bold;
} ----*/

  .scene-container {
    position: relative;
    width: 92vw;
    max-width: 1050px;
    aspect-ratio: 16 / 9;

    transform: scale(1.3);      /* 130% size */
    transform-origin: center;   /* Scale from center */
	z-index: 0;
  }

  .scene-container img {
    position: absolute;
  }
  

  .room {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
	user-select: none; 
	pointer-events: none;
  }

  .object {
    height: auto;
    z-index: 3;
  }
  
.object {
  transition: filter 0.3s ease;
}

.object:hover {
  filter: brightness(1.9);
}
  
  .clickable {
    z-index: 2;
    display: block;
  }

  .tv {
    top: 34.2%;
    left: 34.7%;
	width: 6%;
  }

  .crate {
    top: 45.3%;
    right: 46%;
	width: 9%;
  }

  .vinyl {
    bottom: 49.3%;
    left: 25%;
	width: 7%;
  }
  
  .phone {
    bottom: 23.9%;
    left: 28.5%;
	width: 6%;
  }
  
  .painting {
    bottom: 78.2%;
    left: 54.5%;
	width: 6.7%;
  }

  .niko {
    bottom: 48.8%;
    left: 72.1%;
	width: 6%;
  }
  
  .ash {
    bottom: 29.4%;
    left: 64.3%;
	width: 9.8%;
  }
  
    .square-iframe {
      width: 6%;
	  height: 8%;
	  overflow: hidden; /* Hide scrollbars */
		z-index: 2;
    }
	
	
	
	
	
    #slideshow {
      width: 4.5%;
      height: 7.2%;
      overflow: hidden;
	  
		position: fixed;
		bottom: 56.4%;
		left: 35.53%;
		transform: rotate(-3.5deg);
		z-index: 2;
		}

    #slideshow img {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
	  z-index: 2;
    }

    #staticOverlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      display: none;
	  z-index: 2;
    }




    .bottom-left-text {
      position: fixed; /* Stay fixed relative to viewport */
      bottom: 10px;    /* Distance from bottom */
      left: 10px;      /* Distance from left */
      background-color: rgba(0,0,0,0.5); /* Optional: semi-transparent background */
      color: white;    /* Text color */
      padding: 5px 10px;
      border-radius: 4px;
    }
	
  .bottom-right {
    position: fixed;   /* Fixes element relative to viewport */
    bottom: 10px;      /* Distance from bottom */
    right: 10px;       /* Distance from right */
    background-color: rgba(0,0,0,0.7); /* Optional styling */
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
	opacity: 0.7;
  }



.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-content {
	cursor: default;
  display: none;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  font-size: 12px;
  width: 98%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 5px;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: block;
  cursor: pointer;
}



details > summary {
  padding: 4px;
  width: 200px;
  background-color: #000;
  border: none;
  box-shadow: 1px 1px 2px #000;
  cursor: pointer;
}

details > p {
  background-color: #000;
  padding: 4px;
  margin: 0;
  box-shadow: 1px 1px 2px #000;
  text-align: left;
}


  /* Tooltip styling */
  #tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1000;
  }
 
 
.leftcontent {
	text-align: left !important;
}