* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at center, #1e1e2f, #0a0a0f);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}
.hero {
  text-align: center;
  position: relative;
}
.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 50px;
  margin-bottom: 20px;
}
.ticker {
  display: flex;
  animation: ticker 15s linear infinite;
  font-size: 1.5rem;
  white-space: nowrap;
}
.ticker span {
  padding: 0 2rem;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fade {
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.fade-left {
  left: 0;
  background: linear-gradient(to right, #0a0a0f, transparent);
}
.fade-right {
  right: 0;
  background: linear-gradient(to left, #0a0a0f, transparent);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
}
form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
input {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
}
button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  background: #6c5ce7;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #a29bfe;
}
