body {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel Decorative', serif;
  background: radial-gradient(ellipse at center, #000000 0%, #0d0d0d 100%);
  color: #f0f0f0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.hero {
  text-align: center;
  padding: 20px;
}

.teaser-line {
  font-size: 2.8rem;
  line-height: 1.6;
  color: #ffffff;
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}

.highlight {
  color: #00ffcc;
  background: linear-gradient(135deg, #00ffcc, #ff0057, #00bfff, #ffee00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: glow 6s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 12px #00ffcc; }
  100% { text-shadow: 0 0 25px #ff0057; }
}

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

.connect-btn {
  background: #111;
  border: 2px solid #00ffcc;
  color: #00ffcc;
  padding: 12px 24px;
  font-size: 1rem;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background: #00ffcc;
  color: #000;
}

.info {
  margin-top: 30px;
  font-size: 1.2rem;
}
