/* src/styles.scss */
:root {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --primary-light: rgba(249, 115, 22, 0.15);
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-light: rgba(34, 197, 94, 0.2);
  --secondary: #0f172a;
  --background: #020617;
  --surface: #1e293b;
  --surface-light: #334155;
  --card: #ffffff;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #020617;
  --border: #334155;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.25);
  --font-sans:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  width: 100%;
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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