body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8fafc, #e6edf5);
  color: #1f2937;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  max-width: 200px;
  margin: 1rem auto;
  display: block;
}

.message h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.message .highlight {
  color: #2563eb;
  font-weight: 700;
}

.message p {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
  margin: 0.5rem 0;
}

.redirect-msg {
  margin-top: 1rem;
  font-style: italic;
}

.redirect-msg a {
  color: #2563eb;
  text-decoration: none;
}

.redirect-msg a:hover {
  text-decoration: underline;
}

.logos {
  margin-top: 2rem;
}

.ames-logo {
  width: 180px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ames-logo:hover {
  opacity: 1;
}

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