/* =========================================================
   ringtone.hinglishpoint.com — Player Styles
   ========================================================= */

.inline-player {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.play-btn-large {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    font-size: 22px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(233, 30, 99, .3);
    transition: all .2s ease;
}
.play-btn-large:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(233, 30, 99, .45);
}
.play-btn-large.playing {
    background: linear-gradient(135deg, var(--secondary), #7b1fa2);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.player-info { flex: 1; }
.player-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.player-time {
    color: var(--text-muted);
    font-size: 13px;
    font-family: monospace;
}