* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at top, #1c2b3a 0%, #0b1118 60%);
  color: #e6eef6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(80, 160, 255, 0.15),
    transparent 70%
  );
  top: -200px;
  right: -200px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, #101a24, #0b1118);
  border-radius: 24px;
  padding: 40px 48px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

.logo {
  height: 6rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(90, 170, 255, 0.4));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h2 {
  font-size: 1.5rem;
  color: #bfc4ca;
  font-weight: 500;
  margin-bottom: 12px;
}

p {
  margin-bottom: 28px;
  font-size: 1rem;
  color: #939496;
  padding: 0 16px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 20px 16px;
  font-size: 1.15rem;
}

.info-block-secondary {
  padding: 16px 16px;
  font-size: 0.8rem;
  background: rgba(222, 222, 222, 0.024);
}

.label {
  display: block;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8fa7bf;
  margin-bottom: 0.25em;
}

.value {
  font-size: 1em;
}

.link {
  color: #6fb3ff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

footer {
  margin-top: 28px;
  font-size: 0.7rem;
  color: #6c7f94;
}
