/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-main: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-heading: #1e293b;
  --header-bg: rgba(255, 255, 255, 0.85);
  --footer-bg: #f8fafc;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(79, 70, 229, 0.35);
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-hover-bg: rgba(79, 70, 229, 0.05);
  --btn-secondary-bg: rgba(0, 0, 0, 0.04);
  --btn-secondary-border: rgba(0, 0, 0, 0.1);
  --btn-secondary-text: #475569;
  --btn-secondary-hover-bg: rgba(0, 0, 0, 0.08);
  --btn-secondary-hover-text: #0f172a;
  --social-link-bg: rgba(0, 0, 0, 0.05);
  --social-link-hover: rgba(79, 70, 229, 0.1);
  --search-bar-bg: #ffffff;
  --search-bar-text: #1e293b;
  --search-bar-border: #cbd5e1;
  --primary: #4f46e5;
}
.dark {
  --bg-main: #0f0f14;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f1f5f9;
  --header-bg: rgba(15, 15, 20, 0.85);
  --footer-bg: #08080d;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(124, 58, 237, 0.35);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover-bg: rgba(124, 58, 237, 0.06);
  --btn-secondary-bg: rgba(255, 255, 255, 0.04);
  --btn-secondary-border: rgba(255, 255, 255, 0.1);
  --btn-secondary-text: #94a3b8;
  --btn-secondary-hover-bg: rgba(255, 255, 255, 0.08);
  --btn-secondary-hover-text: #e2e8f0;
  --social-link-bg: rgba(255, 255, 255, 0.05);
  --social-link-hover: rgba(124, 58, 237, 0.2);
  --search-bar-bg: #1e1e24;
  --search-bar-text: #e2e8f0;
  --search-bar-border: rgba(255, 255, 255, 0.15);
  --primary: #818cf8;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-main);
  -webkit-text-size-adjust: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--text-heading);
  color: var(--bg-main);
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
section,
article {
  contain: layout style;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.footer-placeholder {
  min-height: 300px;
  width: 100%;
  background: var(--footer-bg);
}
@media (max-width: 900px) {
  .footer-placeholder {
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .footer-placeholder {
    min-height: 700px;
  }
}

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