/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__hero {
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 10%;
  display: flex;
  position: relative;
}

.page-module___8aEwW__canvasBg {
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, #1a1a2e 0%, #050510 100%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.page-module___8aEwW__heroOverlay {
  display: none;
}

.page-module___8aEwW__heroContent {
  z-index: 2;
  max-width: 600px;
  position: relative;
}

.page-module___8aEwW__heroSubtitle {
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.page-module___8aEwW__heroTitle {
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
  color: #0000;
  filter: drop-shadow(0 0 20px #9d4edd4d);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.page-module___8aEwW__heroDesc {
  color: var(--text-muted);
  border-left: 2px solid var(--primary);
  margin-bottom: 40px;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-module___8aEwW__heroStats {
  gap: 40px;
  margin-top: 40px;
  display: flex;
}

.page-module___8aEwW__heroStatItem {
  flex-direction: column;
  display: flex;
}

.page-module___8aEwW__statValue {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.page-module___8aEwW__statLabel {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
}

.page-module___8aEwW__section {
  z-index: 2;
  background: none;
  padding: 100px 10%;
  position: relative;
}

.page-module___8aEwW__sectionTitle {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  font-size: 3rem;
}

.page-module___8aEwW__sectionTitle span {
  color: var(--primary);
}

.page-module___8aEwW__cardsGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  display: grid;
}

.page-module___8aEwW__card {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #ffffff08;
  border: 1px solid #ffffff0d;
  padding: 40px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.page-module___8aEwW__card:hover {
  border-color: var(--primary);
  background: #ffffff14;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #00000080;
}

.page-module___8aEwW__navbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #030305cc;
  border-bottom: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.page-module___8aEwW__logo {
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, var(--secondary));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
}

.page-module___8aEwW__navLinks {
  gap: 30px;
  display: flex;
}

.page-module___8aEwW__navLink {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  font-weight: 500;
  transition: all .3s;
}

.page-module___8aEwW__navLink:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.page-module___8aEwW__playButton {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
  border: 1px solid #ffffff1a;
  padding: 10px 30px;
  font-weight: 700;
  transition: all .3s;
}

.page-module___8aEwW__playButton:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00f2ea66;
}

.page-module___8aEwW__card:before {
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform-origin: 0;
  width: 100%;
  height: 2px;
  transition: transform .4s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
}

.page-module___8aEwW__card:hover:before {
  transform: scaleX(1);
}

.page-module___8aEwW__cardIcon {
  color: var(--secondary);
  align-items: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  display: flex;
}

.page-module___8aEwW__cardIcon svg {
  fill: currentColor;
  width: 48px;
  height: 48px;
}

.page-module___8aEwW__cardTitle {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.page-module___8aEwW__cardText {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-module___8aEwW__footer {
  color: var(--text-muted);
  z-index: 2;
  background: #000c;
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  font-size: .9rem;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .page-module___8aEwW__heroTitle {
    font-size: 3rem;
  }

  .page-module___8aEwW__navbar {
    padding: 20px;
  }

  .page-module___8aEwW__navLinks {
    display: none;
  }
}

/*# sourceMappingURL=src_app_page_module_2aa510fc.css.map*/