html,
body {
  margin: 0;
  padding: 0;

  background: #050505;
  color: #e5e5e5;

  font-family: "program", sans-serif;
  font-style: italic;

  text-transform: uppercase;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

body {
  padding: 20px;
}

.terminal {
  width: 100%;
}

/* =========================
   PARTY SECTION
========================= */

.party-section {
  margin-bottom: 56px;
}

/* =========================
   PARTY HEADER
========================= */

.party-header {

  position: sticky;
  top: 0;

  z-index: 20;

  background: #050505;

  padding-top: 18px;
  padding-bottom: 18px;

  margin-bottom: 18px;

  border-top: 1px solid #333;
  border-bottom: 1px solid #333;

  font-size: 2.5rem;

  font-weight: 700;

  letter-spacing: -0.04em;

  line-height: 0.95;

  text-shadow: 0 0 12px rgba(255,255,255,0.08);
}

/* =========================
   HEADER ROW
========================= */

.header-row {

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 2fr)
    minmax(80px, 1fr);

  gap: 24px;

  padding-bottom: 12px;

  border-bottom: 1px solid #333;

  opacity: 0.45;

  font-size: 1.25rem;

  letter-spacing: 0.04em;
}

/* =========================
   SET ROWS
========================= */

.set {

  padding-top: 18px;
  padding-bottom: 18px;

  border-bottom: 1px solid #222;
}

/* =========================
   GRID
========================= */

.line {

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 2fr)
    minmax(80px, 1fr);

  gap: 24px;

  align-items: start;

  width: 100%;
}

/* =========================
   TYPE
========================= */

.time,
.artist,
.room {

  font-size: 1.25rem;

  line-height: 1.1;

  overflow-wrap: anywhere;

  word-break: break-word;
}

.time {
  opacity: 0.85;
}

.artist {

  font-weight: 600;

  letter-spacing: -0.02em;
}

.room {
  opacity: 0.75;
}

/* =========================
   STATUS
========================= */

.set.live .artist,
.set.done .artist {
  text-decoration: line-through;
}

.set.done {
  opacity: 0.35;
}

.set.live {
  opacity: 1;
}

.set.upcoming {
  opacity: 0.85;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  body {
    padding: 14px;
  }

  /* PARTY HEADERS */

  .party-header {

    font-size: 1.75rem;

    padding-top: 14px;
    padding-bottom: 14px;

    margin-bottom: 14px;
  }

  /* GRID */

  .header-row,
  .line {

    grid-template-columns:
      72px
      minmax(0, 2fr)
      minmax(70px, 1fr);

    gap: 12px;
  }

  /* TYPE */

  .header-row {
    font-size: 1rem;
  }

  .time,
  .artist,
  .room {

    font-size: 1rem;

    line-height: 1.15;
  }

  /* SPACING */

  .set {

    padding-top: 16px;
    padding-bottom: 16px;
  }

}
