
body {
  background: radial-gradient(circle at top, #1e1e2f, #0d0d12);
  color: #f1f1f1;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://picsum.photos/1920/1080?blur=3') center/cover no-repeat;
  padding: 2rem;
  animation: fadeIn 2s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s;
}
.glass-card:hover {
  transform: translateY(-5px);
}
.event-img {
  border-radius: 0.75rem;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.badge-featured {
  background: linear-gradient(45deg, #ff6a00, #ee0979);
}
footer {
  padding: 2rem 0;
  text-align: center;
  background: rgba(255,255,255,0.05);
  margin-top: 3rem;
}