/* Spotify Ads Preview */
.spotify-preview-board {
    background: #121212; /* Spotify Dark */
    border-radius: 8px;
    padding: 32px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    font-family: 'Circular', 'Montserrat', Helvetica, Arial, sans-serif;
    border: 2px solid var(--border-color);
    overflow-x: auto;
    max-width: 100%;
}

.sp-player-wrapper {
    background: #000; /* Pure black wrapper */
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    padding: 16px 16px 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header */
.sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 24px;
}

.sp-header-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
}

.sp-icon {
    font-size: 18px;
    color: #b3b3b3;
}

/* Cover Art */
.sp-cover-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 32px;
    position: relative;
}

.sp-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.sp-sponsored-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Info */
.sp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sp-text-group {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sp-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.sp-brand {
    color: #b3b3b3;
    font-size: 14px;
    font-weight: 500;
}

.sp-like-btn {
    color: #b3b3b3;
    font-size: 20px;
    margin-left: 16px;
}

/* Timeline */
.sp-timeline-container {
    margin-bottom: 16px;
}

.sp-progress-bar {
    width: 100%;
    height: 4px;
    background: #4d4d4d;
    border-radius: 2px;
    position: relative;
    margin-bottom: 8px;
}

.sp-progress-fill {
    width: 45%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
}

.sp-time-text {
    display: flex;
    justify-content: space-between;
    color: #b3b3b3;
    font-size: 11px;
    font-weight: 500;
}

/* Controls */
.sp-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 16px;
}

.sp-control-icon {
    color: #fff;
    font-size: 24px;
}

.sp-play-btn {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
}

/* CTA Footer (Spotify Ads feature) */
.sp-cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sp-cta-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #727272;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sp-cta-btn:hover {
    border-color: #fff;
    transform: scale(1.04);
}
