body, html {
  margin: 0;
  margin-top: 20px;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}


.bg-video {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  filter: blur(3px);
  pointer-events: none;
  transition: opacity 0.4s;
  transform: scale(1.30);
}

.main-vertical {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  padding: 48px 0 32px 0;
}

.avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 16px #b30000, 0 1px 0 #000;
}

.card {
  padding: 32px 18px 24px 18px;
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.cover-card {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 32px 4px #b30000, 0 2px 8px #000a;
  margin-bottom: 24px;
  background: #b30000;
}

.music-player {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 0;
}

.social-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
}

.icon-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(179,0,0,0.18);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #b3000033;
}
.icon-social:hover {
  background: #b30000;
  box-shadow: 0 4px 16px #ff6a00aa;
}

@media (max-width: 600px) {
  .main-vertical {
    padding-top: 24px;
    padding-bottom: 12px;
    max-width: 98vw;
  }
  .card {
    max-width: 98vw;
    padding: 18px 2vw 12px 2vw;
  }
  .cover-card {
    width: 120px;
    height: 120px;
  }
  .avatar {
    width: 72px;
    height: 72px;
  }
  .artist-title {
    font-size: 1.3rem;
  }
}
