body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000000;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
}

.logo {
  width: 35vw;
  max-width: 400px;
  min-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.audio-widget {
  background: linear-gradient(145deg, #1f1f1f, #121212);
  border-radius: 25px;
  padding: 25px 30px;
  box-shadow: 8px 8px 20px #0d0d0d, -8px -8px 20px #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  max-width: 350px;
  color: #fff;
  border: 1px solid red;
}

.audio-widget h2 {
  margin: 0 0 20px 0;
  font-size: 20px;
  text-align: center;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

button {
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  background: #f41c03;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.2s;
}

button:hover {
  transform: scale(1.1);
  background: #f41c03;
}

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

input[type="range"] {
  width: 35vw;
  max-width: 150px;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #555;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #f41c03;
  border-radius: 50%;
  cursor: pointer;
}

.volume-label {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

canvas {
  width: 100%;
  height: 100px;
  border-radius: 15px;
  background: #000;
}
.social-icons {
    margin-top: 20px;
}

.social-icons img {
    width: 15px;
    height: 15px;
    margin: 0 5px;
}
.page-footer {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #f5f5dc;
  font-size: 11px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: transparent;
}

@media (max-width: 480px) {
  .controls {
    flex-direction: column;
    gap: 15px;
  }

  button {
    width: 60px;
    height: 60px;
  }

  input[type="range"] {
    width: 70vw;
  }

  canvas {
    height: 80px;
  }
  .social-icons img {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 768px) {
  .logo {
    width: 250px;
  }

  .audio-widget {
    max-width: 400px;
  }

  canvas {
    height: 120px;
  }
}

