#screen,
#screen-off {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 75%;
  background-color: var(--pc-screen);
}
#screen-off {
  z-index: 100;
}

#screen #screen-buttons {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%);
}
#screen #screen-buttons button {
  font-size: 1.3rem;
  font-family: monospace;
  margin: 0;
  width: fit-content;
  height: auto;
  padding: 0.2rem 1rem;
  border: 1px solid var(--pc-green);
  color: var(--pc-green);
  border-radius: 0;
  background-color: var(--pc-screen);
}
#screen #screen-buttons button:hover {
  color: var(--pc-screen);
  background-color: var(--pc-green);
  cursor: pointer;
}

#screen .shadow {
  --x-shadow-width: 3%;
  --y-shadow-width: 4%;
  position: absolute;
  background-color: var(--pc-case-shadow-light);
  z-index: 100;
}
#screen .left,
#screen .right {
  width: 3%;
  height: 100%;
  top: 0;
}
#screen .top,
#screen .bottom {
  width: 100%;
  height: 4%;
  left: 0;
}
#screen .top {
  background-color: var(--pc-case-shadow-dark);
  top: -4%;
}
#screen .top::before {
  content: "";
  position: absolute;
  left: -3%;
  right: 100%;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    var(--pc-case-shadow-light) 20%,
    var(--pc-case-shadow-dark) 80%
  );
  clip-path: polygon(110% -10%, 110% 100%, 0% 100%);
}
#screen .top::after {
  content: "";
  position: absolute;
  left: 100%;
  right: -3%;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    -45deg,
    var(--pc-case-shadow-light) 20%,
    var(--pc-case-shadow-dark) 80%
  );
  clip-path: polygon(-10% -10%, 100% 100%, -10% 110%);
}
#screen .bottom {
  background-color: var(--pc-case-light);
  bottom: -4%;
}
#screen .bottom::before {
  content: "";
  position: absolute;
  left: -3%;
  right: 100%;
  top: 0;
  bottom: 0;
  background: var(--pc-case-shadow-light);
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}
#screen .bottom::after {
  content: "";
  position: absolute;
  left: 100%;
  right: -3%;
  top: 0;
  bottom: 0;
  background: var(--pc-case-shadow-light);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
#screen .left {
  left: -3%;
}
#screen .right {
  right: -3%;
}
