/* Custom Audio Player Styling */
.audio-player {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 8px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.1));
    transition: all 0.3s ease;
}

.audio-player:hover {
    border-color: rgba(0, 240, 255, 0.6);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.2));
}

/* Webkit Browser Styling (Chrome, Safari, Edge) */
.audio-player::-webkit-media-controls-panel {
    background-color: rgba(17, 24, 39, 0.95);
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-pause-button {
    filter: brightness(1.2);
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: #00d2ef;
}

.audio-player::-webkit-media-controls-timeline {
    background-color: rgba(0, 210, 239, 0.2);
    border-radius: 25px;
}

/* Platform Badge Links */
.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.3);
}

/* Spotify Button Styling */
.spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #1DB954;
    /* Spotify Green */
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    /* Brand pill shape */
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.spotify-btn:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.5);
}

.spotify-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.spotify-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(29, 185, 84, 0.1);
    border: 1px solid #1DB954;
    color: #1DB954;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
    margin-top: 0.75rem;
}

.spotify-track-btn:hover {
    background-color: #1DB954;
    color: white;
}

/* Gallery & Placeholder Styles */
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1), transparent 70%);
    transition: all 0.5s ease;
}

.gallery-card:hover .gallery-placeholder::before {
    background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.2), transparent 50%);
    transform: scale(1.2);
}

.coming-soon-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(17, 24, 39, 0.7);
}