* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: #0b0b0d;
  color: #f2f2f2;
  font-family: 'Circular', BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.branding {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 500;
    background-color: #fd2c7a;
    background-image: url('../images/yk-records--logo--white--transparent.png');
    background-repeat: no-repeat;
    background-size: 60% 60%;
    background-position: 30% 50%;
}
.ykmark.vertical {
    height: 100%;
    width: auto;
    aspect-ratio: 2/13;
    background: url("../images/yk-ansi.svg") no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 500;
}
@media (max-width: 768px) {
    .branding {
        width: 60px;
        height: 60px;
    }
}
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#player-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #000;
}

#player {
  width: 100%;
  height: 100%;
}

#click-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  cursor: pointer;
}

#unmute-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
}

#unmute-overlay:hover {
  background: rgba(0, 0, 0, 0.9);
}

.unmute-label-mobile {
  display: none;
}

#unmute-overlay.hidden {
  display: none;
}

#info-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: #16161a;
  border-top: 1px solid #262630;
}

#info-thumb-link {
  display: block;
  width: 96px;
  height: 54px;
  border-radius: 4px;
  overflow: hidden;
  background: #262630;
  flex-shrink: 0;
}

#info-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#info-text {
  flex: 1;
  min-width: 0;
  line-height: 1;
}

.info-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#info-title {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

#info-title:hover {
  text-decoration: underline;
}

#info-artist {
  font-size: 14px;
  color: #b8b8c0;
  text-decoration: none;
}

#info-artist:hover {
  text-decoration: underline;
}

#info-album {
  font-size: 12px;
  color: #7a7a85;
  text-decoration: none;
}

#info-album:hover {
  text-decoration: underline;
}

#controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #262630;
  color: #f2f2f2;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 16px;
  cursor: pointer;
}

#controls button:hover {
  background: #fd2c7a;
}


#controls button svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  #app {
    height: 100dvh;
  }

  #info-bar {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  #controls button#fullscreen-btn {
    display: none;
  }

  #controls {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    flex-basis: 100%;
  }

  #controls button {
    width: 100%;
  }

  .unmute-label-desktop {
    display: none;
  }

  .unmute-label-mobile {
    display: inline;
  }
}
