[id] {
  scroll-margin-top: 6rem;
}

:root {
  --screen: #145BA3;
  --text: #fff;
  --lyricStroke: #145BA3;
}

#karaoke {
  position: relative;
  background: #000;
}
#karaoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(193, 113, 202);
  background-image: url(/assets/pisonet.jpg);
  background-size: cover;
  background-blend-mode: hue;
  filter: blur(2px) hue-rotate(var(--hue, 0deg));
  transition: filter 0.3s ease;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
#karaoke > *:not(#settings-modal) {
  position: relative;
  z-index: 1;
}

.artists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 2.5rem 0;
  max-width: 900px;
  margin: 0 auto;
}
.artists a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.5rem;
  padding: 0.4rem 0.5rem;
  background: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 130%;
}
.artists a:hover {
  background: yellow;
  color: #000;
}
@media (max-width: 768px) {
  .artists {
    grid-template-columns: repeat(2, 1fr);
  }
}

h1 {
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1#top {
  font-size: 2.2rem;
  margin: 1.5rem 0 1.5rem;
  letter-spacing: 0;
}

h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  letter-spacing: 0.5px;
}

p {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 150%;
  margin-bottom: 1.2rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}
p[size=l] {
  line-height: 140%;
  font-size: 1.3rem;
  font-family: "VCR";
}

hr {
  border: none;
  display: block;
  height: 32px;
}

p a, small a, .col a {
  background: #fff;
  color: #000;
  padding: 0 3px;
}
p a:hover, small a:hover, .col a:hover {
  background: yellow;
  color: #000;
}

#content {
  padding-bottom: 300px;
}
#content .wrapper {
  padding: 3rem 3.5rem;
}

.event {
  color: #fff;
  line-height: 155%;
}
.event .title {
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, sans-serif;
}
.event .date {
  font-size: 0.85rem;
  font-family: system-ui, -apple-system, sans-serif;
  opacity: 0.5;
  margin-top: 2px;
}

a:has(.event) {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  color: #fff;
}
a:has(.event):hover {
  background: yellow;
  color: #000;
}
a:has(.event):hover .event, a:has(.event):hover .event .title, a:has(.event):hover .event .date {
  color: #000;
  opacity: 1;
}

#section-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  padding: 0 1rem;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#section-nav::-webkit-scrollbar {
  display: none;
}
#section-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  background: none;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
#section-nav a:last-child {
  border-right: none;
}
#section-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
#section-nav a[aria-current] {
  color: #ffff26;
  background: rgba(255, 255, 38, 0.06);
}
#section-nav a[aria-current] .nav-ch {
  opacity: 1;
}
#section-nav .nav-ch {
  font-size: 0.85rem;
  opacity: 0.4;
  width: 2.5ch;
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #section-nav a {
    padding: 0.5rem 0.7rem;
    font-size: 0.7rem;
  }
  #section-nav .nav-ch {
    display: none;
  }
}

.presskit-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1.5rem auto;
  max-width: 900px;
}
.presskit-previews img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.presskit-previews img:hover {
  opacity: 1;
}
@media (max-width: 600px) {
  .presskit-previews {
    grid-template-columns: repeat(2, 1fr);
  }
  .presskit-previews img {
    height: 100px;
  }
}

/*# sourceMappingURL=info.css.map */
