/* encast.pro intermission / status page — self-contained, no external assets */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  min-height: 100%;
}

body {
  background: #401024;
  background: radial-gradient(ellipse at 50% 42%, #58152f 0%, #401024 55%, #260a18 100%);
  color: #f8ecd6;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.card {
  max-width: 620px;
  width: 100%;
  padding: 56px 40px;
  background: rgba(30, 8, 20, 0.82);
  border: 2px solid #f0c060;
  border-radius: 18px;
  box-shadow: 0 0 0 5px rgba(30, 8, 20, 0.82),
              0 0 90px rgba(240, 170, 90, 0.28),
              0 24px 60px rgba(20, 4, 12, 0.6);
}

.label {
  color: #f0c060;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 30px;
}
.divider span {
  display: block;
  width: 90px;
  height: 1px;
  background: #a87c3a;
}
.divider i {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #f0c060;
  transform: rotate(45deg);
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  font-weight: 400;
  color: #f8ecd6;
  margin-bottom: 26px;
  line-height: 1.15;
}

.note {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #d6beA8;
  margin-bottom: 14px;
}

.note.gold {
  color: #f0c060;
}

.note.small {
  font-size: 0.85rem;
  margin-top: 22px;
}

.site {
  margin-top: 36px;
  color: #f0c060;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
}

@media (max-width: 480px) {
  .card { padding: 40px 22px; }
  .divider span { width: 54px; }
}
