.mpe-player-icons {
    text-align: center;
    margin-bottom: 1em;
}
.mpe-icon {
    width: 48px;
    height: 48px;
    margin: 0 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.mpe-icon:hover { opacity: 1; }

.mpe-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}
.mpe-embed-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Music Platform Links Styles - Light Theme (Default) */
.mpe-music-links {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    background: transparent;
}

.mpe-track-info {
    margin-bottom: 30px;
}

.mpe-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.mpe-artist {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #666;
    opacity: 0.8;
}

.mpe-platforms {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.mpe-platform-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 24px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.mpe-platform-link:last-child {
    border-bottom: none;
}

.mpe-platform-link:hover {
    background: #f8f8f8;
    text-decoration: none;
    color: #1a1a1a;
}

.mpe-platform-icon {
    width: 32px;
    height: 32px;
    margin-right: 40px !important;
    margin-left: 8px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.mpe-platform-text {
    font-size: 18px;
    font-weight: 600;
    flex-grow: 1;
    text-align: left;
    color: #1a1a1a !important;
}

.mpe-arrow {
    margin-left: auto;
    margin-right: 8px;
    color: #999;
    font-size: 20px;
    flex-shrink: 0;
}

/* Dark Theme */
.mpe-music-links.mpe-dark {
    background: transparent;
}

.mpe-music-links.mpe-dark .mpe-title {
    color: #ffffff;
}

.mpe-music-links.mpe-dark .mpe-artist {
    color: #ccc;
}

.mpe-music-links.mpe-dark .mpe-platforms {
    background: transparent;
}

.mpe-music-links.mpe-dark .mpe-platform-link {
    background: transparent;
    color: #ffffff;
    border-bottom: 1px solid #333;
}

.mpe-music-links.mpe-dark .mpe-platform-link:last-child {
    border-bottom: none;
}

.mpe-music-links.mpe-dark .mpe-platform-link:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.mpe-music-links.mpe-dark .mpe-platform-text {
    color: #ffffff !important;
}

.mpe-music-links.mpe-dark .mpe-arrow {
    color: #666;
}

/* Override theme styles that might interfere with platform icons */
.mpe-music-links img,
.mpe-platform-link img,
.mpe-platforms img {
    margin: 0 !important;
    margin-right: 40px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
}

/* Additional specific override for platform icons */
.mpe-platform-link .mpe-platform-icon {
    margin-right: 40px !important;
}

/* Platform-specific overrides removed - using clean transparent design */

/* Responsive design */
@media (max-width: 480px) {
    .mpe-music-links {
        margin: 0 10px;
        padding: 20px 0;
    }
    
    .mpe-title {
        font-size: 24px;
    }
    
    .mpe-artist {
        font-size: 16px;
    }
    
    .mpe-platform-link {
        padding: 8px 16px;
        font-size: 16px;
    }
    
    .mpe-platform-icon {
        width: 28px;
        height: 28px;
        margin-right: 32px !important;
        margin-left: 6px;
    }
    
    .mpe-platform-text {
        font-size: 16px;
    }
    
    .mpe-arrow {
        margin-right: 6px;
    }
}

/* Animation for page load */
.mpe-platforms {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
