/* [project]/src/components/magicui/word-rotate.css [app-client] (css) */
.word-rotate-wrapper {
  align-items: center;
  display: inline-flex;
}

.word-rotate-container {
  text-align: right;
  height: 1.2em;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.word-rotate-word {
  opacity: 1;
  text-align: right;
  white-space: nowrap;
  width: 100%;
  transition: opacity .5s, transform .5s;
  display: block;
  transform: translateY(0);
}

.word-rotate-word.entering {
  opacity: 0;
  transform: translateY(20px);
}

.word-rotate-word.exiting {
  opacity: 0;
  transform: translateY(-20px);
}

.word-rotate-prefix {
  margin-right: .25rem;
}

.word-rotate-suffix {
  margin-left: .25rem;
}

/* [project]/src/components/ui/GetStartedButton/GetStartedButton.module.css [app-client] (css) */
.GetStartedButton-module__mdhO_q__button {
  color: #fff;
  font-family: inherit;
  font-size: var(--fs-lg);
  letter-spacing: .05em;
  cursor: pointer;
  text-transform: uppercase;
  background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);
  border: none;
  border-radius: 10em;
  align-items: center;
  height: 2.8em;
  padding: .35em 3.3em .35em 1.2em;
  font-weight: 500;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1.6em rgba(183, 33, 255, .3), 0 0 1.6em rgba(33, 212, 253, .3);
}

.GetStartedButton-module__mdhO_q__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 2em rgba(183, 33, 255, .4), 0 0 2em rgba(33, 212, 253, .4);
}

.GetStartedButton-module__mdhO_q__button:active {
  transform: translateY(0);
}

.GetStartedButton-module__mdhO_q__icon {
  background: #fff;
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  height: 2.2em;
  margin-left: 1em;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: absolute;
  right: .3em;
}

.GetStartedButton-module__mdhO_q__button:hover .GetStartedButton-module__mdhO_q__icon {
  width: calc(100% - .6em);
}

.GetStartedButton-module__mdhO_q__icon svg {
  color: #b721ff;
  width: 1.1em;
  transition: transform .3s;
}

.GetStartedButton-module__mdhO_q__button:hover .GetStartedButton-module__mdhO_q__icon svg {
  transform: translateX(.1em);
}

.GetStartedButton-module__mdhO_q__button:active .GetStartedButton-module__mdhO_q__icon {
  transform: scale(.9);
}

.GetStartedButton-module__mdhO_q__small {
  font-size: var(--fs-sm);
  height: 2.4em;
  padding-right: 3em;
}

.GetStartedButton-module__mdhO_q__small .GetStartedButton-module__mdhO_q__icon {
  width: 1.9em;
  height: 1.9em;
}

.GetStartedButton-module__mdhO_q__large {
  font-size: var(--fs-xl);
  height: 3.2em;
  padding-right: 3.6em;
}

.GetStartedButton-module__mdhO_q__large .GetStartedButton-module__mdhO_q__icon {
  width: 2.5em;
  height: 2.5em;
}

.GetStartedButton-module__mdhO_q__primary {
  background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);
}

.GetStartedButton-module__mdhO_q__secondary {
  background-image: linear-gradient(19deg, #00ff87 0%, #60efff 100%);
}

.GetStartedButton-module__mdhO_q__danger {
  background-image: linear-gradient(19deg, #ff1e56 0%, #ff6b6b 100%);
}

.GetStartedButton-module__mdhO_q__fullWidth {
  justify-content: center;
  width: 100%;
}

/* [project]/src/components/ui/SpinningButton/SpinningButton.module.css [app-client] (css) */
.SpinningButton-module__ZzQnia__button {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border: none;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  height: 47px;
  padding: 12px;
  display: flex;
  position: relative;
}

.SpinningButton-module__ZzQnia__button:before {
  content: "";
  z-index: -10;
  pointer-events: none;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
  border-radius: 10px;
  width: 208px;
  height: 55px;
  margin: auto;
  transition: all .6s cubic-bezier(.175, .885, .32, 1.275);
  position: absolute;
  top: -1px;
  bottom: 0;
  left: -4px;
  right: 0;
}

.SpinningButton-module__ZzQnia__button:after {
  content: "";
  z-index: -1;
  filter: blur(20px);
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate3d(0, 0, 0)scale(.95);
}

.SpinningButton-module__ZzQnia__button:hover:after {
  filter: blur(30px);
}

.SpinningButton-module__ZzQnia__button:hover:before {
  transform: rotate(-180deg);
}

.SpinningButton-module__ZzQnia__button:active:before {
  scale: .7;
}

/* [project]/src/components/TiltEffect/TiltEffect.css [app-client] (css) */
.tilt-effect {
  transform-style: preserve-3d;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
  transform: perspective(500px);
  box-shadow: 0 20px 27px rgba(0, 0, 0, .05);
}

.tilt-effect:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all .5s;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(-20px);
  box-shadow: 0 20px 70px -10px rgba(0, 0, 0, .7), 0 50px 100px rgba(0, 0, 0, .2);
}

.tilt-effect:hover:after {
  transform: translateZ(-50px);
}

.tilt-effect-link {
  text-decoration: none;
  display: inline-block;
}

.tilt-logo {
  width: 300px;
  height: 300px;
  font-size: var(--fs-6xl);
  background-color: #7e56ff;
  background-image: linear-gradient(150deg, #5a00ff 0%, #ff1ff7 100%, #ff1ff7 100%);
}

.tilt-button {
  color: #fff;
  background: linear-gradient(to right, #00803b, #004347);
  border-radius: 5px;
  padding: .5em 1em;
  text-decoration: none;
}

/* [project]/src/app/custom-animations.css [app-client] (css) */
.shiny-flash {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.shiny-flash:after {
  content: "";
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, 0) 100%);
  width: 50%;
  height: 100%;
  animation: .4s ease-in-out shiny-flash-move;
  position: absolute;
  top: 0;
  left: -75%;
  transform: skewX(-20deg);
}

@keyframes shiny-flash-move {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.text-flash {
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  animation: .4s ease-in-out text-flash-color;
  display: inline;
  position: relative;
}

@keyframes text-flash-color {
  0% {
    color: inherit;
  }

  50% {
    color: #fff;
    text-shadow: 0 0 8px #fff;
  }

  100% {
    color: inherit;
  }
}

.right-icon-cloud {
  width: min(600px, 40vw);
  top: 50%;
  left: 65vw;
  transform: translateY(-50%);
}

.high-z-index {
  z-index: 9999;
}

.bg-size-400 {
  background-size: 400% 400%;
}

.animate-gradient {
  animation: 15s infinite gradient-animation;
}

@keyframes gradient-animation {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.typing-animation {
  white-space: nowrap;
  border-right: 2px solid #00bfff;
  animation: 3.5s steps(40, end) typing, .75s step-end infinite blink-caret;
  display: inline-block;
  overflow: hidden;
}

.blue-cyan-gradient {
  background: linear-gradient(90deg, #0ff, #1e90ff, #00bfff, #00f) 0 0 / 300% 100%;
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 10px rgba(0, 191, 255, .3);
  -webkit-background-clip: text;
  background-clip: text;
  animation: 8s infinite gradient-flow;
}

@keyframes gradient-flow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: rgba(0, 0, 0, 0);
  }

  50% {
    border-color: #fff;
  }
}

.hour-0 {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.hour-6 {
  background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.hour-12 {
  background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}

.hour-18 {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

@keyframes scan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(500px);
  }
}

.animate-scan {
  animation: 4s linear infinite scan;
}

/* [project]/src/app/animated-gradient.css [app-client] (css) */
@keyframes gradient-flow {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.animated-gradient-text {
  background-size: 200% 200%;
  animation: 8s infinite gradient-flow;
}

.gradient-text-shadow {
  z-index: 1;
  position: relative;
}

.gradient-text-shadow:before {
  content: attr(data-text);
  z-index: -1;
  background: linear-gradient(90deg, #f43f5e, #60a5fa, #22d3ee) 0 0 / 200% 200%;
  color: rgba(0, 0, 0, 0);
  filter: saturate(1.5) blur();
  opacity: 1;
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  height: 100%;
  animation: 8s infinite gradient-flow;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(6px, 6px);
}

/* [project]/src/app/shiny-text.css [app-client] (css) */
@keyframes shinyEffect {
  0% {
    background-position: -100%;
  }

  100% {
    background-position: 200%;
  }
}

.shiny-text {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%) 0 0 / 200%;
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  animation: 1.5s linear forwards shinyEffect;
}

/* [project]/src/app/glassmorphism.css [app-client] (css) */
.glassmorphism-container {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.nav-controls-container {
  z-index: 90;
  border-radius: 20px;
  padding: 10px 20px;
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

/* [project]/src/app/carousel-fix.css [app-client] (css) */
.carouselContainer, .carouselContainer *, .carouselContainer :before, .carouselContainer :after {
  background: none !important;
}

/* [project]/src/app/heading-effects.css [app-client] (css) */
.title-shadow {
  text-shadow: .5rem .5rem rgba(59, 130, 246, .7);
}

@media (max-width: 640px) {
  .title-shadow {
    text-shadow: .25rem .25rem rgba(59, 130, 246, .7);
  }
}

/* [project]/src/components/ParallaxBackground/ParallaxBackground.css [app-client] (css) */
.parallax-container {
  perspective: 1px;
  scrollbar-width: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.parallax-container::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

.parallax__layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.parallax__layer--base {
  z-index: 10;
  transform: translateZ(0);
}

.parallax__layer--back {
  z-index: 1;
  transform: translateZ(-1px)scale(2);
}

.parallax__layer--back2 {
  z-index: 0;
  transform: translateZ(-2px)scale(3);
}

.parallax__layer--back3 {
  z-index: -1;
  transform: translateZ(-3px)scale(4);
}

.parallax__layer--deep1 {
  z-index: 4;
  transform: translateZ(-1px)scale(2);
}

.parallax__layer--deep2 {
  z-index: 3;
  transform: translateZ(-3px)scale(4);
}

.parallax__layer--deep3 {
  z-index: 2;
  transform: translateZ(-5px)scale(6);
}

.parallax__layer--deep4 {
  z-index: 1;
  transform: translateZ(-7px)scale(8);
}

.parallax__group {
  height: 100vh;
  transform-style: preserve-3d;
  position: relative;
}

.parallax-svg {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes pulse {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, 10px);
  }

  100% {
    transform: translate(0);
  }
}

/*# sourceMappingURL=src_d1e37bdb._.css.map*/