body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: black;
  font-family: 'Nintendo-DS-Bios', sans-serif;
  overflow: hidden;
  cursor: url('cursor.png'), default;
}

.desktop {
  height: calc(100vh - 40px);
  padding: 10px;
  color: white;
  position: relative;
  z-index: 1;
}

.start-menu {
  position: fixed;
  padding: 20%;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -1px 3px rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.start-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 10px;
  margin-left: 2px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  color: white;
  transition: text-shadow 0.3s ease;
}

.start-button:hover {
  text-shadow: 0 0 5px white;
}

.start-button:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.start-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  filter: brightness(2);
}

.time {
  padding: 5px 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-right: 5px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
}
body::before {
  content: "";
  position: fixed;
  top: -20px;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06), transparent 80%);
  pointer-events: none;
  z-index: 1000;
  transform: scale(2.35);
}


body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 1001;
  pointer-events: none;
}


body {
  animation: flicker 1s infinite;
}

a {
  color: white;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}
a:hover {
  text-shadow: 0 0 5px white;
}
@font-face {
    font-family: 'Nintendo-DS-Bios';
    src: url(Nintendo-DS-Bios.ttf);
}
.bottom-margin {
    position: absolute;
    bottom: 60%;
}