body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #232323;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.track-info {
    font-family: 'Arial', sans-serif; /* Similar font to the one in the image */
    font-size: 18px;
    margin-bottom: 20px;
}

.platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.platform-button {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-weight: bold;
}

.platform-button img {
    width: 32px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px;
}

.platform-button span {
    background-color: #444;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.platform-button:hover span {
    background-color: white;
    color: black;
}

.footer {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.footer a {
    color: #888;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}