body {
  margin: 0;
  height: 100vh;
  background: url('images/moon-4889743_1920\(2\).jpg')center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  cursor: crosshair;
  color: white;
  font-family: Arial, sans-serif;
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #9da2cc, #3f467f, transparent);
  border-radius: 50%;
  box-shadow: 0 0 4px #9da2cc, 0 0 8px #3f467f;
  pointer-events: none;
  animation: twinkle 10s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  25% { opacity: 0.5; transform: scale(1.2); }
  50% { opacity: 0.2; transform: scale(0.9); }
  75% { opacity: 0.6; transform: scale(1.3); }
}


.star-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 30, 0.4); /* dark transparent overlay */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(3px); /* soft background blur */
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 2em; /* increased from 1.5em */
  border-radius: 16px;
  max-width: 90%;
  width: 320px;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  font-family: 'Courier New', Courier, monospace;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  text-align: center;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #f0e9ff;
  margin-bottom: 1em;
font-family: 'Courier New', Courier, monospace;
}

.modal-content label {
  display: block;
  margin-bottom: 1em;
  font-size: 0.9rem;
  color: #ddd;
  text-align: left;
    font-family: 'Courier New', Courier, monospace;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.3em;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(3px);
  box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin-top: 1.5em;
    font-family: 'Courier New', Courier, monospace;
}

.modal-buttons button {
  flex: 1;
  padding: 0.5em 1em;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(3px);
  box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

#cancelStar {
  background-color: rgba(200, 200, 200, 0.2);
  color: #fff;
    font-family: 'Courier New', Courier, monospace;
}

#submitStar {
  background-color: rgba(120, 100, 255, 0.4);
  color: #fff;
    font-family: 'Courier New', Courier, monospace;
}

#submitStar:hover {
  background-color: rgba(120, 100, 255, 0.6);
}

.main-button {
 position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.4rem;
  background-color: #5e6067;
  text-decoration: none;
  color: white;
  display: inline-block;
  border: none;
  font-size: 1rem;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 1;
}