:root {
  color-scheme: dark;
  color: #F2D06B;
  background: #3a241c;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  background: radial-gradient(circle at top left, rgba(242, 208, 107, 0.24), transparent 26%),
    radial-gradient(circle at top right, rgba(242, 163, 94, 0.18), transparent 28%),
    linear-gradient(180deg, #592f20 0%, #3a241c 45%, #23150f 100%);
}
.page-shell {
  position: relative;
  min-height: 100vh;
  background-image: url("logo/fondo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(89, 47, 32, 0.74);
  backdrop-filter: blur(12px);
}
.content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(242, 208, 107, 0.16);
  border-radius: 28px;
  background: rgba(89, 47, 32, 0.88);
  box-shadow: 0 32px 120px rgba(36, 18, 11, 0.38);
}
.logo {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 1.75rem;
}
h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 4rem);
  letter-spacing: -0.04em;
  color: #F2CB9B;
}
p {
  color: rgba(242, 203, 155, 0.92);
  line-height: 1.75;
  max-width: 34rem;
  margin: 1.25rem auto 0;
}
.status-card {
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(242, 208, 107, 0.1);
  border: 1px solid rgba(242, 163, 94, 0.2);
}
.status-card span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  background: rgba(242, 163, 94, 0.2);
  border-radius: 999px;
  font-size: 1.6rem;
}
.status-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}
.status-card p {
  margin: 0;
  color: rgba(242, 208, 107, 0.85);
}
@media (max-width: 640px) {
  .content {
    padding: 2rem 1.5rem;
  }
}
