#djnene-global-player {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2000 !important;
  background: #050505;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

#djnene-global-player,
#djnene-global-player * {
  box-sizing: border-box;
}

#djnene-global-player .djnene-player-main {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
}

#djnene-global-player .djnene-player-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

#djnene-global-player .djnene-player-now {
  min-width: 0;
}

#djnene-global-player .djnene-player-cover {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1c1c1c 0%, #101010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

#djnene-global-player .djnene-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#djnene-global-player .djnene-player-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#djnene-global-player .djnene-player-artist {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#djnene-global-player .djnene-player-center,
#djnene-global-player .djnene-player-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#djnene-global-player .djnene-player-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

#djnene-global-player .djnene-player-btn:hover {
  transform: translateY(-1px);
}

#djnene-global-player .djnene-player-btn--ghost {
  background: #121212;
  color: #ffffff;
}

#djnene-global-player .djnene-player-btn--primary {
  background: #ffffff;
  color: #000000;
  font-weight: 700;
}

#djnene-global-player .djnene-player-drawer {
  position: fixed !important;
  left: 0;
  bottom: 86px;
  width: min(460px, 100vw);
  max-height: 68vh;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 1999 !important;
}

#djnene-global-player .djnene-player-drawer[hidden] {
  display: none !important;
}

#djnene-global-player .djnene-player-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#djnene-global-player .djnene-player-drawer-title {
  font-size: 18px;
  font-weight: 700;
}

#djnene-global-player .djnene-player-tracklist {
  max-height: calc(68vh - 64px);
  overflow-y: auto;
}

#djnene-global-player .djnene-track-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: #ffffff;
  display: grid;
  grid-template-columns: 34px 52px 1fr;
  gap: 12px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  align-items: center;
}

#djnene-global-player .djnene-track-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

#djnene-global-player .djnene-track-row.is-active {
  background: rgba(255, 255, 255, 0.06);
}

#djnene-global-player .djnene-track-row__num {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-variant-numeric: tabular-nums;
}

#djnene-global-player .djnene-track-row__thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

#djnene-global-player .djnene-track-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#djnene-global-player .djnene-track-row__thumb--placeholder {
  font-size: 18px;
}

#djnene-global-player .djnene-track-row__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

#djnene-global-player .djnene-track-row__title {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#djnene-global-player .djnene-track-row__artist {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#djnene-global-player .djnene-player-empty {
  padding: 18px 16px;
  color: rgba(255, 255, 255, 0.72);
}

body {
  padding-bottom: 96px;
}

@media (max-width: 767px) {
  #djnene-global-player {
    z-index: 1500 !important;
  }

  #djnene-global-player .djnene-player-main {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  #djnene-global-player .djnene-player-center,
  #djnene-global-player .djnene-player-right {
    justify-content: flex-start;
  }

  #djnene-global-player .djnene-player-drawer {
    width: 100vw;
    bottom: 128px;
    z-index: 1499 !important;
  }

  body {
    padding-bottom: 140px;
  }
}