body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #0d0d0d, #2b1e17);
  color: #d4af37;
  text-align: center;
  overflow-x: hidden;
}

.container {
  padding: 40px 20px;
  max-width: 500px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #d4af37;
  background: #000;
  position: relative;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.5s infinite;
  border-radius: 50%;
}

h1 {
  margin: 10px 0 30px;
  font-size: 2em;
  color: #d4af37;
}

.link-list a {
  display: block;
  background: #111;
  color: #d4af37;
  padding: 15px;
  margin: 12px 0;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #d4af37;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
}

.link-list a:hover {
  background: #1b1b1b;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

footer {
  margin-top: 60px;
  font-size: 0.85em;
  color: #aaa;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
