*{
    font-family: lato, sans-serif;
}

:root{
  --bg: #1a1a1a;
  --panel: #2a2a2a;
  --panel-2: #303030;
  --text: #eaeaea;
  --muted: rgba(255,255,255,.55);
  --muted-2: rgba(255,255,255,.38);

  --accent: #8139df;      /* active page pink */
  --btnBlue: #173a73;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.55);

  --radius: 6px;
}

.page{
  min-height: 100%;
  background: var(--bg);
}

.wrap{
  max-width: 850px;
  margin: 0 auto;
  padding: 24px 18px 44px;
}

.spacer{
  margin-top: 30px; /* mimics the empty area above the card in your screenshot */
}

/* -------- Title Header -------- */
.titlebar{
  text-align: center;
  padding: 14px 12px 6px;
}

.titlebar__title{
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .4px;
  color: rgba(255,255,255,.92);
}

.titlebar__subtitle{
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* -------- Event Card -------- */
.events{
  display: grid;
  gap: 26px;
}

.event{
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Image side */
.event__media{
  position: relative;
  min-height: 530px;
  background: #111;
}

.event__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

/* Price overlay */
.event__price{
  position: absolute;
  top: 34px;
  right: 34px;
  text-align: center;
  line-height: 1.05;
  letter-spacing: .5px;
  text-shadow: 0 10px 25px rgba(0,0,0,.5);
}

.event__price strong{
  display:block;
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
}

.event__price span{
  display:block;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);

}

/* Content side */
.event__content{
  padding: 32px 34px 30px;
  background: var(--panel);
}

.event__title{
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .2px;
  color: var(--white);
  font-family: 'Changa', sans-serif;

}

.event__meta{
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-family: 'Changa', sans-serif;
}

.event__desc{
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.50;
  max-width: 660px;
}

/* Buttons row */
.event__actions{
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn{
  border: 0;
  border-radius: 4px;
  padding: 14px 26px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease, background .12s ease, color .12s ease;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--btnBlue);
  color: var(--white);
}

.btn--ghost{
  background: #ffffff;
  color: var(--accent);
}

.btn:hover{
  filter: brightness(1.06);
}

/* -------- Pagination -------- */
.pager{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.pg-btn{
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: 0;
  background: var(--panel-2);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-weight: 800;
  transition: filter .12s ease, transform .12s ease, background .12s ease;
}

.pg-btn:hover{ filter: brightness(1.08); }
.pg-btn:active{ transform: translateY(1px); }

.pg-pages{
  display: flex;
  gap: 10px;
}

.pg-btn--page{
  font-size: 13px;
}

.pg-btn.is-active{
  background: var(--accent);
  color: #fff;
}

.pg-btn:disabled{
  opacity: .35;
  cursor: not-allowed;
}

.header_all{
  background: var(--panel);
  padding: 145px 18px 40px;
  text-align: center;
}

.section_header{
  margin-bottom: 10px;
}

.section_subheader{
  color: var(--muted-2);
  /* color: var(--accent); */
}

/* -------- Responsive -------- */
@media (max-width: 980px){
  .event{
    grid-template-columns: 1fr;
  }
  .event__media{
    min-height: 340px;
  }
  .event__price{
    top: 22px;
    right: 22px;
  }
}

@media (max-width: 520px){
  .event__content{
    padding: 24px 20px;
  }
  .event__price strong{
    font-size: 38px;
  }
}
