/* src/styles.scss */
:root {
  --background: #070707;
  --background-soft: #0e0e0e;
  --surface: rgba(14, 14, 14, 0.92);
  --surface-border: rgba(42, 208, 198, 0.26);
  --text-primary: #f5f2ef;
  --text-secondary: rgba(245, 242, 239, 0.72);
  --accent: #2ad0c6;
  --accent-soft: rgba(42, 208, 198, 0.16);
  --danger: #ff6b6b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  font-family:
    "Outfit",
    "Avenir Next",
    "Segoe UI",
    sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
  margin: 0;
}
body {
  background: var(--background);
  color: var(--text-primary);
}
body,
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.page-shell {
  margin: 0 auto;
  max-width: 1320px;
  min-height: calc(100vh - 120px);
  padding: 2rem 1.5rem 5rem;
}
.status-card {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--text-secondary);
  padding: 2rem;
  text-align: center;
}
.ghost-card {
  align-items: center;
  aspect-ratio: 4/5;
  background: rgba(14, 14, 14, 0.92);
  border: 1px dashed rgba(42, 208, 198, 0.35);
  border-radius: 24px;
  color: var(--text-secondary);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 1.5rem;
  text-align: center;
}
.ghost-card__icon {
  align-items: center;
  border: 1px solid rgba(42, 208, 198, 0.4);
  border-radius: 999px;
  color: var(--accent);
  display: grid;
  font-size: 1.75rem;
  height: 4rem;
  width: 4rem;
}
.button-accent {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.button-accent:hover,
.button-accent:focus-visible {
  background: rgba(42, 208, 198, 0.12);
  box-shadow: 0 10px 30px rgba(42, 208, 198, 0.18);
  transform: translateY(-1px);
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media (min-width: 768px) {
  .page-shell {
    padding: 2.5rem 2.5rem 5.5rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
