html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: "Roboto", sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #a43bef;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: rgb(140.9764150943, 18.641509434, 228.358490566);
}

.menu {
  margin-top: 25px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.menu a {
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}
.menu a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(164, 59, 239, 0.3);
}

.project-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.project-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(164, 59, 239, 0.25);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at top, rgba(164, 59, 239, 0.12), transparent 60%);
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}
.project-card:hover::before {
  opacity: 1;
}
.project-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  opacity: 0.95;
}
.project-card h3 {
  margin: 10px 0 5px;
  color: #fff;
}
.project-card p {
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.4;
}

.project-card img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

#hub {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hub-card {
  text-align: center;
  padding: 45px 55px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: appear 0.8s ease forwards;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.projects-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1100px;
}

@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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