* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.ticker-wrap {
  position: absolute;
  inset: -120px 0;
  overflow: hidden;
  opacity: 0.18;
}

.ticker-row {
  display: flex;
  white-space: nowrap;
  margin: 0;
  min-height: 32px;
  line-height: 1;
}

.ticker-track {
  display: flex;
  gap: 30px;
  animation: move-left 60s linear infinite;
}

.ticker-row.reverse .ticker-track {
  animation-name: move-right;
}

.domain {
  color: #fff;
  font-weight: 700;
  text-transform: lowercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.social-links {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.social-links a {
  color: #d4af37;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  opacity: 1;
}

.social-links a:hover {
  color: #ff8c42;
  transform: translateY(-3px);
}

.center-card {
  position: relative;
  z-index: 5;
  width: min(90%, 560px);
  padding: 42px 32px;
  text-align: center;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.center-card h1 {
  margin: 0 0 14px;
  font-size: clamp(10px, 6vw, 24px);
}

.center-card p {
  margin: 0 0 28px;
  color: #cfcfcf;
  line-height: 1.5;
}

.center-card a {
  display: inline-block;
  padding: 14px 22px;
  color: #050505;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.center-card a:hover {
  transform: translateY(-2px);
}

@keyframes move-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes move-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}