body {
  margin: 0;
  font-family: 'Verdana', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
}

.hero {
  text-align: center;
  background: #111;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  max-height: none;
}

.hero-content {
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

.hero p {
  font-size: 1.2rem;
}

.cover-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.btn {
  background: #e91e63;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
.btn:hover {
  background: #ff4081;
}

.playlist-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.playlist h2 {
  text-align: center;
  margin-bottom: 30px;
}

.playlist {
  list-style: none;
  padding: 0;
}

.playlist li {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #1c1c1c;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  flex-wrap: wrap;
}

.playlist img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 20px;
}

.song-info {
  flex: 1;
  min-width: 200px;
}

.song-info h3 {
  margin: 0 0 5px 0;
  font-size: 1rem;
}

audio {
  width: 100%;
  max-width: 300px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #aaa;
}

footer a {
  color: #e91e63;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.socials a {
  margin: 0 10px;
  color: #e91e63;
}
.video-call {
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  text-align: center;
}

.video-call h2 {
  font-family: 'Verdana', sans-serif;
  letter-spacing: 1px;
}

.video-call p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.video-wrapper video {
  width: 100%;
  max-width: 1200px;
  background: black;
}
/* =========================
   MODERN AUDIO PLAYER
========================= */

.player {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #111;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.player img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.player-info {
  flex: 1;
  color: white;
}

.player-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  background: #e63946;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.progress {
  flex: 1;
  height: 6px;
  background: #333;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress-filled {
  height: 100%;
  width: 0%;
  background: #e63946;
  border-radius: 4px;
}

.time {
  font-size: 12px;
  color: #aaa;
  width: 70px;
  text-align: right;
}