* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1c1c1c;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.card {
  background: #272727;
  border-radius: 16px;
  padding: 48px 56px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #f0f0f0;
}

.divider {
  width: 32px;
  height: 1.5px;
  background: #3a3a3a;
  margin: 24px auto;
}

.badge {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.delonix {
  background: linear-gradient(
    90deg,
    #c45c00 0%,
    #ff8c2a 30%,
    #ffb347 50%,
    #ff8c2a 70%,
    #c45c00 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.4s linear infinite;
  text-decoration: none;
}
