@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
h1, h2 {
  font-family: "Oliver", "Times New Roman", serif;
}

body {
  background: #f3f1e7;
  color: #1b1b1b;
  font-family: "Times New Roman", serif;
  margin: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: rgba(0,0,0,0.02);
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0% { opacity: 0.03; }
  50% { opacity: 0.06; }
  100% { opacity: 0.03; }
}

header {
  text-align: center;
  padding: 40px 0;
  background: #e6d8c5;
  border-bottom: 2px solid #a59b8a;
}

.seal {
  width: 80px;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  font-size: 14px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  background: #d9c9b4;
}

.nav-btn {
  text-decoration: none;
  color: #1b1b1b;
  padding: 10px 16px;
  border: 2px solid #1b1b1b;
  border-radius: 8px;
  font-weight: bold;
}

.nav-btn:hover {
  background: #1b1b1b;
  color: #f3f1e7;
}

.content {
  width: 800px;
  margin: 40px auto;
  display: grid;
  gap: 30px;
}

.card {
  background: #ffffff;
  border: 2px solid #a59b8a;
  padding: 20px;
  border-radius: 12px;
}

.status {
  font-weight: bold;
}

.small {
  font-size: 12px;
  opacity: 0.7;
}

footer {
  text-align: center;
  padding: 20px;
  background: #e6d8c5;
  border-top: 2px solid #a59b8a;
}

.hidden-link {
  color: transparent;
  text-decoration: none;
}
.secret {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.center {
  text-align: center;
}

.secret:hover {
  text-decoration: underline;
}
.hidden-link:hover {
  color: #1b1b1b;
}
