* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

body {
  background: #000000;
  color: #cfe6f3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 520px;
  padding: 40px;
}

.logo {
  max-width: 220px;
  margin-bottom: 32px;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  color: #e6f3fa;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: #9bbfd6;
  line-height: 1.6;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #8bb7d6,
    #3f6c8f,
    #162b40
  );
  margin: 32px auto;
  border-radius: 2px;
}

.footer {
  font-size: 13px;
  color: #6c8fa6;
}