@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap";

/* src/styles.scss */
:root {
  --bg-page: #f6f3ee;
  --bg-page-gradient:
    linear-gradient(
      180deg,
      #f8f5f1 0%,
      #f3eee7 100%);
  --bg-card: #ffffff;
  --bg-card-elevated: #faf8f5;
  --accent: #e85d4c;
  --accent-dark: #c2410c;
  --accent-soft: rgba(232, 93, 76, 0.12);
  --theme-primary: #e85d4c;
  --theme-secondary: #c2410c;
  --theme-primary-rgb:
    232,
    93,
    76;
  --theme-secondary-rgb:
    194,
    65,
    12;
  --theme-glow: #e85d4c40;
  --theme-glow-soft: #e85d4c1a;
  --theme-border: #e85d4c33;
  --theme-gradient:
    linear-gradient(
      135deg,
      #e85d4c 0%,
      #ea580c 100%);
  --theme-gradient-soft:
    linear-gradient(
      135deg,
      #e85d4c22 0%,
      #ea580c18 100%);
  --sidebar-bg: #ffffff;
  --sidebar-text: #1c1917;
  --sidebar-muted: #78716c;
  --sidebar-width: 272px;
  --sidebar-collapsed-width: 80px;
  --surface: var(--bg-card);
  --surface-2: var(--bg-card-elevated);
  --text: #44403c;
  --text-heading: #1c1917;
  --text-muted: #78716c;
  --border: #e7e5e4;
  --success: #0d9488;
  --danger: #e11d48;
  --radius-md: 0.9rem;
  --radius-lg: 1.15rem;
  --shadow: 0 8px 30px rgba(28, 25, 23, 0.05);
}
body.night-mode {
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "DM Sans",
    system-ui,
    sans-serif;
  background-color: var(--bg-page);
  background-image: var(--bg-page-gradient);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: clip;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    background-image 0.35s ease;
}
a {
  color: var(--accent);
  text-decoration: none;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.2s ease;
}
.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.card-body {
  padding: 1.25rem;
}
.page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  font-family: inherit;
  background: var(--surface-2);
  color: var(--text-heading);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    background-color 0.35s ease,
    color 0.35s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-weight: 650;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.15s ease,
    color 0.18s ease,
    filter 0.18s ease;
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}
.btn:active:not(:disabled) {
  transform: translateY(0) scale(0.985);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}
.btn-ico,
.btn-spinner {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.btn-ico {
  display: block;
}
.btn-spinner {
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.9;
  animation: btn-spin 0.65s linear infinite;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-primary {
  background: var(--theme-gradient, linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 8px 18px var(--theme-glow-soft, rgba(232, 93, 76, 0.22));
}
.btn-primary:hover:not(:disabled) {
  filter: saturate(1.06) brightness(1.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset, 0 10px 22px var(--theme-glow, rgba(232, 93, 76, 0.32));
}
.btn-success {
  background:
    linear-gradient(
      180deg,
      #14b8a6 0%,
      #0f766e 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 6px 14px rgba(13, 148, 136, 0.26);
}
.btn-success:hover:not(:disabled) {
  filter: brightness(1.05);
}
.btn-danger {
  background:
    linear-gradient(
      180deg,
      #fb7185 0%,
      #e11d48 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 6px 14px rgba(225, 29, 72, 0.22);
}
.btn-danger:hover:not(:disabled) {
  filter: brightness(1.04);
}
.btn-outline {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-heading);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
}
.btn-outline:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  background: var(--surface-2);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
  box-shadow: none;
}
.btn-ghost:hover:not(:disabled) {
  background: var(--surface-2);
  color: var(--text-heading);
  border-color: color-mix(in srgb, var(--text-heading) 18%, var(--border));
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 0.38rem 0.82rem;
  font-size: 0.8rem;
  border-radius: 0.65rem;
  font-weight: 600;
}
.btn-lg {
  min-height: 3.05rem;
  padding: 0.9rem 1.45rem;
  font-size: 0.98rem;
  border-radius: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e1;
  border-radius: 26px;
  transition: 0.2s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.switch input:checked + .slider {
  background: var(--accent);
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 10rem;
  font-size: 0.85rem;
  color: #fff;
}
.badge-danger {
  background: var(--danger);
}
.badge-success {
  background: var(--success);
}
.alert {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  line-height: 1.35;
}
.page-subtitle,
.subtitle {
  font-size: 0.88rem !important;
  line-height: 1.35;
  max-width: 42rem;
}
.hint {
  font-size: 0.82rem;
  line-height: 1.35;
}
.steps {
  padding: 0.75rem 0.9rem !important;
  margin-bottom: 0.75rem !important;
}
.steps h3 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}
.steps ol,
.steps ul {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
}
.steps li {
  margin: 0.2rem 0;
  font-size: 0.84rem;
  line-height: 1.35;
}
.server-guide {
  padding: 0.65rem 0.85rem !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.84rem;
  line-height: 1.35;
  background: #fef2f2 !important;
  border: 1px solid #fca5a5 !important;
  color: #b91c1c !important;
  border-radius: 0.45rem;
}
.server-guide strong {
  color: #991b1b !important;
}
.server-guide p {
  margin: 0.2rem 0 0 !important;
  color: #b91c1c !important;
}
.delay-row {
  padding: 0.55rem 0.75rem !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.84rem;
}
.delay-hint {
  font-size: 0.78rem !important;
}
.upgrade-banner {
  padding: 0.7rem 0.85rem !important;
}
.upgrade-banner p {
  margin: 0.2rem 0 0 !important;
  font-size: 0.84rem;
  line-height: 1.35;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
body.night-mode {
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --sidebar-bg: #14110f;
  --sidebar-text: #f5f5f4;
  --sidebar-muted: #a8a29e;
}
body.night-mode .alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.35);
}
body.night-mode .alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #a7f3d0;
  border-color: rgba(16, 185, 129, 0.35);
}
body.night-mode .slider {
  background: #475569;
}
body.night-mode .btn-outline,
body.night-mode .btn-ghost {
  background: color-mix(in srgb, var(--surface) 88%, #000);
  box-shadow: none;
}
body.night-mode .btn-outline:hover:not(:disabled),
body.night-mode .btn-ghost:hover:not(:disabled) {
  background: color-mix(in srgb, var(--surface-2) 90%, #fff 6%);
}
body.night-mode .table th,
body.night-mode .table td {
  border-bottom-color: var(--border);
}
body.theme-panel-open {
  overflow: hidden;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% -10%,
      rgba(232, 93, 76, 0.16),
      transparent 55%),
    linear-gradient(
      180deg,
      #f8f5f1 0%,
      #efe8df 100%);
}
.contact-topbar {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  padding: 0.55rem 1rem;
  background: #1c1917;
  color: #faf8f5;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 80;
  box-sizing: border-box;
}
.contact-topbar span {
  opacity: 0.72;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-topbar a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.contact-topbar a:hover {
  color: #fdba74;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 20px 50px rgba(28, 25, 23, 0.08);
  border: 1px solid #e7e5e4;
  padding: 2rem 1.6rem;
  margin: auto 1rem;
}
.auth-card h1 {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  color: var(--text-heading);
}
.auth-links {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.deal-card textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
@media (max-width: 640px) {
  .contact-topbar {
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
    gap: 0.2rem 0.5rem;
  }
}

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