body {
  font-family: 'Roboto Mono', monospace;
  margin: 20px;
  background-color: #0d0221; /* Deep purple background */
  color: #f5f5f5; /* Light text for readability */
}

h1 {
  text-align: center;
  color: #ff007f; /* Neon pink */
  text-shadow: 0 0 10px #ff007f, 0 0 20px #ff00bf, 0 0 30px #ff007f;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(25, 25, 112, 0.9); /* Semi-transparent dark blue */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 16px;
  color: #00ffff; /* Cyan */
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

textarea {
  resize: none;
  width: calc(100% - 24px); /* Account for padding and borders */
  height: 75px;
  margin-bottom: 10px;
  padding: 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: #0d0221;
  background-color: #fffbf0;
  border: 2px solid #ff007f;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 0 10px #ff007f;
}

textarea:focus {
  outline: none;
  border-color: #00ffff; /* Neon cyan border on focus */
  box-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff;
}

button, .submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #0d0221;
    background: linear-gradient(45deg, #ff007f, #00ffff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-shadow: 0 0 5px #fffbf0;
    box-shadow: 0 0 15px #ff007f, 0 0 25px #00ffff;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover, .submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff007f, 0 0 30px #00ffff;
}

button:active, .submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 10px #ff007f, 0 0 20px #00ffff;
}

footer {
  margin-top: 20px;
  padding: 15px 0;
  text-align: center;
  background-color: transparent; /* Makes the footer background invisible */
  border-top: none; /* Removes the border */
  box-shadow: none; /* Removes the shadow */
}

footer .container {
  max-width: 600px; /* Matches the main content container */
  margin: 0 auto;
  padding: 10px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #00ffff; /* Neon cyan */
  font-size: 14px;
  text-decoration: none;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-links a:hover {
  color: #ff007f; /* Neon pink on hover */
  text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: calc(100% - 24px); /* Account for padding and borders */
    padding: 10px;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #0d0221;
    background-color: #fffbf0;
    border: 2px solid #ff007f;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 0 10px #ff007f;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff;
}

.form-group textarea#message {
    height: 150px;
}

#thank-you {
    text-align: center;
    padding: 20px;
}

#thank-you h2 {
    color: #ff007f; /* Changed from #4CAF50 to neon pink */
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f; /* Added text shadow to match theme */
    margin-bottom: 10px;
}

.container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
