@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background-color: #0a0a0f;
  color: #00ffcc;
  font-family: 'Share Tech Mono', monospace;
  padding: 20px;
}

a {
  color: #ff00ff;
  text-decoration: none;
  margin: 5px 0;
  display: block;
}
a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.panel {
  border: 2px solid #00ffcc;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 0 10px #00ffcc;
}

/* Glitch animation for headers */
@keyframes glitch {
  0% { text-shadow: 2px 0 #ff00ff; }
  20% { text-shadow: -2px 0 #00ffff; }
  40% { text-shadow: 2px 0 #ff00ff; }
  60% { text-shadow: -2px 0 #00ffff; }
  80% { text-shadow: 2px 0 #ff00ff; }
  100% { text-shadow: 0 0 #00ffcc; }
}

h1, h2, h3 {
  animation: glitch 1s infinite;
}

/* Scanlines effect */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}


#title {
  display: block;          /* ensures it’s treated like a block element */
  margin: 0;               /* removes any default spacing */
  margin-bottom: 20px;     /* adjust space below title if needed */
  max-width: 100%;         /* ensures it won’t overflow */
  height: auto;            /* maintains GIF aspect ratio */
  float: left;             /* sticks it to the left */
}

@keyframes flicker {
  0% { opacity: 1; }
  5% { opacity: 0.8; }
  10% { opacity: 1; }
  15% { opacity: 0.6; }
  20% { opacity: 1; }
  100% { opacity: 1; }
}

#title {
  animation: flicker 3s infinite;
}

button {
  background-color: transparent;
  padding: 10px 20px;
  font-family: 'Share Tech Mono', monospace;
  cursor: pointer;
  margin-top: 20px;
}

#boot-screen, #auth-screen {
  text-align: center;
  margin-top: 20vh;
}

/* For all PNG/ASCII art images */
.ascii-photo-img {
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
  display: block;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 10px #00ffcc;
  image-rendering: pixelated; /* for crisp edges on pixel art */
}

/* For all videos */
.ascii-video {
  width: 100%;
  margin: 20px 0;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 10px #00ffcc;
}

.log-list a {
  display: block;
  color: #00ff9f;
  text-decoration: none;
  margin: 10px 0;
}

.log-list a:hover {
  text-shadow: 0 0 5px #00ff9f;
}

.log-text {
  font-family: monospace;
  white-space: pre-line;
  color: #00ff9f;
  max-width: 600px;
}

.icon {
  width: 24px;           /* how big it appears on page */
  height: 24px;          /* keep aspect ratio */
  vertical-align: middle; /* aligns with text */
  margin-right: 8px;      /* space between icon and text */
}

#confirm-button {
  display: block;
  margin: 20px auto 0 auto;
  padding: 12px;          /* bigger clickable area */
  cursor: pointer;
  
  background-color: transparent; /* no background */
  border: none;                  /* remove default border */
  outline: none;                 /* remove focus outline */
  box-shadow: none;              /* remove any glow shadow */
}

#confirm-button:hover,
#confirm-button:focus,
#confirm-button:active {
  background-color: transparent; /* stays transparent on hover/click */
  box-shadow: none;              /* no glow effect */
  outline: none;                 /* no outline */
}

#subheader {
  font-size: 2em;
  color: #00ff9f;
  margin-top: 10px;
  text-shadow: 0px 0px 5px #00ffff;
}