:root {
  --bg-color: #121417;
  --card-bg: rgba(22, 26, 33, 0.85);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #F0EFEA;
  --text-secondary: #9E9C96;
  --accent-gold: #D4AF37;
  --accent-gold-soft: rgba(212, 175, 55, 0.15);
  --accent-gold-border: rgba(212, 175, 55, 0.35);
}

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

::selection {
  background-color: var(--accent-gold);
  color: #000000;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  z-index: 1000;
  opacity: 0.85;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-container {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.header {
  text-align: left;
}

.brand {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 6px;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

.main-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-gold-soft);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  display: inline-block;
}

.heading {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.body-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer {
  text-align: left;
  font-size: 0.875rem;
  color: var(--text-secondary);
  opacity: 0.85;
}

@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .main-card {
    padding: 32px 24px;
  }

  .heading {
    font-size: 1.5rem;
  }

  .body-text {
    font-size: 1rem;
  }
}
