body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-color: #2d2d2d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  overflow: hidden; /* Prevent scrollbars */
}

.container {
  width: 80%;
  max-width: 600px;
  padding: 20px;
  border-radius: 20px;
  background: #2d2d2d;
  box-shadow:  9px 9px 18px #252525,
               -9px -9px 18px #353535;
  display: flex;
  flex-direction: column; /* Changed to column */
  justify-content: center;
  align-items: center;
  height: auto; /* Adjusted height */
}

.logo-container {
  margin-bottom: 20px; /* Add space below the logo */
}

.logo {
  max-width: 150px; /* Adjust size as needed */
  height: auto;
  display: block; /* Ensure it takes up the full width */
  margin: 0 auto; /* Center the logo */
}

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

.controls {
  margin-bottom: 10px; /* Reduced margin */
}

.control-button {
  background: #2d2d2d;
  border-radius: 50%;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  box-shadow:  5px 5px 10px #252525,
               -5px -5px 10px #353535;
  transition: all 0.3s ease;
}

.control-button:hover {
  box-shadow:  3px 3px 6px #252525,
               -3px -3px 6px #353535;
}

.control-button:active {
  box-shadow: inset 5px 5px 10px #252525,
              inset -5px -5px 10px #353535;
}

#playPauseBtn {
  color: #00ff00; /* Example: Green color */
}

.metadata {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background: #2d2d2d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:  5px 5px 10px #252525,
               -5px -5px 10px #353535;
  transition: all 0.3s ease;
}

.social-icon:hover {
  box-shadow:  3px 3px 6px #252525,
               -3px -3px 6px #353535;
}

.social-icon:active {
  box-shadow: inset 5px 5px 10px #252525,
              inset -5px -5px 10px #353535;
}

#installBtn {
  font-size: 20px;
}