* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #111;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
  padding: 5px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px 0;
  width: 100%;
  top: 0;
  z-index: 10;
  background: transparent;
  position: relative;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #e0b676;
  text-decoration: underline;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero figure {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.hero h1 {
  position: absolute;
  font-size: 3rem;
  z-index: 2;
}

.hero .overlay {
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(
    to top,
    #111 0%,
    rgba(17, 17, 17, 0.85) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}

.artistProfile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 60px 100px;
  padding-top: 120px;
}

.artistProfile figure img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.artistInfo {
  max-width: 700px;
}

.artistInfo h2 {
  color: #e0b676;
  margin-bottom: 15px;
}

.artistInfo h3 {
  color: #e0b676;
}

.artistInfo ul {
  padding-left: 1.2em;
  margin-left: 0;
  list-style-position: outside;
}

.albums {
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  padding-bottom: 80px;
}

.albums h2 {
  padding: 30px 20px 20px 20px;
  text-align: center;
  color: #e0b676;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.albums-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.album-card {
  width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card a {
  text-decoration: none;
  color: inherit;
}

.album-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.album-card img:hover {
  box-shadow: 0 1px 25px rgba(207, 164, 82, 0.3);
}

.album-card h3 {
  font-size: 1em;
  margin-top: 10px;
}

.album-card p {
  font-size: 0.8em;
  color: #ccc;
}

.album-card:hover {
  transform: translateY(-8px);
}

.songs {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.songs h2 {
  color: #e0b676;
  font-size: 1.8em;
  margin-bottom: 40px;
}

.songs-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.song-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 20px 30px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 4px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  gap: 25px;
}

.song-card img {
  width: 180px;
  border-radius: 10px;
}

.song-info {
  text-align: left;
  flex: 1;
}

.song-info h3 {
  color: #e0b676;
  margin: 0 0 5px 0;
}

.song-info p {
  color: #ccc;
  margin-bottom: 15px;
}

.controls {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.controls button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.3s;
}

.controls button:hover {
  color: #e0b676;
}

.volume-control {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
}

.volume-control svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.volume-control input {
  width: 80px;
  accent-color: #e0b676;
  cursor: pointer;
  height: 5px;
}
.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-container span {
  font-size: 0.85em;
  color: #ccc;
  width: 40px;
  text-align: center;
}

#progressBar {
  flex: 1;
  height: 4px;
  cursor: pointer;
  appearance: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  accent-color: #e0b676;
}

#progressBar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0b676;
  cursor: pointer;
  appearance: none;
}

section.songList {
  background-color: black;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.songList h2 {
  color: #e0b676;
  font-size: 1.8em;
  margin-bottom: 40px;
}

.songTable {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}

.songTable thead {
  background: rgba(255, 255, 255, 0.1);
}

.songTable th,
.songTable td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section.fansMsg {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  padding-bottom: 80px;
}

.fansMsg {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.fansMsg h2 {
  color: #e0b676;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.fansMsg form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.fansMsg label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e0b676;
}

.fansMsg input,
.fansMsg textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1em;
  transition: background 0.3s, box-shadow 0.3s;
}

.fansMsg input:focus,
.fansMsg textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 6px rgba(224, 182, 118, 0.3);
}

.fansMsg input::placeholder,
.fansMsg textarea::placeholder {
  color: #bbb;
}

.fansMsg textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

.fansMsg button {
  display: block;
  width: 100%;
  margin: 10px auto 0 auto;
  background-color: #e0b676;
  color: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.fansMsg button:hover {
  background-color: #cfa15e;
  transform: translateY(-2px);
}

.similiar {
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  padding-bottom: 80px;
}

.similiar h2 {
  padding: 30px 20px 20px 20px;
  text-align: center;
  color: #e0b676;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.similiar-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.similiar-card {
  width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similiar-card a {
  text-decoration: none;
  color: inherit;
}

.similiar-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.similiar-card img:hover {
  box-shadow: 0 1px 25px rgba(207, 164, 82, 0.3);
}

.similiar-card h3 {
  font-size: 1em;
  margin-top: 10px;
}

.similiar-card:hover {
  transform: translateY(-8px);
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socialIcons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.socialIcons svg {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  cursor: pointer;
}

/* ========== Responsive ========== */

/* ========== (481px–768px) ========== */
@media (min-width: 481px) and (max-width: 768px) {
  nav {
    padding: 12px 0;
  }

  nav ul {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.2rem;
    padding: 0 25px;
    text-align: center;
    line-height: 1.3;
  }

  .artistProfile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 50px 70px;
    gap: 30px;
  }

  .artistProfile figure img {
    width: 65%;
    max-width: 280px;
  }

  .album-card {
    width: 45%;
    max-width: 180px;
  }

  .song-card {
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 450px;
    margin: 15px auto;
    padding: 25px;
    border-radius: 18px;
  }

  .song-card img {
    width: 130px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .song-info {
    text-align: center;
  }

  .controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
  }

  .controls button {
    font-size: 1.5em;
  }

  .volume-control {
    position: absolute;
    top: 14px;
    right: 20px;
    gap: 8px;
    transform: scale(0.9);
  }

  .volume-control svg {
    width: 22px;
    height: 22px;
  }

  .volume-control input {
    width: 80px;
    height: 5px;
  }

  footer {
    font-size: 0.9em;
    padding: 10px 0;
  }
}

/* ========== (≤480px) ========== */
@media (max-width: 480px) {
  nav {
    padding: 10px 0;
  }

  nav ul {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 1.7rem;
    padding: 0 15px;
    line-height: 1.3;
  }

  .artistProfile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 20px 60px;
    gap: 25px;
  }

  .artistProfile figure img {
    width: 80%;
    max-width: 220px;
  }

  .album-card {
    width: 42%;
    max-width: 150px;
  }

  .song-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%;
    margin: 10px auto;
    padding: 22px;
    border-radius: 15px;
  }

  .song-card img {
    width: 110px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .song-info {
    text-align: center;
  }

  .song-card h3 {
    font-size: 1rem;
  }

  .song-card p {
    font-size: 0.9rem;
  }

  .controls {
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 14px;
    margin-top: 10px;
  }

  .controls button {
    font-size: 1.3em;
  }

  .volume-control {
    position: absolute;
    top: 10px;
    right: 15px;
    gap: 5px;
    transform: scale(0.85);
  }

  .volume-control svg {
    width: 18px;
    height: 18px;
  }

  .volume-control input {
    width: 65px;
    height: 4px;
  }

  footer {
    font-size: 0.8em;
    padding: 8px 0;
  }
}

