:root {
  --bg: #100718;
  --fg: #fff8ff;
  --muted: #c6aecb;
  --line: #ffdcfa24;
  --pink: #ff7fc8;
  --purple: #a96cff;
  --acid: #ffb2df;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
.top {
  height: 72px;
  max-width: 1140px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top > span {
  font-size: 0.72rem;
  color: #bbb5c7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logo {
  text-decoration: none;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 1.35rem;
  letter-spacing: -0.08em;
}
.logo b {
  font-size: 1rem;
  letter-spacing: 0;
}
.logo span {
  color: var(--pink);
  font-weight: 900;
}
.logo strong {
  color: var(--purple);
}
.logo i {
  color: #ffd0ed;
  font-family: Georgia, serif;
}
.hero {
  min-height: 570px;
  max-width: 1140px;
  margin: auto;
  padding: 92px 24px 105px;
  position: relative;
  overflow: hidden;
}
.eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: #c7c1d5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.eyebrow em {
  color: var(--acid);
  margin: 0 8px;
}
.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 800px;
  font-size: clamp(4rem, 10vw, 8.2rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
}
.hero h1 i {
  display: inline-block;
  font-size: 0.78em;
  line-height: 1.04;
  margin-left: -0.05em;
  padding: 0 0.1em 0.13em 0.05em;
  background: linear-gradient(90deg, #be79ff, #ff77c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, serif;
  font-weight: 400;
}
.lede {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 38px 0 0 4px;
  color: #b7b1c6;
  font-size: 1.05rem;
  line-height: 1.75;
  white-space: nowrap;
}
.hero-photo {
  position: absolute;
  z-index: 1;
  right: 28px;
  top: 15px;
  width: min(36vw, 390px);
  height: 510px;
  margin: 0;
  padding: 7px;
  border-radius: 190px 190px 30px 30px;
  background: linear-gradient(150deg, #f3b3ff, #ff7fc8 45%, #6d2fa5);
  box-shadow: 0 35px 100px #c13d9845;
  transform: rotate(2deg);
  overflow: hidden;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px #ffffff45;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: inherit;
  filter: contrast(1.03);
}
.hero-photo span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  padding: 8px 12px;
  border: 1px solid #ffffff45;
  border-radius: 999px;
  background: #1c0927d9;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.filters {
  position: sticky;
  top: 14px;
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 0 auto 70px;
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #181624de;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 45px #0008;
}
.filters button {
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: #aaa5b8;
  cursor: pointer;
}
.filters button.active {
  background: linear-gradient(90deg, #b66eff, #ff82c8);
  color: #18091f;
  font-weight: 900;
}
.schedule {
  max-width: 980px;
  min-height: 500px;
  margin: auto;
  padding: 0 24px 100px;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.heading b {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.84rem;
}
.heading b::first-letter {
  color: var(--pink);
}
.heading span {
  color: #8d879c;
  font-size: 0.8rem;
}
.month {
  margin-bottom: 60px;
}
.month > h2 {
  font:
    italic 400 1.15rem Georgia,
    serif;
  color: #cbc5d7;
}
.event {
  position: relative;
  display: grid;
  grid-template-columns: 70px 58px 1fr;
  gap: 20px;
  align-items: center;
  margin: 12px 0;
  padding: 18px 20px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(110deg, #ffffff13, #ffffff09);
  overflow: hidden;
}
.event::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--pink);
}
.event.jing::before {
  background: var(--purple);
}
.event.joint::before {
  background: linear-gradient(var(--pink), var(--purple));
}
.date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 15px;
}
.date b {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.date span {
  display: block;
  margin-top: 7px;
  color: #8d879c;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.avatar,
.poster {
  width: 58px;
  height: 70px;
  border-radius: 15px;
  object-fit: cover;
}
.avatar {
  display: grid;
  place-items: center;
  background: #4d193d;
  color: var(--pink);
  font-weight: 900;
}
.jing .avatar {
  background: #35204e;
  color: #d7a7ff;
}
.info {
  min-width: 0;
}
.meta {
  display: flex;
  gap: 7px;
  margin-bottom: 7px;
  color: #b9b3c5;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.meta span + span::before {
  content: "·";
  padding-right: 7px;
}
.info h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.info p {
  margin: 0;
  color: #9d97aa;
  font-size: 0.84rem;
  line-height: 1.55;
}
.info .note {
  margin-top: 5px;
  color: #e9aad3;
  font-size: 0.76rem;
}
.status {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 7px;
  background: #4a3023;
  color: #ffd198;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
}
.status.cancelled {
  background: #4b232e;
  color: #ffb3c2;
}
.empty {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed #ffffff2b;
  border-radius: 26px;
  background: #ffffff06;
}
.calendar {
  color: var(--pink);
  font-size: 2rem;
}
.empty h2 {
  font-size: 1.2rem;
}
.empty p {
  color: #918b9e;
}
details {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: #c8c2d3;
}
#past p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid #ffffff0f;
}
#past span {
  color: #898392;
  font-size: 0.82rem;
}
footer {
  max-width: 1140px;
  margin: auto;
  padding: 32px 24px 45px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #716b7c;
  font-size: 0.75rem;
}
footer p {
  max-width: 620px;
  line-height: 1.6;
}
.footer-note > b {
  display: block;
  margin-bottom: 10px;
  color: #dbc0e8;
  font-size: 0.9rem;
}
.footer-note p {
  margin: 0;
}
.footer-note .creator {
  margin-top: 10px;
  color: #bda7c5;
}
.creator a {
  margin-left: 4px;
  color: #f2acd9;
  font-weight: 800;
  text-decoration: none;
}
.creator a:hover {
  color: #c98cff;
  text-decoration: underline;
}
.credits {
  display: grid;
  gap: 12px;
  text-align: right;
}
.credits p {
  margin: 0;
}
.credits span {
  display: block;
  margin-bottom: 3px;
  color: #a48bac;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.credits a {
  margin-left: 10px;
  color: #efb8df;
  text-decoration: none;
}
.credits a:hover {
  color: #c98cff;
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .top {
    height: 62px;
  }
  .top > span {
    font-size: 0.58rem;
  }
  .hero {
    min-height: 650px;
    padding-top: 54px;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }
  .lede {
    max-width: 300px;
    font-size: 0.94rem;
    white-space: normal;
  }
  .hero-photo {
    top: 340px;
    right: 18px;
    width: 205px;
    height: 290px;
    border-radius: 100px 100px 22px 22px;
    transform: rotate(2deg);
  }
  .hero-photo span {
    right: 9px;
    bottom: 9px;
    padding: 5px 8px;
    font-size: 0.7rem;
  }
  .filters {
    margin-bottom: 55px;
  }
  .filters button {
    padding: 10px 13px;
    font-size: 0.78rem;
  }
  .heading span {
    display: none;
  }
  .event {
    grid-template-columns: 54px 1fr;
    gap: 13px;
    padding: 16px 14px 16px 12px;
  }
  .date {
    padding-right: 11px;
  }
  .date b {
    font-size: 1.65rem;
  }
  .avatar,
  .poster {
    display: none;
  }
  .info h3 {
    font-size: 1rem;
  }
  .info p {
    font-size: 0.78rem;
  }
  #past p {
    flex-direction: column;
    gap: 5px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
  }
  .credits {
    text-align: left;
  }
  .credits a {
    display: inline-block;
    margin: 2px 10px 0 0;
  }
}
