/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0c1828;
  --bg2: #121e32;
  --bg3: #0a0f1a;
  --panel: #162540;
  --border: #2a5490;
  --border-faint:#1a3060;
  --accent: #00d4ff;
  --accent2: #ff7020;
  --text: #ddeeff;
  --text-dim: #90bada;
  --text-muted: #90bada;
  --muted: #90bada;
  --danger: #ff5555;
  --success: #00e88a;
  --bg-card: #162540;
  --bg-input: #0e1828;
  --font-hud: "Orbitron", monospace;
  --font-mono: "Share Tech Mono", monospace;
  --rarity-common: #9ea3a8;
  --rarity-elite: #f5f7fa;
  --rarity-unique: #4ea1ff;
  --rarity-epic: #b166ff;
  --rarity-hero: #cf5b1d;
  --rarity-special: #f2cf3b;
  --rarity-legendary: #e08a24;
}
.rarity-common {
  color: var(--rarity-common);
}
.rarity-elite {
  color: var(--rarity-elite);
}
.rarity-unique {
  color: var(--rarity-unique);
}
.rarity-epic {
  color: var(--rarity-epic);
}
.rarity-hero {
  color: var(--rarity-hero);
}
.rarity-special {
  color: var(--rarity-special);
}
.rarity-legendary {
  color: var(--rarity-legendary);
}
html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.6;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% -10%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 70%),
    radial-gradient(
      ellipse 60% 40% at 80% 100%,
      rgba(255, 107, 0, 0.05) 0%,
      transparent 60%),
    var(--bg);
}
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 10% 20%,
      rgba(200, 222, 255, 0.4) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 30% 70%,
      rgba(200, 222, 255, 0.3) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 60% 15%,
      rgba(200, 222, 255, 0.5) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 75% 55%,
      rgba(200, 222, 255, 0.3) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 90% 35%,
      rgba(200, 222, 255, 0.4) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 20% 90%,
      rgba(200, 222, 255, 0.2) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 50% 45%,
      rgba(200, 222, 255, 0.3) 0%,
      transparent 100%),
    radial-gradient(
      1px 1px at 85% 80%,
      rgba(200, 222, 255, 0.4) 0%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.card {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1rem;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.06), 0 0 0 1px rgba(0, 212, 255, 0.04) inset;
}
@media (max-width: 639px) {
  .page {
    padding: 0.5rem;
    justify-content: flex-start;
  }
  .card {
    padding: 1rem 0.75rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .card::before,
  .card::after {
    display: none;
  }
  .hud-title {
    font-size: 1.2rem;
  }
  .hud-subtitle {
    margin-bottom: 1rem;
  }
}
.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--accent);
  border-style: solid;
}
.card::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.card::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}
.hud-title {
  font-family: var(--font-hud);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  text-align: center;
  margin-bottom: 0.25rem;
}
.hud-subtitle {
  font-family: var(--font-hud);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.field label {
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.field input {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  padding: 0.6rem 0.8rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.12);
}
.field input.invalid {
  border-color: var(--danger);
}
.btn {
  font-family: var(--font-hud);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  width: 100%;
  margin-top: 0.5rem;
}
.btn-primary:hover:not(:disabled) {
  background: #33deff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  width: 100%;
  margin-top: 0.75rem;
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}
.error-msg {
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 2px;
  color: var(--danger);
  font-size: 0.8rem;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
}
.success-msg {
  color: var(--success);
  font-size: 0.8rem;
  text-align: center;
}
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spinner-lg {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 212, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.tab-loading-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.tab-loading-container {
  position: relative;
}
.tab-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 18, 0.78);
  z-index: 20;
  border-radius: 4px;
  gap: 0.65rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  pointer-events: none;
}
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.powered-by {
  position: static;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-hud);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.4s ease both;
}

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