body {
  font-family: 'Inter', sans-serif;
  background-color: #09071b;
  color: white;
  scroll-behavior: smooth;
}
.gradient-bg {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}
.content-card {
  background: rgba(15, 12, 41, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(157, 78, 221, 0.3);
}
.membership-card {
  background: linear-gradient(145deg, rgba(15,12,41,0.8) 0%, rgba(47,43,99,0.8) 100%);
  border: 1px solid rgba(157, 78, 221, 0.3);
}
.membership-card.popular {
  border: 1px solid #ff4d6d;
  box-shadow: 0 0 30px rgba(255, 77, 109, 0.2);
}
.nav-link {
  position: relative;
}
.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ff4d6d;
  transition: width 0.3s ease;
}
.nav-link:hover:after {
  width: 100%;
}