body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: none;
}

a {
    cursor: none;
}

.circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
}

#title1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: normal;
    color: white;
    font-size: 4vh;
}

#title2 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
    color: white;
    font-size: 4vh;
}

#title3 {
    font-family: 'Array-Regular', sans-serif;
    font-weight: normal;
    color: white;
    font-size: 4vh;
}

#title4 {
    font-family: 'Creato-Display', sans-serif;
    font-weight: light;
    color: white;
    margin-top: 5px;
    font-size: 1.5vh;
}

#channel75 {
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.content {
    height: 100%; 
    width: 48vw; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.item {
    color: white;
    font-family: 'Creato Display';
    font-weight: 100;
    font-size: 2vw;
    text-align: right;
    margin-right: 1.1vw;
    user-select: none;
}

.item.selected {
  background-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0);
  padding: 2px 6px;
  transition: background-color 0.2s ease;
}

.item:focus-visible {
  outline: none;
}

#list-left-wrapper {
    overflow: hidden;
}


.selected {
    color: rgba(0, 0, 0, 0);
    font-family: 'Creato Display';
    font-weight: 100;
    font-size: 2vw;
    text-align: right;
    margin-right: 1.1vw;
    user-select: none;
}

.list-left {
    margin-top: 50.7vh;
    transition: transform 0.1s ease;
}

#chosen-artist {
    color: black;
    position: absolute;
    top: 56.5vh;
    font-family: 'Array-Regular';
    font-size: 2.4vw;
    margin-left: 1.1vw;
}

#artist-info-wrapper {
    border-bottom: solid 1px gray;
}

.artist-list {
  height: 45%;
}

#fade-mask {
  position: relative;
  height: 100%;
  overflow: hidden;

  mask-image: linear-gradient(0deg,rgba(0, 0, 0, 0) 22%, rgba(255, 255, 255, 1) 49%, rgba(0, 0, 0, 0) 85%);
  -webkit-mask-image: linear-gradient(0deg,rgba(0, 0, 0, 0) 22%, rgba(255, 255, 255, 1) 49%, rgba(0, 0, 0, 0) 85%);
}

#artist-description {
    font-family: 'Creato Display';
    font-weight: 400;
    font-size: 2.5vh;
}

#release-wrapper {
    height: 70%;
    width: 80%;
}

#release-cover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.267);
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#release-link {
    text-decoration: underline;
    color: black;
    font-family: 'Creato Display';
    font-size: 2vh;
}

#release-name {
    font-family: 'Creato Display';
    font-size: 4.5vh;
    justify-self: center;
    word-break: break-all;
}

#release-format {
    font-family: 'Creato Display';
    font-size: 3.7vh;
    justify-self: center;
}

#release-stream, #release-watch {
    font-family: 'Creato Display';
    font-size: 3vh;
    font-weight: 200;
    text-decoration: none;
    color: black;
} 

.right-button:focus {
  background-color: rgba(0, 0, 0, 0.11);
  color: white;
  outline: none;
  padding: 2px 6px;
  border-radius: 4px;
}

.discography-wrapper {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  padding: 10px 0;
  scroll-behavior: smooth;
  max-height: 150px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
  height: 100%;
  padding-right: 20px;
  max-height: 120px;
}

.discography-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.release-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: fit-content;
  max-width: 90vw;
  padding-right: 1vw;
  min-width: 10vw;
  height: 68%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  font-family: 'Creato Display';
  font-size: 1vh;
  margin-left: 1vw;
  border: 1px solid gray;
  max-height: 120px;
}

.release-card img {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
}

.release-info {
  display: flex;
  flex-direction: column;
  margin-left: 0.5vw;
  height: 100%;
}

.release-info .title {
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}

.release-meta {
  font-size: 15px;
  color: #666;
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

