:root {
  --primary-gradient: linear-gradient(45deg, #6c63ff, #23a6d5);
  --neon-blue: #00f3ff;
}

@font-face {
  font-family: "Cubic_11";
  src: url("../fonts/Cubic_11.woff2") format("woff2"), url("../fonts/Cubic_11.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Cubic_11", normal;
  background: #0a0a0a;
  color: #fff;
}

#app {
  height: 100vh;
}

nav .nav-link {
  color: #fff !important;
  position: relative;
  transition: 0.3s;
}
nav .nav-link:hover {
  color: var(--neon-blue) !important;
}
nav.scrolled {
  background: #111;
}

.hz-section {
  padding: 180px 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-section {
  transform: translateY(-35%);
}
.features-section .feature-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.3s;
  opacity: 0.8;
}
.features-section .feature-card:hover {
  transform: translateY(-10px);
  opacity: 1;
  background: #1a1a1a;
}

.function-section .feature-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.3s;
  color: #999;
  opacity: 0.5;
}
.function-section .feature-card.more {
  border: none;
  background: transparent;
}
.function-section .feature-card:hover {
  opacity: 1;
  color: #fff;
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.25);
}

.function-section > div .col {
  padding-bottom: 100px;
}
.function-section > div .col .card {
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(90deg, #bdc3c7, #f39c12, #e74c3c, #3498db);
  background-size: 300% 300%;
  animation: gradient-animation 8s ease infinite;
  height: 600px;
  overflow: hidden;
  border: 0;
}
.function-section > div .col .card video, .function-section > div .col .card img {
  display: flex;
  width: 80%;
  border-radius: 15px;
  transform: translateY(50px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 0.3s;
}
.function-section > div .col .card video:hover, .function-section > div .col .card img:hover {
  transform: translateY(30px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cta-button {
  background: var(--primary-gradient);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  letter-spacing: 2px;
}
.cta-button:hover {
  background: linear-gradient(45deg, #6c63ff, #23a6d5);
  background-size: 200% 200%;
  animation: gradient-animation 4s ease infinite;
}

.features-section .feature-card {
  min-height: 205px;
}
.features-section .feature-card .features-icon {
  font-size: 2rem;
}

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px rgba(108, 99, 255, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.8));
  }
}
@media (max-width: 991.98px) {
  nav {
    background-color: #111;
  }
  .hz-section {
    padding: 50px 0 10px 0;
  }
  .features-section {
    transform: translateY(0);
  }
  .function-section > div .col .card {
    height: unset;
    aspect-ratio: 2/1;
  }
  .function-section > div .col .card video {
    width: 100%;
    transform: translateY(0px);
  }
}/*# sourceMappingURL=style.css.map */