.spotify-audio-embed {
    max-width: 600px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
 
    background-color: #181818;
    color: #fff;
    height: 152px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.spotify-audio-wrapper {
    display: flex;
    height: 100%;
}

.thumbnail-container {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.episode-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.play-embed {
  background-color: transparent!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white!important;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    opacity: 0.9;
      /* Add shadow */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.play-embed:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.audio-meta {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.episode-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.2;
}

.show-name {
    font-size: 11px;
    color: #e6e6e6;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.spotify-audio-embed {
    position: relative;
}
.spotify-fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.spotify-fade-in.loaded {
    opacity: 1;
}
