.event {
  background: linear-gradient(135deg, #111, #000);
  text-align: center;
}

.event-card {
  max-width: 500px;
  margin: auto;
  background: #111;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3A66A3;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.event-card h3 {
  margin-top: 20px;
  font-size: 28px;
}

.event-date {
  margin: 15px 0;
  font-size: 18px;
  color: #3A66A3;
}

.event-desc {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
}