/* === GLOBAL === */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #1e1e1e;
  margin: 0;
  padding: 0;
  color: #fff;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.banner img {
  width: 100%;
  height: auto;
}

.abc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.abc-link,
.home-link {
  margin: 5px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: color 0.3s;
}

.abc-link:hover,
.home-link:hover {
  color: #0095ff;
}

.search-form {
  display: flex;
  margin-top: 10px;
}

.search-form input[type="text"] {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}

.search-button {
  background: #0095ff;
  border: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* === ARTIST LIST === */
.album-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px 50px 10px;
  align-items: center;
  background-color: #1e1e1e;
}

.album-item {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 1970px;
  transition: transform 0.3s;
}

.album-item:hover {
  transform: translateY(-2px);
}

.album-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.album-item a {
  font-weight: bold;
  font-size: 20px;
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s;
}

.album-item a:hover {
  color: #00bfff;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .album-item {
    width: 95%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .album-item img {
    width: 75px;
    height: 75px;
  }

  .album-item a {
    font-size: 18px;
  }
}

/* === GOLD MENU === */
.gold-menu {
  background: #222;
  text-align: center;
  padding: 1rem 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid gold;
}

.gold-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.gold-menu li {
  display: inline-block;
}

.gold-menu a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: #111;
  transition: all 0.3s ease;
}

.gold-menu a:hover {
  background-color: #FFD700;
  color: #000;
  box-shadow: 0 0 10px gold;
}
