.tour-hero {
  padding: 200px 5% 140px;
  text-align: center;
  background: linear-gradient(135deg, #0b0014 0%, #1f0040 100%);
  position: relative;
  overflow: hidden;
}

.tour-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(180,0,255,0.2) 0%, transparent 70%);
  animation: pulse-bg 8s infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.glow-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  background: linear-gradient(90deg, #b400ff, #ff0090, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 100px rgba(180,0,255,0.8);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  color: #ff0090;
  margin: 1.5rem 0 3rem;
  letter-spacing: 4px;
}

.tour-dates {
  padding: 100px 5% 140px;
  max-width: 1400px;
  margin: 0 auto;
}

.tour-dates h2 {
  text-align: center;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 4rem;
  background: linear-gradient(90deg, #b400ff, #ff0090);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.date-card {
  background: rgba(30,0,60,0.4);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180,0,255,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2rem;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

.date-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.date-card:hover {
  transform: translateY(-10px);
  border-color: #b400ff;
  box-shadow: 0 20px 60px rgba(180,0,255,0.4);
  background: rgba(180,0,255,0.1);
}

.date-info .date {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff0090;
}

.date-info .city {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.date-info .venue {
  font-size: 1rem;
  opacity: 0.8;
}

.ticket-btn {
  background: linear-gradient(45deg, #b400ff, #ff0090);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s;
  white-space: nowrap;
}

.ticket-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(180,0,255,0.8);
}

.ticket-btn.sold {
  background: #333;
  cursor: not-allowed;
  opacity: 0.7;
}

.on-sale {
  animation: pulse 2s infinite;
}

.sold-out::after {
  content: "SOLD OUT";
  position: absolute;
  top: 15px; right: -40px;
  background: #ff0090;
  color: white;
  padding: 8px 50px;
  font-size: 0.9rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.date-card.sold-out {
  position: relative;
  opacity: 0.8;
}

.more-dates {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.4rem;
  color: #b400ff;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(180,0,255,0.8); }
  70% { box-shadow: 0 0 0 20px rgba(180,0,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,0,255,0); }
}

@media (max-width: 768px) {
  .date-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .ticket-btn { width: 100%; max-width: 280px; }
}

