body {
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: #e6d4a3;
  font-family: 'Libre Baskerville', serif;
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  padding: 2rem;
  max-width: 700px;
  margin-top: 50px;
}

.logo {
  width: 400px;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

a {
  color: #f0c674;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.highlight {
  color: #f0c674;
  font-weight: bold;
}

.teaser {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #f0c674;
  color: #0d0d0d;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  font-family: 'Cinzel', serif;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e5b847;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .teaser {
    font-size: 1rem;
  }
}

.blurred {
  filter: blur(6px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #1b1b1b;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  color: #e6d4a3;
  font-family: 'Libre Baskerville', serif;
  box-shadow: 0 0 30px rgba(240, 198, 116, 0.3);
}

.modal-content h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  text-align: left;
}

.modal-content input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  background: #333;
  border: 1px solid #555;
  border-radius: 5px;
  color: #f0e5c9;
}

.modal-content .submit {
  margin-top: 1.5rem;
  background-color: #f0c674;
  color: #0d0d0d;
  border: none;
  cursor: pointer;
}

.modal-content .submit:hover {
  background-color: #e5b847;
}

.close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

footer a {
  color: #f0c674;
  text-decoration: none;
  font-family: 'Cinzel', serif;
}

footer a:hover {
  text-decoration: underline;
}
