/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #e8e8f0;
  background-color: #01010f;
  background-image:
    linear-gradient(
      135deg,
      #01010f 0%,
      #050520 50%,
      #01010f 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  letter-spacing: 0.05em;
}
a {
  color: #d974c3;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #d974c3;
}
::selection {
  background: rgba(217, 116, 195, 0.3);
  color: #ffffff;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000008;
}
::-webkit-scrollbar-thumb {
  background: rgba(217, 116, 195, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 116, 195, 0.6);
}
.neon-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(138, 37, 204, 0.4);
  border-radius: 8px;
  color: #d77bff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}
.neon-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 0, 138, 0.1),
      transparent);
  transition: left 0.5s ease;
}
.neon-btn:hover {
  border-color: #d974c3;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(217, 116, 195, 0.3), 0 0 20px rgba(217, 116, 195, 0.15);
  transform: scale(1.05);
}
.neon-btn:hover::before {
  left: 100%;
}
.neon-btn:active {
  transform: scale(0.98);
}
.neon-btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
}
.neon-btn--accent {
  border: 1px solid rgba(138, 37, 204, 0.4);
  color: #d77bff;
}
.neon-btn--accent::before {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.15),
      transparent);
}
.neon-btn--accent:hover {
  border-color: #00d4ff;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 212, 255, 0.15);
  transform: scale(1.05);
}
.neon-btn--accent:hover::before {
  left: 100%;
}
.section-page {
  min-height: calc(100vh - 70px);
  padding: 100px 2rem 5rem;
}
.section-page__container {
  max-width: 960px;
  margin: 0 auto;
}
.section-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Exo 2", sans-serif;
  font-size: 0.875rem;
  color: #8888aa;
  margin-bottom: 3rem;
  transition: color 0.2s ease;
}
.section-page__back:hover {
  color: #d974c3;
}
.section-page__header {
  margin-bottom: 3rem;
}
.section-page__title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: #c044ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(217, 116, 195, 0.6), 0 0 20px rgba(217, 116, 195, 0.3);
}
@media (max-width: 768px) {
  .section-page__title {
    font-size: 2rem;
  }
}
.section-page__accent-line {
  width: 80px;
  height: 2px;
  background:
    linear-gradient(
      135deg,
      #c044ff 0%,
      #d974c3 100%);
  box-shadow: 0 0 5px rgba(217, 116, 195, 0.4);
}
.section-page__intro-text {
  font-size: 1.125rem;
  color: #e8e8f0;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  text-align: justify;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(192, 68, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(192, 68, 255, 0.25);
  }
}
@keyframes orbit1 {
  from {
    transform: rotate(0deg) translateX(195px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(195px) rotate(-360deg);
  }
}
@keyframes orbit2 {
  from {
    transform: rotate(120deg) translateX(149px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(149px) rotate(-480deg);
  }
}
@keyframes orbit3 {
  from {
    transform: rotate(240deg) translateX(102px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(102px) rotate(-600deg);
  }
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes heroBadgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 116, 195, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(217, 116, 195, 0);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}
@keyframes bgPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardOrbit1 {
  from {
    transform: rotate(0deg) translateX(130px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(130px) rotate(-360deg);
  }
}
@keyframes cardOrbit2 {
  from {
    transform: rotate(120deg) translateX(95px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(95px) rotate(-480deg);
  }
}
@keyframes cardOrbit3 {
  from {
    transform: rotate(240deg) translateX(65px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(65px) rotate(-600deg);
  }
}
@keyframes cardSpinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit1-tablet {
  from {
    transform: rotate(0deg) translateX(130px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(130px) rotate(-360deg);
  }
}
@keyframes orbit2-tablet {
  from {
    transform: rotate(120deg) translateX(97px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(97px) rotate(-480deg);
  }
}
@keyframes orbit3-tablet {
  from {
    transform: rotate(240deg) translateX(69px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(69px) rotate(-600deg);
  }
}
@keyframes orbit1-mobile {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}
@keyframes orbit2-mobile {
  from {
    transform: rotate(120deg) translateX(75px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(75px) rotate(-480deg);
  }
}
@keyframes orbit3-mobile {
  from {
    transform: rotate(240deg) translateX(53px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(53px) rotate(-600deg);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}
.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}
.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}
.animate-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.animate-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.animate-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}
.animate-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}
.animate-delay-5 {
  animation-delay: 0.5s;
  opacity: 0;
}

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