/* src/styles.css */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  background:
    linear-gradient(
      135deg,
      #F4FBF7 0%,
      #FAFAFA 50%,
      #FAF5F5 100%);
  background-attachment: fixed;
  color: #0F172A;
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.bg-theme-gradient {
  background:
    linear-gradient(
      135deg,
      #F4FBF7 0%,
      #FAFAFA 50%,
      #FAF5F5 100%);
}
.bg-theme-gradient-card {
  background:
    linear-gradient(
      135deg,
      #F4FBF7 0%,
      #FFFFFF 50%,
      #FAF5F5 100%);
}
.bg-btn-gradient {
  background:
    linear-gradient(
      135deg,
      #DCFCE7 0%,
      #F1F5F9 50%,
      #FFE4E6 100%);
  color: #0F172A;
  border: 1px solid rgba(203, 213, 225, 0.8);
}
.bg-btn-gradient:hover {
  background:
    linear-gradient(
      135deg,
      #BBF7D0 0%,
      #E2E8F0 50%,
      #FECDD3 100%);
}
.text-theme-gradient {
  background:
    linear-gradient(
      135deg,
      #047857 0%,
      #334155 50%,
      #BE123C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-theme-gradient-dark {
  background:
    linear-gradient(
      135deg,
      #080C14 0%,
      #0F172A 50%,
      #070B14 100%);
}
.bg-dark-card {
  background:
    linear-gradient(
      135deg,
      #1E293B 0%,
      #0F172A 70%,
      #111827 100%);
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  display: flex;
  width: 200%;
  animation: marquee 34s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F4F7F6;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #059669;
}
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.no-scrollbar {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
button,
.btn {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
}
button:hover,
.btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 16px -2px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.08) !important;
}
button:active,
.btn:active {
  transform: translateY(0.5px) scale(0.98);
  box-shadow: 0 2px 4px -1px rgba(15, 23, 42, 0.08) !important;
}
@keyframes modalPopIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.animate-modal-pop {
  animation: modalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
input::placeholder,
textarea::placeholder,
select::placeholder,
::placeholder {
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: #94A3B8 !important;
  opacity: 0.65 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: #94A3B8 !important;
  opacity: 0.65 !important;
}
input,
textarea,
select {
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
}

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