body {
  margin: 0;
  font-family: system-ui;
  background: #0b0b10;
  color: white;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/img/background.jpg') center/cover;
  opacity: 0.12;
  z-index: -1;
  transform: scale(1.1);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.3);
}

.navbar a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  padding: 120px 30px 60px;
  text-align: center;
}

.section {
  padding: 60px 30px;
}

.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139,92,246,0.2);
  box-shadow: 0 0 20px rgba(139,92,246,0.15);
  border-radius: 12px;
}

.card {
  padding: 15px;
  margin: 10px 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 0 15px rgba(139,92,246,0.4);
}
