/* UFO Productions - Main Stylesheet */
/* Simplified Early 2000s Retro-Modern Design */

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

body {
  background-color: #121214;
  color: #e3e3e6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  font-size: 21px;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

h1 {
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  color: #00ff66;
  font-size: 2.6rem;
  margin-top: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  padding-bottom: 12px;
  letter-spacing: 1px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

a {
  color: #00ff66;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(0, 255, 102, 0.4);
  transition: all 0.15s ease-in-out;
}

a:hover {
  color: #33ff88;
  border-bottom-style: solid;
  border-bottom-color: #33ff88;
  text-shadow: 0 0 4px rgba(0, 255, 102, 0.3);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.lemoncat {
  border: none;
  filter: drop-shadow(0 0 0px rgba(255, 235, 59, 0.45));
}

#copyright {
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px;
  color: #7b7b80;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  body {
    padding: 24px 16px;
    font-size: 20px;
  }
  h1 {
    font-size: 2.2rem;
  }
}
