* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(40px);
    opacity: 0.6;
    z-index: -1;
}

.container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.cover__artwork {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cover__artwork-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.artist-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.song-title {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.choose-service {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.music-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.music-link:hover {
    background: #e9ecef;
    border-color: #30728c;
   /*  transform: translateX(5px); */
}

.music-link img {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 8px;
    object-fit: contain;
}

.link-info {
    flex: 1;
    background: #e2e2e2;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.platform-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.link-action {
    font-size: 13px;
    color: #666;
}

.platform-icon {
    width: 340px;
    height: 40px;
    margin-right: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .artist-name {
        font-size: 24px;
    }

    .song-title {
        font-size: 18px;
    }

    .cover__artwork-img {
        width: 160px;
        height: 160px;
    }
}
.music-link {
    padding: 9px 20px;
}

.choose-service {
    margin-bottom: 16px;
}

.song-title { 
    margin-bottom: 18px;
}
.header {
    text-align: center;
    margin-bottom: 20px;
}

body {overflow: auto;}

.container {
    background: transparent;
    box-shadow: none !important;
}

div#links-container {
    background: #fff;
    border-radius: 12px;
}

.container {
    max-width: 460px;
}

.platform-icon {
    width: 240px;
}
div#song-title {
    color: #000;
}
@media (max-width: 480px) {
   .music-link { 
    flex-direction: column;
    }
    .link-info {
display: none;
        padding: 5px 10px;
    }
}