/* WALLPAPER */
body {
  background: url('IMG_5065.jpeg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #5a0080;
  text-align: center;
  margin: 0;
}

/* HOMEPAGE ICONS */
.home-icons {
  margin-top: 120px;
}

.home-icons img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  margin: 20px;
  cursor: pointer;
}

/* ALBUM GRID */
.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.album img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid purple;
  border-radius: 10px;
  cursor: pointer;
}

/* SONG LIST */
.song-list {
  margin-top: 30px;
}

.hidden {
  display: none;
}

.song-list ul {
  list-style: none;
  padding: 0;
}

.song-list li {
  margin: 8px 0;
  cursor: pointer;
  font-size: 18px;
  color: #7a0099;
}

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-inner {
  background: white;
  padding: 20px;
  width: 320px;
  border-radius: 10px;
  text-align: center;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}

/* FAKE PLAYER */
.fake-player {
  margin-top: 10px;
  font-size: 20px;
  color: #0066ff;
  font-family: monospace;
}

/* VIDEO THUMBNAILS */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.video-thumb img {
  width: 220px;
  height: 130px;
  object-fit: cover;
  border: 8px solid hotpink;
  box-shadow: 0 0 10px pink, 0 0 20px hotpink;
  cursor: pointer;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-grid img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid purple;
  cursor: pointer;
}
