/* Import the Press Start 2P font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* General Styles */
body {
  font-family: 'Press Start 2P', monospace; /* Retro gaming font */
  background-image: url('/images/spacebackground1000px.png'); /* Add your seamless tile background */
  background-repeat: repeat;
  background-size: 1000px 1000px;
  color: #e0e0e0; /* Muted text color */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle grunge shadow for text */
}

/* Header */
header {
  background-color: rgba(20, 20, 20, 0.9); /* Dark, semi-transparent background */
  color: #ffbf00; /* Bright orange text */
  padding: 20px 0;
  text-align: center;
  border-bottom: 2px solid #3f6f7f; /* Metallic accent */
}

header h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0px 0px 5px #ffbf00, 0px 0px 1px #ff7f00; /* Neon glow */
}

header p {
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Navigation */
nav {
  margin-top: 15px;
}

nav a {
  color: #00c8ff; /* Neon blue */
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffbf00; /* Bright orange on hover */
}

/* Main Content */
main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  background: rgba(0, 0, 0, 0.8); /* Dark transparent background */
  border: 1px solid #3f6f7f;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

section {
  margin-bottom: 40px;
  text-align: center;
}

section h2 {
  font-size: 1.4rem;
  color: #ffbf00;
  text-shadow: 0px 0px 4px #ffbf00, 0px 0px 2px #ffa500;
}

section p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 10px 0;
}

/* Image Styling */
img {
  max-width: 100%;
  border-radius: 10px;
  border: 2px solid #3f6f7f;
}

/* Buttons */
button, .btn {
  background-color: #00c8ff;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

button:hover, .btn:hover {
  background-color: #0077aa;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: rgba(15, 15, 15, 0.9);
  color: #e0e0e0;
  text-align: center;
  padding: 10px;
  border-top: 2px solid #3f6f7f;
}

/* Stardust Animation Styling */
#stardust img {
  display: block;
  margin: 0 auto;
  border: 3px solid #ffbf00; /* Glowing yellow border for Stardust */
  border-radius: 15px;
  box-shadow: 0px 0px 15px #ffbf00;
}
