* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 16px 0;
  font-size: 48px;
  font-weight: 700;
}

.status {
  margin: 0 0 14px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.message {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #d0d0d0;
}