
body {
  margin: 0;
  font-family: Verdana;
  background: black;
}

#scene {
  position: relative;
  width: 2000px;
  height: 1000px;
  margin: auto;
}

#background {
  width: 100%;
  height: auto;
  display: block;
}

.ui {
  position: absolute;
  z-index: 10;
}

.ui img {
  display: block;
  transition: 0.2s ease;
}

.ui img:hover {
  filter: drop-shadow(0 0 10px gold);
  transform: scale(1.02);
}

.main {
  left: 420px;
  top: 10px;
}

.left {
  left: 20px;
  top: 5px;
}

.right {
  left: 340px;
  top: 120px;
}

.toons {
  left: 1100px;
  top: 850px;
}

.talk {
  left: 370px;
  top: 700px;
}

.task {
  left: 1160px;
  top: 20px;
  
}

.bt1 {
  left: 1040px;
  top: 500px;
}


.bt2 {
  left: 1240px;
  top: 580px;
}

.bt3 {
  left: 1040px;
  top: 660px;
}


.bt4 {
  left: 1240px;
  top: 740px;
}

.employee-title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: gold;
  text-shadow: 0 0 10px black;
}

.employee-grid {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.employee-card {
  width: 220px;
  text-align: center;
  cursor: pointer;
}

.employee-card img {
  width: 100%;
  border: 0px solid gold;
  transition: 0.2s ease;
}

.employee-card img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px gold);
}

.emp-name {
  margin-top: 10px;
  color: white;
  font-size: 18px;
}

/* Modal overlay */
#employee-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal box */
.modal-content {
  background: #0b1a10;
  width: 800px;
  max-width: 90%;
  padding: 20px;
  display: flex;
  gap: 20px;
  position: relative;
  border: 2px solid #1f3b2a;
}

/* Left image */
.modal-left img {
  width: 250px;
  height: auto;
}

/* Right text */
.modal-right {
  color: #cfe8d8;
  font-family: Verdana;
}

.modal-right h2 {
  margin-top: 0;
}

/* Close button */
#modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  color: #cfe8d8;
}

#modal-close:hover {
  color: red;
}

#toonup-container {
  text-align: center;
  color: white;
}

#mouse {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0px auto;
  z-index: 1;
}

#mouse img {
  position: absolute;
  top: 0;
  left: 0;
  width: 180%;
  pointer-events: none;
}

#accessories {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#accessories img {
  position: absolute;
  top: 0;
  left: 0;
  width: 180%;
}

#toonup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}

.menu {
  display: none;
  margin-top: 15px;
}

.menu img {
  width: 60px;
  cursor: pointer;
  margin: 5px;
}

.tint {
  filter: hue-rotate(0deg) saturate(2);
}