* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #111;
  color: white;
  min-height: 100vh;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at top left, #363636 0%, transparent 35%),
    radial-gradient(circle at bottom right, #242424 0%, transparent 40%),
    linear-gradient(135deg, #111, #1b1b1b);

  z-index: -2;
}

.background::after {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;

  padding: 30px;
}

.card {
  width: 100%;
  max-width: 700px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 24px;

  padding: 60px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 8px;
}

.logo span {
  display: block;

  font-size: 13px;

  margin-top: 8px;

  letter-spacing: 4px;

  color: #c7c7c7;

  font-weight: 400;
}

.divider {
  width: 80px;
  height: 2px;

  margin: 40px auto;

  background: #b89060;
}

h1 {
  font-size: 42px;

  line-height: 1.2;

  font-weight: 600;
}

p {
  margin-top: 25px;

  color: #d6d6d6;

  font-size: 18px;

  line-height: 1.8;
}

.status {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 40px;

  padding: 14px 24px;

  background: #b89060;

  color: #111;

  border-radius: 999px;

  font-weight: 700;
}

small {
  display: block;

  margin-top: 35px;

  color: #999;
}

@media (max-width: 700px) {
  .card {
    padding: 40px 30px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .logo {
    font-size: 26px;
  }
}
