/* ===== Grundfarben ===== */
:root {
  --bg: #050505;
  --bg-card: #151515;
  --accent: #ffcc00;
  --text: #ffffff;
  --text-muted: #b3b3b3;
  --radius: 14px;
}

/* ===== Hintergrund ===== */
.auth-bg {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--text);
}






/* ===== BACKGROUNDS ===== */

.bg-gold {
  background: radial-gradient(circle at top, #ffcc00 0%, #000 70%);
  background-attachment: fixed;
}

.bg-red {
  background: radial-gradient(circle at top, #cc0000 0%, #000 75%);
  background-attachment: fixed;
}

.bg-darkglass {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  background-attachment: fixed;
}

.bg-animated {
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #ffcc00 0%, #000 70%);
  transition: background-position 0.2s ease;
}






















/* ===== Container ===== */
.auth-container {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.auth-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.25);
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
}


/* ===== Box ===== */
.auth-box {
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: 0.25s ease;

    border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #cc0000;
}

.auth-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255, 204, 0, 0.15);
}


/* ===== Inputs ===== */
.auth-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-size: 15px;
  transition: 0.25s ease;
}

.auth-input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.35);
  outline: none;
}


/* ===== Buttons ===== */
.auth-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  color: #000;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.25);
  transition: 0.25s ease;

    border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #cc0000;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 204, 0, 0.45);
}


.auth-btn.small {
  padding: 10px;
  font-size: 14px;
  background: linear-gradient(135deg, #ffdd33, #e6b800);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.auth-btn.small:hover {
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.35);
  transform: translateY(-2px);
}

.auth-btn.danger {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.25);
}

.auth-btn.danger:hover {
  box-shadow: 0 0 35px rgba(255, 50, 50, 0.45);
  transform: translateY(-2px);
}


/* ===== Links ===== */
.auth-links a {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.auth-links a:hover {
  color: #ffe680;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}


/* ===== Account Labels ===== */
.section-label {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Status Text ===== */
.status-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}






/* ===== Premium-Look ===== */

.auth-bg {
  background: radial-gradient(circle at top, #ffcc00 0%, #000 60%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--text);
}




























/* ===== Album-cards ===== */

.album-card {
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 18px;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255,204,0,0.25);
}

.album-cover {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.album-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.album-artist {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Player-bar ===== */

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}


/* ===== PLayer-button ===== */

.play-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255,204,0,0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,204,0,0.55);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  fill: #000;
}




/* ===== Progress bar ===== */

.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ffcc00, #e6b800);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255,204,0,0.4);
}




/* ===== songlist ===== */

.track {
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(20,20,20,0.45);
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.track:hover {
  background: rgba(255,204,0,0.12);
  transform: translateX(4px);
}

.track.active {
  background: rgba(255,204,0,0.25);
  border-color: #ffcc00;
}

















/* ===========================
   PREMIUM TRACKLIST
   =========================== */

.track-item, .popup-track {
  background: rgba(20,20,20,0.85);
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-item:hover,
.popup-track:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,0,0.4);
  box-shadow: 0 0 18px rgba(255,204,0,0.25);
}

.track-number {
  color: var(--text-muted);
  font-size: 14px;
  width: 22px;
  text-align: right;
}

.track-name {
  flex: 1;
}

.track-playing {
  color: var(--accent);
  font-weight: bold;
}











.album-cover-large {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.album-cover-large:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255,204,0,0.25);
  border-color: rgba(255,204,0,0.4);
}



































/* ===== fullscreen player ===== */

.fullscreen-player {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #ffcc00 0%, #000 70%);
  backdrop-filter: blur(20px);
  padding: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
}

.fullscreen-cover {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255,204,0,0.35);
  margin-bottom: 25px;
}







































































.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  border-radius: 8px;
}

.site-title {
  font-size: 22px;
  font-weight: 800;
}

.site-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.main-nav a {
  margin-right: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}


.main-layout {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 20px;
  padding: 20px;
  padding-bottom: 90px;

  max-width: 1230px;   /* statt width */
  margin: 0 auto;      /* zentriert */
  justify-content: center;
  width: 100%;         /* wichtig für mobile */
  text-align: center;
}



.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.tracks-list {
  max-height: calc(100vh - 160px);
  width: 100%;
  padding: 10px;
  overflow-y: auto;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-cover {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.player-title {
  font-weight: 600;
}

.player-artist {
  font-size: 13px;
  color: var(--text-muted);
}

.player-center {
  flex: 1;
  max-width: 520px;
  margin: 0 20px;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.time-label {
  font-size: 12px;
  color: var(--text-muted);
}

.player-extra {
  display: flex;
  align-items: center;
  gap: 10px;
}

































.fav-btn {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.2s;
  display: none;
}

.fav-btn.active {
  opacity: 1;
  color: var(--accent);
}

.fav-btn:hover {
  opacity: 1;
}





















/* ===========================
   ALBUM POPUP – PREMIUM STYLE
   =========================== */

#albumPopup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 9999;
}


@media (min-width: 701px) {
  #albumPopup {
    display: none !important;
  }
}


.album-popup-content {
  background: rgba(20,20,20,0.85);
  border-radius: 20px;
  padding: 28px;
  width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  animation: popupFade 0.25s ease-out;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* HEADER */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

#closeAlbumPopup {
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  transition: 0.2s;
}

#closeAlbumPopup:hover {
  color: var(--accent);
}

/* COVER */
#popupCover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* TITLE + ARTIST */
#popupTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

#popupArtist {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* PLAY BUTTONS */
.popup-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.popup-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.popup-btn.play {
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  color: #000;
  box-shadow: 0 0 20px rgba(255,204,0,0.35);
}

.popup-btn.play:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,204,0,0.55);
}

.popup-btn.shuffle {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.popup-btn.shuffle:hover {
  background: rgba(255,255,255,0.15);
}

/* TRACKLIST */
#popupTracks {
  margin-top: 10px;
}

.popup-track {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.popup-track:hover {
  background: rgba(255,204,0,0.12);
  transform: translateX(4px);
}

.popup-track-icon {
  opacity: 0.6;
  transition: 0.2s;
}

.popup-track:hover .popup-track-icon {
  opacity: 1;
  color: var(--accent);
}

/* CURRENT TRACK MARKING */
.popup-track.current {
  background: rgba(255,204,0,0.25);
  border-color: var(--accent);
}

.popup-track.current .popup-track-icon {
  color: var(--accent);
  opacity: 1;
}









































/* ===========================
   FOOTER PLAYER – PREMIUM STYLE
   =========================== */

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  z-index: 999;
}

/* LEFT SIDE – COVER + TITLE */
.player-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.player-cover {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.player-title {
  font-size: 15px;
  font-weight: 600;
}

.player-artist {
  font-size: 13px;
  color: var(--text-muted);
}

/* CENTER – CONTROLS */
.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 420px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s ease;
}

.icon-btn:hover {
  color: var(--accent);
  transform: scale(1.15);
}

/* PLAY BUTTON */
.play-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 20px rgba(255,204,0,0.35);
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,204,0,0.55);
}

/* PROGRESS BAR */
.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.time-label {
  font-size: 12px;
  color: var(--text-muted);
}

.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 6px;
  transition: width 0.15s linear;
}

/* RIGHT SIDE – EXTRA BUTTONS */
.player-extra {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-extra .icon-btn {
  font-size: 20px;
}





































/* ===========================
   ALBUM GRID – PREMIUM STYLE
   =========================== */

.albums-section {
  padding: 10px 0;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 22px;
  padding: 10px 0;
}

/* ALBUM CARD */
.album-card {
  background: rgba(20,20,20,0.85);
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

.album-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,204,0,0.4);
  box-shadow: 0 0 25px rgba(255,204,0,0.25);
}

/* COVER */
.album-card img.album-cover {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
  transition: 0.25s ease;
}

.album-card:hover img.album-cover {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(255,204,0,0.35);
}

/* TITLE */
.album-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* ARTIST */
.album-artist {
  font-size: 13px;
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* SECTION TITLE */
.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
































/* ===========================
   PREMIUM HEADER – EELAMMUSIC
   =========================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 80px;
  padding: 0 28px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO AREA */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.site-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.site-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  margin-top: -2px;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

/* LOGOUT BUTTON */
.auth-btn.small.danger {
  background: rgba(255,50,50,0.15);
  border: 1px solid rgba(255,50,50,0.35);
  color: #ff4d4d;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.auth-btn.small.danger:hover {
  background: rgba(255,50,50,0.25);
  border-color: rgba(255,50,50,0.55);
  transform: scale(1.05);
}


















































/* ===========================
   PREMIUM SEARCHBAR – EELAMMUSIC
   =========================== */

#searchInput {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 rgba(255,204,0,0);
}

/* Hover */
#searchInput:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

/* Focus */
#searchInput:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(255,204,0,0.35);
  transform: scale(1.02);
}

/* Placeholder */
#searchInput::placeholder {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}




#search-results {
  display: block;
  margin-top: 20px;
}


/* ===========================
   PREMIUM SEARCH ITEM
   =========================== */

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(20,20,20,0.85);
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.25s ease;
  box-shadow: 0 0 14px rgba(0,0,0,0.4);
}

.search-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,204,0,0.4);
  box-shadow: 0 0 22px rgba(255,204,0,0.25);
}

.search-item img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.search-item strong {
  color: var(--text);
  font-size: 15px;
}

.search-item span {
  color: var(--text-muted);
  font-size: 13px;
}












.search-wrapper {
  position: relative;
  width: 100%;
}

#searchInput {
  width: 100%;
  padding-right: 40px; /* Platz für das X */
}

.clear-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  transition: 0.2s ease;
}

.clear-btn:hover {
  background: rgba(255,204,0,0.4);
  color: #000;
}























/* ===========================
   PREMIUM BODY BACKGROUND v4
   CARBON FIBER DARK EDITION
   =========================== */

body {
  background:
    /* Carbon texture */
    repeating-linear-gradient(
      45deg,
      #0a0a0a 0px,
      #0a0a0a 4px,
      #0c0c0c 4px,
      #0c0c0c 8px
    ),
    /* Subtle gold glow top-left */
    radial-gradient(
      circle at 18% 22%,
      rgba(255,204,0,0.08),
      transparent 45%
    ),
    /* Subtle gold glow bottom-right */
    radial-gradient(
      circle at 82% 78%,
      rgba(255,204,0,0.06),
      transparent 50%
    ),
    /* Base gradient */
    linear-gradient(180deg, #050505, #0a0a0a 40%, #0f0f0f);

  background-attachment: fixed;
  background-size: cover;
  color: var(--text);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}



















/* ===========================
   PREMIUM SCROLLBAR – EELAMMUSIC
   =========================== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.4);
  transition: 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffcc00, #e6b800);
  border-color: rgba(255,204,0,0.5);
  box-shadow: 0 0 12px rgba(255,204,0,0.4);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a rgba(255,255,255,0.03);
}










/* ===========================
   GLOBAL PREMIUM TRANSITIONS
   =========================== */

* {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Smooth hover for clickable elements */
button,
a,
.album-card,
.popup-track,
.icon-btn,
.play-btn,
.popup-btn {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Smooth popup fade */
#albumPopup,
#infoPopup {
  transition: opacity 0.25s ease;
}

/* Smooth progress bar */
.progress-bar {
  transition: width 0.15s linear;
}












/* ===========================
   PREMIUM SHADOW PACK
   =========================== */

/* GLOBAL SOFT SHADOW (für Karten, Cover, Buttons) */
.shadow-soft {
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

/* STRONG SHADOW (für große Elemente wie Popup, Player) */
.shadow-strong {
  box-shadow: 0 0 35px rgba(0,0,0,0.65);
}

/* GOLD GLOW SHADOW (für Hover-Effekte) */
.shadow-gold {
  box-shadow: 0 0 25px rgba(255,204,0,0.35);
}

/* GOLD GLOW STRONG (für aktive Elemente) */
.shadow-gold-strong {
  box-shadow: 0 0 40px rgba(255,204,0,0.55);
}

/* INNER SHADOW (für Inputs, Searchbar) */
.shadow-inner {
  box-shadow: inset 0 0 12px rgba(0,0,0,0.35);
}















/* ===========================
   PREMIUM LOADING ANIMATION
   GOLD PULSE – EELAMMUSIC
   =========================== */

#loader {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.4s ease;
}

.loader-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid rgba(255,204,0,0.25);
  border-top-color: #ffcc00;
  animation: spin 1s linear infinite, glowPulse 1.6s ease-in-out infinite;
}

/* Spin Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Gold Pulse Glow */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 10px rgba(255,204,0,0.25); }
  50%  { box-shadow: 0 0 25px rgba(255,204,0,0.55); }
  100% { box-shadow: 0 0 10px rgba(255,204,0,0.25); }
}

/* Hide animation */
#loader.hide {
  opacity: 0;
  pointer-events: none;
}






































/* ===========================
   RESPONSIVE ALBUM VIEW
   =========================== */

/* Standard (Desktop & Tablet) */
.album-cover-large {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 20px auto;
  display: block;
}

/* Tracklist Abstand */
#tracksList {
  padding-bottom: 20px;
  max-width: 100%;
}


/* Handy (max 480px) */
@media (max-width: 480px) {
  .album-cover-large {
    max-width: 180px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  #currentAlbumTitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 14px;
  }

  .track-item {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .track-number {
    font-size: 12px;
    width: 18px;
  }

  .track-name {
    font-size: 14px;
  }
}

/* Sehr kleine Geräte (max 360px) */
@media (max-width: 360px) {
  .album-cover-large {
    max-width: 150px;
  }

  .track-item {
    padding: 8px 10px;
  }

  .track-name {
    font-size: 13px;
  }
}










/* ===========================
   PREMIUM ALBUM VIEW
   =========================== */

.tracks-section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Großes Album Cover */
.album-cover-large {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.album-cover-large:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255,204,0,0.25);
  border-color: rgba(255,204,0,0.4);
}

/* Album Titel */
#currentAlbumTitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}

/* Tracklist */
.track-item {
  width: 100%;
  max-width: 420px;
  background: rgba(20,20,20,0.85);
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,0,0.4);
  box-shadow: 0 0 18px rgba(255,204,0,0.25);
}

.track-number {
  color: var(--text-muted);
  font-size: 14px;
  width: 22px;
  text-align: right;
}

.track-name {
  color: var(--text);
  font-size: 15px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 480px) {
  .album-cover-large {
    max-width: 180px;
  }

  #currentAlbumTitle {
    font-size: 20px;
  }

  .track-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .track-name {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .album-cover-large {
    max-width: 150px;
  }

  .track-item {
    padding: 8px 10px;
  }

  .track-name {
    font-size: 13px;
  }
}







/* Handy: Tracklist über Alben */
@media (max-width: 700px) {
  .main-layout {
    display: flex;
    flex-direction: column-reverse;
  }
}






/* Burger Button sichtbar machen */
.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 999;
}

/* Handy: Navbar verstecken, Burger zeigen */
@media (max-width: 700px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }
}



@media (max-width: 700px) {
  #volumeSlider,
  #muteBtn {
    display: none;
  }
}















@media (max-width: 700px) {

  /* Player-Bar kompakt */
  .player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10em;
    padding: 12px 14px 16px 14px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Cover + Titel */
  .player-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 4px;
  }

  .player-cover {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .player-title {
    font-size: 15px;
    font-weight: 600;
  }

  .player-artist {
    font-size: 13px;
    opacity: 0.8;
  }

  /* Controls kompakt */
  .player-controls {
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  /* Slider wieder sichtbar + zentriert */
  .player-progress {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Volume bleibt weg */
  #volumeSlider,
  #muteBtn {
    display: none;
  }
}







