
body {
  background-color: #20bee2;
  text-align: center;
}

.hotbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1E1A40;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  height: 27px;
}

.main-title {
  color: AliceBlue;
  font-size: 30px;
  text-align: center;
  margin-top: 100px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #91EEF2, #B3D9F3);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  max-width: 1000px;
  margin: 60px auto;
  color: #0E0350;
  font-family: Arial, sans-serif;
  flex-wrap: wrap;
}

.album-cover {
  height: 200px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-right: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-cover:hover {
  transform: scale(2.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.album-info {
  flex: 1;
  min-width: 250px;
}

.album-info h2 {
  margin-top: 0;
  font-size: 28px;
}

.album-title {
  color: #FF1493;
}

.album-info p {
  font-size: 16px;
  line-height: 1.5;
}

.music-links {
  margin-top: 100px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
