/* =========================================================
   TICKETS — FULL EVENT LIST (PREMIUM / APP STYLE)
========================================================= */

body.tickets-venue{
  background:
    radial-gradient(1000px 700px at 15% 20%, rgba(88,120,255,.12), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(210,178,107,.18), transparent 62%),
    linear-gradient(180deg, #f4f0e8, #efe9df 70%);
  color: #0c0f16;
}

/* wrapper */
.twrap-full{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 20px 90px;
}

/* header */
.venueType{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
}

.venueTitle{
  margin: 10px 0 14px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .95;
  font-weight: 1000;
  letter-spacing: -.04em;
}

/* tabs */
.tabs{
  display:flex;
  gap: 22px;
  margin: 14px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.tab{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.40);
  position: relative;
}

.tab:hover{ color: rgba(0,0,0,.70); }

.tab.is-active{
  color: rgba(0,0,0,.95);
}

.tab.is-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-13px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5a78ff, #00d7ff);
  box-shadow: 0 10px 26px rgba(90,120,255,.22);
}

/* section title */
.secTitle{
  margin: 6px 0 18px;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -.02em;
}

/* =========================
   EVENT LIST
========================= */
.elist{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* single event row */
.eitem{
  display:grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  align-items:center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 38px rgba(10,14,25,.10);
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease;
}

.eitem:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(10,14,25,.16);
  background: rgba(255,255,255,.75);
}

/* cover */
.ecover{
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background:
    radial-gradient(140px 120px at 20% 30%, rgba(90,120,255,.45), transparent 60%),
    radial-gradient(120px 120px at 80% 85%, rgba(0,229,255,.25), transparent 62%),
    rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

/* main */
.eMain{
  min-width: 0;
}

.edate{
  font-size: 13px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
}

.etitle{
  margin-top: 6px;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: rgba(0,0,0,.95);
  display:inline-block;
}

.etitle:hover{
  text-decoration: underline;
}

.eartists{
  margin-top: 6px;
  font-size: 14px;
  color: rgba(0,0,0,.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* right actions */
.eActions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.etags{
  display:flex;
  gap: 8px;
}

.etag{
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(0,0,0,.70);
}

/* CTA */
.buyBtn{
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(90,120,255,.95), rgba(0,215,255,.75));
  color: #07101a;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(90,120,255,.20);
}

.buyBtn:hover{
  filter: brightness(1.04);
}

/* mobile */
@media (max-width: 720px){
  .eitem{
    grid-template-columns: 72px 1fr;
    row-gap: 12px;
  }

  .eActions{
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

.eitem-link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.eitem-link .etitle{
  text-decoration: none !important;
}
.eitem-link:active{
  transform: translateY(0px) scale(.995);
}