body {
  font-family: 'Readex Pro', sans-serif;
  background-color: #1F1F41;
  color: #e0e0e0;
  text-align: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease-in-out both;
}

.container {
  padding: 80px 20px 180px;
  animation: fadeInUp 1.4s ease-out both;
}

img.logo {
  max-width: 100%;
  height: 250px;
  margin-bottom: 65px;
  animation: popIn 1s ease-out both;
  object-fit: contain;
}

.coming-soon {
  font-size: 2.1em;
  color: #FAF9FE;
  margin-bottom: 1.5em;
  animation: fadeInUp 1.8s ease-out both;
}

a {
  color: #8183fa;
  text-decoration: none;
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.bottom-bar {
  background: rgba(22, 22, 53, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 18px 12px;
  text-align: center;
  font-size: 0.95em;
  color: #ddd;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideUp 1.6s ease-out both;
  z-index: 100;
}

.bottom-bar a {
  color: #ffffff;
}

.bottom-bar p {
  margin: 6px 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}