/* FOOTER TABS */

.live-tab-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff2b2b;
  box-shadow:0 0 10px #ff2b2b;
  animation:livePulse 1.2s infinite;
  flex-shrink:0;
}

@keyframes livePulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.5);
    opacity:.45;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* ORIGINAL CSS */

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 255, 140, 0.12), transparent 35%),
    #030303;
  color: #f5f5f5;
  font-family: Arial, sans-serif;
}

.happening-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.happening-hero {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 32px;
  background: rgba(0,0,0,.72);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.happening-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin: 20px 0 12px;
  letter-spacing: -0.05em;
}

.happening-hero p {
  max-width: 720px;
  color: #aaa;
  line-height: 1.6;
}

.status-box {
  margin: 24px 0;
  color: #aaffd0;
  font-size: 14px;
}

.happening-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.happening-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(0,0,0,.75);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.happening-card h2 {
  margin: 18px 0 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.location-name {
  color: #fff;
  margin: 0;
}

.location-area {
  color: #999;
  margin: 4px 0 18px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,255,140,.35);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b7ffd8;
  background: rgba(0,255,140,.08);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00ff88;
  box-shadow: 0 0 16px #00ff88;
  animation: livePulse 1.2s infinite;
}

.live-pill.upcomingSoon,
.live-pill.startingLater {
  color: #ffd98a;
  border-color: rgba(255,210,80,.35);
  background: rgba(255,210,80,.08);
}

.live-pill.endingSoon,
.live-pill.recentlyEnded {
  color: #ff8a8a;
  border-color: rgba(255,80,80,.35);
  background: rgba(255,80,80,.08);
}

.time-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
  margin-top: 12px;
  font-size: 13px;
}

.time-row span {
  color: #888;
}

.time-row strong {
  color: #eee;
  text-align: right;
}

.activity-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.activity-meta span {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 6px 10px;
  color: #aaa;
  font-size: 12px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 28px;
  background: rgba(0,0,0,.6);
}

.empty-state p {
  color: #aaa;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: .45;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
