* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
}

.content {
    text-align: center;
    max-width: 400px;
}

.album-cover img {
    width: 100%;
    max-width: 280px;
    margin-bottom: 8px;
    border-radius: 10px;
}

.track-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    display: inline;
}

.artist-name {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-top: -2px;
    margin-bottom: 14px;
}

.artist-name a {
    color: inherit;
}

.subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

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

.highlight {
    background-color: #fce6e6!important;
    border: 1px solid #ff5757;
}

.highlight img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.highlight .watch-button {
    padding: 5px 15px;
    border: 1px solid #ff5757;
    border-radius: 20px;
    background-color: #fff1f1;
    color: #ff5757;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    justify-content: space-between;
}

.service:hover {
    transform: scale(1.02);
    transition: all .2s;
}

.service img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.play-button {
    padding: 5px 15px;
    border: 1px solid #ccc;
    border-radius: 18px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
}