body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  color: #cc5c1d;
  background: url('background.png') repeat;
  background-size: contain;
  animation: scrollBackground 60s linear infinite;
}
@keyframes scrollBackground {
  from { background-position: 0 0; }
  to { background-position: 1000px 0; }
}
.centered-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
}
img {
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
  cursor: pointer;
}
h1, .easteregg-form-container, .easteregg-success {
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.5s;
}
h1.visible,
.easteregg-form-container.visible,
.easteregg-success.visible {
  opacity: 1;
}
.easteregg-form-container {
  background: #fff;
  color: #222;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  text-align: left;
  font-size: 1rem;
  margin: 0 auto;
  margin-top: 20px;
}
.easteregg-form-container label {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  color: #cc5c1d;
}
.easteregg-form-container input,
.easteregg-form-container textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.easteregg-form-container button {
  margin-top: 1rem;
  background: #cc5c1d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.easteregg-form-container button:hover {
  background: #8e3b10;
}
.easteregg-success {
  font-size: 1.2rem;
  color: #27ae60;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  width: 90%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
