/* Force Muus panel background to purple */
#panels .panel:nth-of-type(5) {
  /* Use the same purple as GSN Games for parity */
  background: #9b59b6 !important;
}
/* muus-timeline.css: Timeline for Muus panel inspired by provided image */
body.muus-bg {
  background: #9b59b6 !important;
}
.muus-timeline-visual {
  position: relative;
  margin: 3rem auto 2rem auto;
  max-width: 900px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  background: linear-gradient(135deg, #4b2067 0%, #2e1a47 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(75,32,103,0.18);
}
.muus-timeline-bar {
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to bottom, #ff6ec4 0%, #ffb347 30%, #00eaff 65%, #a259ff 100%);
  border-radius: 4px;
  z-index: 0;
}
.muus-timeline-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.2rem;
  z-index: 1;
}
.muus-timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  left: 62px;
  top: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(162,89,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.35rem;
  color: #4b2067;
  background: conic-gradient(
    #a259ff 0deg 80deg,
    #ff6ec4 80deg 160deg,
    #ffb347 160deg 240deg,
    #00eaff 240deg 320deg,
    #fff 320deg 360deg
  );
  border: 0;
  outline: 4px solid #2e1a47;
}
.muus-timeline-dot::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #2e1a47;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 6px 2px rgba(0,0,0,0.10) inset;
}
.muus-timeline-dot span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
/* Remove per-dot color overrides, all dots use the SVG arc conic-gradient */
.muus-timeline-content {
  margin-left: 140px;
  background: rgba(0,234,255,0.07);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0,234,255,0.10);
  font-size: 1.18rem;
  color: #fff;
  min-width: 0;
  border-left: 6px solid #a259ff;
}
.muus-timeline-date {
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffb347;
  margin-bottom: 0.3rem;
}
.muus-timeline-content strong {
  color: #00eaff;
}
@media (max-width: 700px) {
  .muus-timeline-visual {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .muus-timeline-content {
    padding: 1rem 0.7rem;
    font-size: 1rem;
    margin-left: 72px;
  }
  .muus-timeline-bar {
    left: 36px;
    width: 6px;
  }
  .muus-timeline-dot {
    left: 0px;
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    outline-width: 2px;
  }
}
