/* General Desktop Styles */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #101010;
  color: white;
}

.taskbar {
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 50, 0.8);
  padding: 10px 0;
  z-index: 10;
}

.taskbar a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  transition: background 0.2s ease;
}

.taskbar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
}

.mobile-nav {
  display: none;
}

.bg-glow-text {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 40%;
  width: 100%;
  color: #ffffff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #00f;
}
