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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #172033;
  background: linear-gradient(135deg, #edf7ff 0%, #ffffff 55%, #eef3ff 100%);
}

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

.card {
  width: 100%;
  max-width: 480px;
  padding: 34px 26px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e0ecff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 95, 180, 0.14);
}

.brand {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1677ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand span {
  color: #dff5ff;
}

h1 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.desc,
.timer,
.note {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.domain {
  display: block;
  margin: 16px auto;
  color: #1677ff;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.domain:hover {
  text-decoration: underline;
}

.button {
  display: block;
  width: 100%;
  margin: 22px 0 14px;
  padding: 15px 18px;
  border-radius: 16px;
  background: #1677ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(22, 119, 255, 0.22);
}

.button:active {
  transform: translateY(1px);
}

.note {
  font-size: 13px;
}

@media (max-width: 480px) {
  .card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: 25px;
  }

  .domain {
    font-size: 23px;
  }
}
