
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #111;
    color: #f5f5f5;
}
header {
    background: #000;
    padding: 2rem;
    text-align: center;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
header p {
    font-size: 1.2rem;
    color: #ccc;
}
nav a {
    color: #0af;
    margin: 0 1rem;
    text-decoration: none;
}
section {
    padding: 2rem;
}
.album-list, .lyrics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
footer {
    background: #222;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.album-list, .lyrics-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.album img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.album, .lyric {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.bubble-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(150,150,150,0.1));
  border-radius: 50%;
  animation: rise 20s infinite ease-in;
  opacity: 0.6;
}

/* Задаем случайные позиции и размеры */
.bubble:nth-child(1) {
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.bubble:nth-child(2) {
  left: 40%;
  width: 120px;
  height: 120px;
  animation-delay: 5s;
}
.bubble:nth-child(3) {
  left: 60%;
  width: 90px;
  height: 90px;
  animation-delay: 10s;
}
.bubble:nth-child(4) {
  left: 80%;
  width: 70px;
  height: 70px;
  animation-delay: 15s;
}
.bubble:nth-child(5) {
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 3s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 1rem;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #0af;
  text-decoration: none;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav.open .nav-menu {
    display: flex;
  }
}
