/* GOING COUNT */

.going-count {
  margin-top: 14px;
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 0, .08);
  border: 1px solid rgba(255, 0, 0, .28);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
}

/* LIVE ACTIVITIES HEADER */

.live-site-header{
  position:sticky;
  top:0;
  z-index:9998;
  padding:14px 18px;
  background:rgba(5,5,5,.9);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 34px rgba(0,0,0,.42);
}

.live-site-header-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.live-brand-lockup{
  display:flex;
  align-items:center;
  gap:12px;
  color:white;
  text-decoration:none;
}

.live-brand-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  overflow:hidden;
  background:#050505;
  border:1px solid rgba(255,0,0,.28);
  box-shadow:0 0 24px rgba(255,0,0,.14);
}

.live-brand-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.live-brand-title{
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.live-brand-sub{
  color:#999;
  font-size:12px;
  margin-top:2px;
}

.live-header-menu{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.live-header-link,
.live-header-rose-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:white;
  text-decoration:none;
  font-weight:800;
}

.live-header-link:hover,
.live-header-rose-btn:hover{
  border-color:rgba(255,0,0,.45);
  box-shadow:0 0 22px rgba(255,0,0,.18);
}

.live-header-rose-btn{
  width:46px;
  padding:0;
  overflow:hidden;
}

.live-header-rose-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 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;
  }
}
