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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #111;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  background: #f39c12;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 span {
  color: #f39c12;
}

.subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.status {
  display: inline-block;
  border: 1px solid #f39c12;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #f39c12;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.contact {
  font-size: 0.95rem;
  color: #666;
}

.contact a {
  color: #f39c12;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
