/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width:100%;
  height:100%;
  background:#000;
  overflow: hidden;
  color:#0ff;
  font-family:'Orbitron',sans-serif;
}


/* Background Image */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Main Overlay */
.overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
}

/* Header Bar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: #00ffff;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  gap: 0px;
  color: #00ffff;
  user-select: none;
  pointer-events: none;
}

.logo img {
  height: 200px;
}

.logo > div {
  margin-left: -40px;
  text-shadow: 0 0 2px #00ffff;
  user-select: none;
  pointer-events: none;
}

.terminal {
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  color: #00ffff;
}

/* Navigation Buttons */
.nav-buttons {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

.nav-buttons a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 25px;
  font-size: 20px;
  transition: transform 0.2s ease;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

.nav-buttons a:hover {
  transform: scale(1.2);
  background-color: #00ffff22;
}

/* Terminal Window */
.terminal-window {
  position: fixed;
  top: 150px;
  right: 40px;
  width: 320px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #00ffff;
  box-shadow: 0 0 12px #00ffffaa;
  padding: 20px;
  z-index: 99;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  border-radius: 0;
  clip-path: polygon(10px 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
  backdrop-filter: blur(6px);
}

.terminal-header {
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  color: #00ffff;
  margin-bottom: 20px;
}

.terminal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.glow-btn {
  background: transparent;
  border: 1px solid #00ffff;
  color: #00ffff;
  font-size: 13px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 8px #00ffff80;
  transition: all 0.2s ease-in-out;
}

.glow-btn:hover {
  background-color: #00ffff20;
  box-shadow: 0 0 20px #00ffff;
  transform: scale(1.05);
}

.hidden {
  display: none;
}

