@charset "UTF-8";

/* src/styles.scss */
:root {
  --color-bg: #07070f;
  --color-bg-subtle: #0c0c1a;
  --color-bg-muted: #16162a;
  --color-surface: #131324;
  --color-surface-2: #1b1b33;
  --color-border: #262642;
  --color-border-strong: #3a3a5e;
  --color-text: #eceefb;
  --color-text-muted: #a6aacb;
  --color-text-soft: #7a7ea0;
  --color-primary: #8b8dff;
  --color-primary-hover: #a6a8ff;
  --color-primary-soft: rgba(139, 141, 255, 0.14);
  --color-accent: #b06bff;
  --color-accent-dark: #2d1b69;
  --color-success: #2dd4a7;
  --color-danger: #ff5a6a;
  --font-sans:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 24px 60px rgba(124, 96, 255, 0.35);
  --container-max: 1200px;
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  background: var(--color-text-soft);
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary-soft);
}
.zoomable {
  position: relative;
}
.zoom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}
.zoomable.open .zoom-lightbox {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: zoom-out;
}
.zoom-lightbox img {
  max-width: min(560px, 86vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(255, 255, 255, 0.85);
  background: var(--color-surface);
  transform: scale(0.94);
  transition: transform 0.28s ease;
}
.zoomable.open .zoom-lightbox img {
  transform: scale(1);
}
.zoomable img {
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.zoomable > img,
.zoomable > .thumb-img {
  cursor: zoom-in;
}
.sub-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
}
.sub-banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sub-banner-text strong {
  font-size: 15px;
}
.sub-banner-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}
.sub-banner-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.sub-banner-cta:hover {
  filter: brightness(1.08);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-muted);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-soft);
}

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