@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #0b0b0b;
  color: #ff5c00;
  font-family: 'VT323', monospace;
  font-size: 20px;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.terminal {
  text-align: left;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border: 2px solid #ff5c00;
  box-shadow: 0 0 20px #ff5c00;
  width: 80%;
  max-width: 600px;
  animation: flicker 1.5s infinite alternate;
}

.glitch-title {
  font-size: 28px;
  color: #ffa600;
  animation: glitch 2s infinite;
}

.glitch-line {
  color: #ff3300;
  text-shadow: 1px 0 #000, -1px 0 #ff3300;
  animation: shake 0.3s infinite;
}

.enter-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  color: #0b0b0b;
  background-color: #ff5c00;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #ff5c00;
  transition: all 0.2s ease-in-out;
}

.enter-btn:hover {
  background-color: #ffa600;
  color: #000;
  box-shadow: 0 0 20px #ffa600;
}

.footer-text {
  margin-top: 30px;
  font-size: 16px;
  color: #774400;
}

@keyframes flicker {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

@keyframes glitch {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}

@keyframes shake {
  0% { transform: translate(1px, 0); }
  100% { transform: translate(-1px, 0); }
}
.glitch-bg {
  background: url("images/glitch-orange.gif") repeat;
  background-size: cover;
}

.overlay {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  text-align: center;
  border: 2px solid #ff5c00;
  box-shadow: 0 0 30px #ff9900;
  margin: 50px auto;
  max-width: 700px;
}

.avatar {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: contrast(150%) saturate(120%);
  image-rendering: pixelated;
}

.main-box h1 {
  color: #ffa600;
  font-size: 30px;
  margin-bottom: 10px;
}

.type-line {
  color: #ff5500;
  animation: glitch 2s infinite;
}

.nav-btn {
  display: inline-block;
  background: #000;
  color: #ff5c00;
  border: 1px solid #ff5c00;
  padding: 10px 15px;
  margin: 10px;
  font-family: monospace;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #ff5c00;
  color: black;
  box-shadow: 0 0 10px #ff8800;
}

.nav-btn.danger {
  color: red;
  border-color: red;
}

.tiny-glitch {
  font-size: 14px;
  color: #774400;
  margin-top: 30px;
  animation: flicker 1.8s infinite alternate;
}
