<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */
body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  margin: 5px 0;
}

header p {
  color: #555;
}

.player-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

select, button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.track-info {
  margin-top: 20px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
}

.track-info img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

.share-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-buttons a,
.share-buttons button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.share-buttons button {
  background-color: #007BFF;
}

.share-buttons a[href*="whatsapp"] {
  background-color: #25D366;
}

.share-buttons a[href*="telegram"] {
  background-color: #0088cc;
}

.share-buttons a[href*="twitter"] {
  background-color: #1da1f2;
}</pre></body></html>