/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  color: #f0f0f0;
  background-image: url('IMG_0517.jpeg'); /* Update path if needed */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Links */
a {
  color: #ff66cc;
  text-decoration: none;
}
a:hover {
  color: #88ff99;
  text-shadow: 0 0 5px #88ff99;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px dashed #444;
  background: rgba(0, 0, 0, 0.5);
}
h1 {
  font-size: 2.8rem;
  font-family: 'Press Start 2P', monospace, cursive;
  color: #ff66cc;
  text-shadow: 2px 2px 0 #000;
}
.tagline {
  font-style: italic;
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.5rem;
}

/* Navigation */
nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
  background: rgba(34, 34, 34, 0.7);
  margin: 0;
}
nav ul li {
  display: inline-block;
  margin: 0.5rem 1rem;
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}
.intro {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  box-shadow: 0 0 10px #000;
}
.background-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  opacity: 0.15;
  pointer-events: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #888;
  border-top: 2px dashed #444;
}