/* FORCE MATERIAL ICONS FONT */
.material-icons-round {
    font-family: 'Material Icons Round', 'Material Icons', sans-serif !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* base; overridden by .play-btn below */
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* STICKY PLAYER */
#scp-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 4px solid var(--scp-primary, #FF6B6B);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    font-family: 'Nunito', sans-serif;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* HIDDEN STATES */
#scp-sticky-player.scp-hidden {
    transform: translateY(100%);
}
#scp-sticky-player.scp-minimized {
    transform: translateY(100%);
}

/* TOGGLE BUTTON */
#scp-toggle {
    position: absolute;
    top: -34px;
    right: 20px;
    background: #fff;
    border: none;
    border-top: 4px solid var(--scp-primary, #FF6B6B);
    border-radius: 12px 12px 0 0;
    width: 60px;
    height: 30px;
    cursor: pointer;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--scp-primary, #FF6B6B);
    font-size: 24px;
    transition: background 0.2s;
    outline: none;
}
#scp-toggle:hover {
    background: #f9f9f9;
}

/* CONTAINER */
.scp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    height: 80px; /* Fixed height for consistent slide */
}

/* INFO */
.scp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
#scp-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background: #eee;
    border: 1px solid #ddd;
}
.scp-text {
    line-height: 1.2;
}
#scp-title {
    font-weight: 700;
    color: #2D3436;
    font-size: 16px;
}
#scp-subtitle {
    font-size: 13px;
    color: #888;
}

/* CONTROLS */
.scp-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.scp-controls button {
    background: none;
    border: none;
    cursor: pointer;
    color: #2D3436;
    font-size: 32px; /* icon size for prev/next */
    padding: 0;
    outline: none;
    transition: transform 0.1s, color 0.1s;
}
.scp-controls button:active {
    transform: scale(0.95);
}
.scp-controls button:hover {
    color: var(--scp-primary, #FF6B6B);
}
.scp-controls .play-btn {
    font-size: 48px; /* bigger play button */
    color: var(--scp-primary, #FF6B6B);
}

/* PROGRESS */
.scp-progress-container {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    cursor: pointer;
}
#scp-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--scp-primary, #FF6B6B);
}

/* CTA */
.scp-cta {
    display: none;
}
.scp-buy-btn {
    background: var(--scp-secondary, #4ECDC4);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}
.scp-buy-btn:hover {
    filter: brightness(90%);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .scp-cta {
        display: block;
    }
}

@media (max-width: 600px) {
    #scp-subtitle {
        display: none;
    }
    .scp-controls {
        gap: 10px;
    }
}