@font-face {
  font-family: 'FacultyGlyphic';
  src: url('FacultyGlyphic-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'FacultyGlyphic', Arial, sans-serif;
  height: 100vh;
  background: url('keyart_small.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.signup-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);

  /* lower it so it doesn’t cover the face */
  margin-top: 300px;  /* was 60px */
	padding-top: 10px;
}


.signup-container h1 {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.signup-container input[type="email"],
.signup-container button {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.signup-container input[type="email"] {
  margin-bottom: 15px;
  background: #fff;
  text-align: center;
}

.signup-container button {
  background: #e6a500;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  text-shadow: 0 0 5px rgba(255,255,255,0.7);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.signup-container button:hover {
  background: #c88c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

#feedback {
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
  display: block;
}

#feedback.success {
  color: #fff;          /* white */
  font-size: 1.5em;     /* bigger */
  text-shadow: 0 0 10px rgba(255,255,255,0.8); /* subtle glow */
}

#feedback.error {
  color: #f44336; /* red */
}

#feedback.info {
  color: #ff9800; /* orange */
}

/* Wishlist link inside signup box */
.signup-container .wishlist {
  margin-top: 32px;
}
/*
.signup-container .wishlist a {
  display: inline-block;
  padding: 12px 20px;
  background: #5c7e10;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.signup-container .wishlist a:hover {
  background: #6fa91e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}
*/
.signup-container .wishlist a {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(to bottom, #6fa91e, #5c7e10); /* gradient green */
  color: #fff;
  font-family: sans-serif; /* closer to Steam’s UI style */
  font-size: 0.9em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #3a4d0b; /* thin darker green border */
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.signup-container .wishlist a:hover {
  background: linear-gradient(to bottom, #7ec424, #639513); /* lighter gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}




/* Footer only holds Snowcastle logo now */
footer {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
}

footer img {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.2s;
}

footer img:hover {
  opacity: 1;
  transform: scale(1.05);
}

footer .footer-text{
  color: #fff;
  font-size: 0.9em;
  margin-top: 10px;
}
