* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #531116;
  color: #f5e6c8;
  font-family: Georgia, 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 680px;
  width: 100%;
  animation: fadeUp 1.4s ease both;
}
.logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 2.8rem;
  animation: fadeUp 1.4s ease 0.1s both;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  animation: fadeUp 1.4s ease 0.3s both;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, #c9a96e);
}
.divider::before {
  --dir: right;
}
.divider::after {
  --dir: left;
}
.divider span {
  color: #c9a96e;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
h1 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  animation: fadeUp 1.4s ease 0.4s both;
  background: linear-gradient(90deg, #b08840 0%, #c9a96e 30%, #eddfa0 50%, #c9a96e 70%, #b08840 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1.4s ease 0.4s both, shimmer 9s linear 2s infinite;
}
.description {
  font-size: 1rem;
  line-height: 1.85;
  color: #f5e6c8;
  margin-bottom: 2.2rem;
  opacity: 0.88;
  animation: fadeUp 1.4s ease 0.6s both;
}
.email {
  display: inline-block;
  color: #c9a96e;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, opacity 0.25s;
  animation: fadeUp 1.4s ease 0.75s both;
}
.email:hover {
  border-color: #c9a96e;
  opacity: 0.8;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
